@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
48 lines (47 loc) • 2.17 kB
JavaScript
;
// import { Role } from "../entities";
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 (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.seedApiKeys = void 0;
const const_1 = require("../config/const");
const plugins_1 = require("../plugins");
const seedApiKeys = async (workspace, owner) => {
const { DB } = await Promise.resolve().then(() => __importStar(require("../modules/api/DB")));
// seed default API ACCESS TOKEN:
const apiKeyToken = (0, plugins_1.generateWorkspaceApiAccessToken)();
const moderatorRole = await DB.findOne("role", { type: "moderator", workspace: workspace._id });
const apiKeyDto = {};
apiKeyDto.type = "api_key";
apiKeyDto.name = "API_ACCESS_TOKEN";
apiKeyDto.email = `${apiKeyToken.name}@${workspace.slug}.${const_1.DIGINEXT_DOMAIN}`;
apiKeyDto.active = true;
apiKeyDto.roles = [moderatorRole._id];
apiKeyDto.workspaces = [workspace._id];
apiKeyDto.activeWorkspace = workspace._id;
apiKeyDto.token = (0, plugins_1.getUnexpiredAccessToken)(apiKeyToken.value);
const apiKey = await DB.create("api_key_user", apiKeyDto);
return apiKey;
};
exports.seedApiKeys = seedApiKeys;