jsm-core
Version:
Core library for JSM project
108 lines (107 loc) • 4.53 kB
JavaScript
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const jsm_logger_1 = __importStar(require("jsm-logger"));
const jsm_utilities_1 = require("jsm-utilities");
const _ENTITY = "permissionGroup";
/**
* @description Cache manager for PermissionGroups
*/
class PermissionGroupsCacheManager {
constructor(cache, sdkClient) {
this.EXPIRATION = 3600 * 48;
this.ENTITY = _ENTITY;
this.cache = cache;
this.logger = (0, jsm_logger_1.default)(jsm_logger_1.LoggerContext.MANAGER, `${this.constructor.name}`);
this.sdkClient = sdkClient;
}
static getInstance(cache, sdkClient) {
if (!PermissionGroupsCacheManager.instance) {
PermissionGroupsCacheManager.instance = new PermissionGroupsCacheManager(cache, sdkClient);
}
return PermissionGroupsCacheManager.instance;
}
get(id, config) {
return __awaiter(this, void 0, void 0, function* () {
return this.cache.get(this.ENTITY, id, Object.assign(Object.assign({}, (0, jsm_utilities_1.defaults)(config || {}, {
expiration: this.EXPIRATION,
forceLoadFromDb: false,
company: null,
})), { sdkClient: this.sdkClient }));
});
}
getMany(ids_1) {
return __awaiter(this, arguments, void 0, function* (ids, config = {
expiration: 3600 * 24,
forceLoadFromDb: false,
company: null,
}) {
return this.cache.getMany(this.ENTITY, ids, Object.assign(Object.assign({}, config), { sdkClient: this.sdkClient }));
});
}
list() {
return __awaiter(this, arguments, void 0, function* (config = {
query: {},
forceLoadFromDb: false,
}) {
return this.cache.list(this.ENTITY, Object.assign(Object.assign({}, config), { sdkClient: this.sdkClient }));
});
}
set(id, value, company) {
return __awaiter(this, void 0, void 0, function* () {
return this.cache.set(this.ENTITY, id, value, company);
});
}
unset(id, company) {
return __awaiter(this, void 0, void 0, function* () {
return this.cache.unset(this.ENTITY, id, company);
});
}
unsetAll(company) {
return __awaiter(this, void 0, void 0, function* () {
return this.cache.unsetAll(this.ENTITY, company);
});
}
}
exports.default = PermissionGroupsCacheManager;