123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- "use strict";
- var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
- var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
- _Object$defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- var _keys = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/object/keys"));
- var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
- var _CoreManager = _interopRequireDefault(require("./CoreManager"));
- const PUBLIC_KEY = '*';
- class ParseACL {
-
- constructor(arg1) {
- (0, _defineProperty2.default)(this, "permissionsById", void 0);
- this.permissionsById = {};
- if (arg1 && typeof arg1 === 'object') {
- const ParseUser = _CoreManager.default.getParseUser();
- if (arg1 instanceof ParseUser) {
- this.setReadAccess(arg1, true);
- this.setWriteAccess(arg1, true);
- } else {
- for (const userId in arg1) {
- const accessList = arg1[userId];
- this.permissionsById[userId] = {};
- for (const permission in accessList) {
- const allowed = accessList[permission];
- if (permission !== 'read' && permission !== 'write') {
- throw new TypeError('Tried to create an ACL with an invalid permission type.');
- }
- if (typeof allowed !== 'boolean') {
- throw new TypeError('Tried to create an ACL with an invalid permission value.');
- }
- this.permissionsById[userId][permission] = allowed;
- }
- }
- }
- } else if (typeof arg1 === 'function') {
- throw new TypeError('ParseACL constructed with a function. Did you forget ()?');
- }
- }
-
- toJSON() {
- const permissions = {};
- for (const p in this.permissionsById) {
- permissions[p] = this.permissionsById[p];
- }
- return permissions;
- }
-
- equals(other) {
- if (!(other instanceof ParseACL)) {
- return false;
- }
- const users = (0, _keys.default)(this.permissionsById);
- const otherUsers = (0, _keys.default)(other.permissionsById);
- if (users.length !== otherUsers.length) {
- return false;
- }
- for (const u in this.permissionsById) {
- if (!other.permissionsById[u]) {
- return false;
- }
- if (this.permissionsById[u].read !== other.permissionsById[u].read) {
- return false;
- }
- if (this.permissionsById[u].write !== other.permissionsById[u].write) {
- return false;
- }
- }
- return true;
- }
- _setAccess(accessType, userId, allowed) {
- const ParseRole = _CoreManager.default.getParseRole();
- const ParseUser = _CoreManager.default.getParseUser();
- if (userId instanceof ParseUser) {
- userId = userId.id;
- } else if (userId instanceof ParseRole) {
- const name = userId.getName();
- if (!name) {
- throw new TypeError('Role must have a name');
- }
- userId = 'role:' + name;
- }
- if (typeof userId !== 'string') {
- throw new TypeError('userId must be a string.');
- }
- if (typeof allowed !== 'boolean') {
- throw new TypeError('allowed must be either true or false.');
- }
- let permissions = this.permissionsById[userId];
- if (!permissions) {
- if (!allowed) {
-
- return;
- } else {
- permissions = {};
- this.permissionsById[userId] = permissions;
- }
- }
- if (allowed) {
- this.permissionsById[userId][accessType] = true;
- } else {
- delete permissions[accessType];
- if ((0, _keys.default)(permissions).length === 0) {
- delete this.permissionsById[userId];
- }
- }
- }
- _getAccess(accessType, userId) {
- const ParseRole = _CoreManager.default.getParseRole();
- const ParseUser = _CoreManager.default.getParseUser();
- if (userId instanceof ParseUser) {
- userId = userId.id;
- if (!userId) {
- throw new Error('Cannot get access for a ParseUser without an ID');
- }
- } else if (userId instanceof ParseRole) {
- const name = userId.getName();
- if (!name) {
- throw new TypeError('Role must have a name');
- }
- userId = 'role:' + name;
- }
- const permissions = this.permissionsById[userId];
- if (!permissions) {
- return false;
- }
- return !!permissions[accessType];
- }
-
- setReadAccess(userId, allowed) {
- this._setAccess('read', userId, allowed);
- }
-
- getReadAccess(userId) {
- return this._getAccess('read', userId);
- }
-
- setWriteAccess(userId, allowed) {
- this._setAccess('write', userId, allowed);
- }
-
- getWriteAccess(userId) {
- return this._getAccess('write', userId);
- }
-
- setPublicReadAccess(allowed) {
- this.setReadAccess(PUBLIC_KEY, allowed);
- }
-
- getPublicReadAccess() {
- return this.getReadAccess(PUBLIC_KEY);
- }
-
- setPublicWriteAccess(allowed) {
- this.setWriteAccess(PUBLIC_KEY, allowed);
- }
-
- getPublicWriteAccess() {
- return this.getWriteAccess(PUBLIC_KEY);
- }
-
- getRoleReadAccess(role) {
- const ParseRole = _CoreManager.default.getParseRole();
- if (role instanceof ParseRole) {
-
- role = role.getName();
- }
- if (typeof role !== 'string') {
- throw new TypeError('role must be a ParseRole or a String');
- }
- return this.getReadAccess('role:' + role);
- }
-
- getRoleWriteAccess(role) {
- const ParseRole = _CoreManager.default.getParseRole();
- if (role instanceof ParseRole) {
-
- role = role.getName();
- }
- if (typeof role !== 'string') {
- throw new TypeError('role must be a ParseRole or a String');
- }
- return this.getWriteAccess('role:' + role);
- }
-
- setRoleReadAccess(role, allowed) {
- const ParseRole = _CoreManager.default.getParseRole();
- if (role instanceof ParseRole) {
-
- role = role.getName();
- }
- if (typeof role !== 'string') {
- throw new TypeError('role must be a ParseRole or a String');
- }
- this.setReadAccess('role:' + role, allowed);
- }
-
- setRoleWriteAccess(role, allowed) {
- const ParseRole = _CoreManager.default.getParseRole();
- if (role instanceof ParseRole) {
-
- role = role.getName();
- }
- if (typeof role !== 'string') {
- throw new TypeError('role must be a ParseRole or a String');
- }
- this.setWriteAccess('role:' + role, allowed);
- }
- }
- var _default = exports.default = ParseACL;
|