mirror of
https://github.com/nextcloud/passman.git
synced 2025-01-10 01:11:27 +08:00
55 lines
No EOL
1.2 KiB
JavaScript
55 lines
No EOL
1.2 KiB
JavaScript
(function () {
|
|
'use strict';
|
|
/**
|
|
* 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;
|
|
});
|
|
}()); |