@coko/server
Version:
Reusable server for use by Coko's projects
87 lines • 3.55 kB
JavaScript
;
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 __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.runCustomShutdownScripts = exports.runCustomStartupScripts = void 0;
const zod_1 = require("zod");
const internals_1 = __importDefault(require("../logger/internals"));
const filesystem_1 = require("../utils/filesystem");
const LifeCycleScriptSchema = zod_1.z.object({
label: zod_1.z.string(),
execute: zod_1.z.function(),
});
const LifeCycleArraySchema = zod_1.z.array(LifeCycleScriptSchema);
const runCustomScripts = async (name) => {
internals_1.default.section(`Run custom ${name} functions`);
const filePath = (0, filesystem_1.findConfigurationFile)(name);
if (!filePath) {
internals_1.default.point(`No ${name} file found.`);
return;
}
const { default: items } = await Promise.resolve(`${filePath}`).then(s => __importStar(require(s)));
try {
LifeCycleArraySchema.parse(items);
}
catch (e) {
internals_1.default.error(`Incorrect shape exported from file ${filePath}.`);
throw e;
}
if (items.length === 0) {
internals_1.default.point(`No custom ${name} functions provided`);
return;
}
// Use for...of as we explicitly want to wait for each script to finish before moving on to the next one
for (const item of items) {
const { label, execute } = item;
internals_1.default.point(`Executing '${label}'`);
try {
/* eslint-disable-next-line no-await-in-loop */
await execute();
}
catch (e) {
if (e instanceof Error) {
internals_1.default.error(`Error while executing '${label}': ${e.message}`);
}
throw e;
}
}
};
const runCustomStartupScripts = async () => runCustomScripts('startup');
exports.runCustomStartupScripts = runCustomStartupScripts;
const runCustomShutdownScripts = async () => runCustomScripts('shutdown');
exports.runCustomShutdownScripts = runCustomShutdownScripts;
//# sourceMappingURL=customScripts.js.map