mirror of
https://github.com/nextcloud/passman.git
synced 2025-01-10 01:11:27 +08:00
52 lines
No EOL
1.3 KiB
JavaScript
52 lines
No EOL
1.3 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.togglePermission = function(permission){
|
|
this.permission ^= permission;
|
|
}
|
|
|
|
ACL.prototype.getAccessLevel = function() {
|
|
return this.permission;
|
|
};
|
|
|
|
return ACL;
|
|
}); |