Sindbad~EG File Manager

Current Path : /home/infinitibizsol/.trash/controllers.8/user/
Upload File :
Current File : /home/infinitibizsol/.trash/controllers.8/user/system.js

import db from "../../model/index";
import AppError from "../../utils/apiError";
import catchAsync from "../../utils/catchAsync";
import { successResponse, failedResponse } from "../../utils/responseFormat";
const index = catchAsync(async (req, res, next) => {
  const query = req.query;
  let allData = await db.System.find(query)
    .populate("user_id", ["_id", "first_name", "last_name"])
    .exec();

  return successResponse(res, allData);
});

const add = catchAsync(async (req, res, next) => {
  const system = new db.System(req.body);
  await system.save();
  return successResponse(res, system, "System saved successfully", 201);
});

const edit = catchAsync(async (req, res, next) => {
  let result = await db.System.findByIdAndUpdate(
    { _id: req.params.id },
    { $set: req.body },
    {
      new: true,
    }
  );
  if (!result) {
    return next(new AppError("No data found.", 404));
  }
  return successResponse(res, result, "System updated successfully");
});

const deleteData = catchAsync(async (req, res, next) => {
  let lead = await db.System.findByIdAndDelete({ _id: req.params.id });
  if (!lead) {
    return next(new AppError("No data found.", 404));
  }
  return successResponse(res, lead, "System deleted successfully");
});

export default { index, add, edit, deleteData };

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists