passman/js/app/factory/sharingacl.js
Marcos Zuriaga f42d1e3c85
Fixed js permissions check
Improved default permissions checks
2016-10-03 18:31:20 +02:00

48 lines
1.2 KiB
JavaScript

/**
* 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){
this.permission = acl_permission;
}
ACL.prototype.permissions = {
READ: 0x01,
WRITE: 0x02,
FILES: 0x04,
HISTORY: 0x08,
OWNER: 0x80,
};
/**
* Checks if a user has the given permission/s
* @param permission
* @returns {boolean}
*/
ACL.prototype.hasPermission = function(permission){
return permission == (this.permission & permission);
};
/**
* 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;
};
ACL.prototype.getAccessLevel = function() {
return this.permission;
};
return ACL;
});