duzzle
Version:
Best package to manage your mongodb and server with case and easy
79 lines (78 loc) • 3.6 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());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.createSch = createSch;
const mongoose_1 = __importStar(require("mongoose"));
const Error_1 = require("../../utils/Error");
const Success_1 = require("../../utils/Success");
/**
* @fileoverview This file contains the function to create a schema in the database.
*/
/**
* Creates a schema in the database with the given name and data.
*
* @param {Object} params - The parameters for creating the schema.
* @param {string} params.name - The name of the schema.
* @param {Record<string, unknown>} params.data - The data for the schema.
* @returns {Promise<Model<any>>} - A promise that resolves to the created schema model.
* @throws {Error} - Throws an error if the name is not a string or if there is an error during schema creation.
*/
function createSch(_a) {
return __awaiter(this, arguments, void 0, function* ({ name, data }) {
try {
if (typeof name !== "string") {
const ErrorData = new Error_1.DBError("Error name or schema data not provided");
throw new Error(ErrorData.message);
}
const schema = new mongoose_1.Schema(data);
const modelSchema = mongoose_1.default.model(name, schema);
new Success_1.DBD(undefined, `Schema Created With Name : ${name}`);
return modelSchema;
}
catch (error) {
const ErrorData = new Error_1.DBError(error.message);
throw new Error(ErrorData.message);
}
});
}