Sindbad~EG File Manager
let db,AppError,catchAsync,successResponse,failedResponse;_03a.x([["default",()=>_03a.o]]);_03a.w("../../model/index",[["default",["db"],function(v){db=v}]]);_03a.w("../../utils/apiError",[["default",["AppError"],function(v){AppError=v}]]);_03a.w("../../utils/catchAsync",[["default",["catchAsync"],function(v){catchAsync=v}]]);_03a.w("../../utils/responseFormat",[["successResponse",["successResponse"],function(v){successResponse=v}],["failedResponse",["failedResponse"],function(v){failedResponse=v}]]);
const validateDuplicateEntry = async (policy_id) => {
let document = await db.CommercialAdditionalInfo.findOne({ policy_id });
if (document) return true;
return false;
};
const index = catchAsync(async (req, res, next) => {
const query = req.query;
let allData = await db.CommercialAdditionalInfo.find(query);
return successResponse(res, allData);
});
const add = catchAsync(async (req, res, next) => {
const isDuplicate = await validateDuplicateEntry(req.body.policy_id);
if (isDuplicate) {
return next(new AppError("Duplicate entry is not allowed.", 404));
}
const commercialInfo = new db.CommercialAdditionalInfo(req.body);
await commercialInfo.save();
return successResponse(
res,
commercialInfo,
"CommercialAdditionalInfo saved successfully"
);
});
const edit = catchAsync(async (req, res, next) => {
let result = await db.CommercialAdditionalInfo.findByIdAndUpdate(
{ _id: req.params.id },
{ $set: req.body },
{ new: true }
);
if (!result) {
return next(new AppError("No data found.", 404));
}
return successResponse(
res,
result,
"CommercialAdditionalInfo updated successfully"
);
});
const deleteData = catchAsync(async (req, res, next) => {
let commercialInfo = await db.CommercialAdditionalInfo.findByIdAndDelete({
_id: req.params.id,
});
if (!commercialInfo) {
return next(new AppError("No data found.", 404));
}
return successResponse(
res,
commercialInfo,
"CommercialAdditionalInfo deleted successfully"
);
});
_03a.d({ index, add, edit, deleteData });
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists