2016-10-03 20:45:38 +08:00
|
|
|
/**
|
|
|
|
* Created by Marcos Zuriaga on 3/10/16.
|
|
|
|
* This file is part of passman, licensed under AGPLv3
|
|
|
|
*/
|
|
|
|
|
|
|
|
angular.module('passmanApp').factory('SharingACL', function(){
|
|
|
|
function ACL(acl_permission){
|
2016-10-04 00:02:49 +08:00
|
|
|
this.permission = acl_permission;
|
2016-10-03 20:45:38 +08:00
|
|
|
}
|
|
|
|
|
2016-10-04 00:02:49 +08:00
|
|
|
ACL.prototype.permissions = {
|
|
|
|
READ: 0x01,
|
|
|
|
WRITE: 0x02,
|
|
|
|
FILES: 0x04,
|
|
|
|
HISTORY: 0x08,
|
|
|
|
OWNER: 0x80,
|
|
|
|
};
|
2016-10-03 20:45:38 +08:00
|
|
|
/**
|
|
|
|
* Checks if a user has the given permission/s
|
|
|
|
* @param permission
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
ACL.prototype.hasPermission = function(permission){
|
2016-10-04 00:31:20 +08:00
|
|
|
return permission == (this.permission & permission);
|
2016-10-03 20:45:38 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a permission to a user, leaving any other permissions intact
|
|
|
|
* @param permission
|
|
|
|
*/
|
|
|
|
ACL.prototype.addPermission = function(permission){
|
|
|
|
this.permission = this.permission | permission;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes a given permission from the item, leaving any other intact
|
|
|
|
* @param permission
|
|
|
|
*/
|
|
|
|
ACL.prototype.removePermission = function(permission){
|
|
|
|
this.permission = this.permission & !permission;
|
|
|
|
};
|
|
|
|
|
2016-10-04 00:31:20 +08:00
|
|
|
ACL.prototype.getAccessLevel = function() {
|
|
|
|
return this.permission;
|
|
|
|
};
|
|
|
|
|
2016-10-03 20:45:38 +08:00
|
|
|
return ACL;
|
|
|
|
});
|