@nestia/core
Version:
Super-fast validation decorators of NestJS
87 lines • 3.89 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 __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 });
exports.load_controllers = void 0;
const detect_ts_node_1 = __importDefault(require("detect-ts-node"));
const SourceFinder_1 = require("../../utils/SourceFinder");
const load_controllers = (path, isTsNode) => __awaiter(void 0, void 0, void 0, function* () {
var _a;
const sources = yield SourceFinder_1.SourceFinder.find({
include: Array.isArray(path)
? path
: typeof path === "object"
? path.include
: [path],
exclude: typeof path === "object" && !Array.isArray(path)
? ((_a = path.exclude) !== null && _a !== void 0 ? _a : [])
: [],
filter: isTsNode === true || EXTENSION === "ts"
? (file) => file.substring(file.length - 3) === ".ts" &&
file.substring(file.length - 5) !== ".d.ts"
: (flle) => flle.substring(flle.length - 3) === ".js",
});
return mount(sources);
});
exports.load_controllers = load_controllers;
/** @internal */
function mount(sources) {
return __awaiter(this, void 0, void 0, function* () {
const controllers = [];
for (const file of sources) {
const external = yield Promise.resolve(`${file}`).then(s => __importStar(require(s)));
for (const key in external) {
const instance = external[key];
if (Reflect.getMetadata("path", instance) !== undefined)
controllers.push(instance);
}
}
return controllers;
});
}
/** @internal */
const EXTENSION = detect_ts_node_1.default ? "ts" : "js";
//# sourceMappingURL=load_controller.js.map