stackpress
Version:
Incept is a content management framework.
30 lines (29 loc) • 1.63 kB
JavaScript
;
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());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const Server_1 = require("@stackpress/ingest/Server");
const emit_js_1 = __importDefault(require("../../scripts/emit.js"));
exports.default = (0, Server_1.action)(function EmitScript(_req, res, ctx) {
return __awaiter(this, void 0, void 0, function* () {
const cli = ctx.plugin('cli');
if (process.argv.length < 4) {
(cli === null || cli === void 0 ? void 0 : cli.verbose) && cli.control.error('Missing event name');
res.setError('Missing event name');
return;
}
(cli === null || cli === void 0 ? void 0 : cli.verbose) && cli.control.system(`Emitting "${process.argv[3]}"...`);
yield (0, emit_js_1.default)(ctx, 3);
res.setStatus(200);
});
});