mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-07 18:29:41 -06:00
120 lines
3.5 KiB
JavaScript
Executable File
120 lines
3.5 KiB
JavaScript
Executable File
import {
|
|
createMaintenanceWindowBodyValidation,
|
|
editMaintenanceWindowByIdParamValidation,
|
|
editMaintenanceByIdWindowBodyValidation,
|
|
getMaintenanceWindowByIdParamValidation,
|
|
getMaintenanceWindowsByMonitorIdParamValidation,
|
|
getMaintenanceWindowsByTeamIdQueryValidation,
|
|
deleteMaintenanceWindowByIdParamValidation,
|
|
} from "../validation/joi.js";
|
|
import { asyncHandler } from "../utils/errorUtils.js";
|
|
|
|
const SERVICE_NAME = "maintenanceWindowController";
|
|
|
|
class MaintenanceWindowController {
|
|
constructor(db, settingsService, stringService) {
|
|
this.db = db;
|
|
this.settingsService = settingsService;
|
|
this.stringService = stringService;
|
|
}
|
|
|
|
createMaintenanceWindows = asyncHandler(
|
|
async (req, res, next) => {
|
|
await createMaintenanceWindowBodyValidation.validateAsync(req.body);
|
|
|
|
const { teamId } = req.user;
|
|
const monitorIds = req.body.monitors;
|
|
const dbTransactions = monitorIds.map((monitorId) => {
|
|
return this.db.createMaintenanceWindow({
|
|
teamId,
|
|
monitorId,
|
|
name: req.body.name,
|
|
active: req.body.active ? req.body.active : true,
|
|
repeat: req.body.repeat,
|
|
start: req.body.start,
|
|
end: req.body.end,
|
|
});
|
|
});
|
|
await Promise.all(dbTransactions);
|
|
|
|
return res.success({
|
|
msg: this.stringService.maintenanceWindowCreate,
|
|
});
|
|
},
|
|
SERVICE_NAME,
|
|
"createMaintenanceWindows"
|
|
);
|
|
|
|
getMaintenanceWindowById = asyncHandler(
|
|
async (req, res, next) => {
|
|
await getMaintenanceWindowByIdParamValidation.validateAsync(req.params);
|
|
const maintenanceWindow = await this.db.getMaintenanceWindowById(req.params.id);
|
|
return res.success({
|
|
msg: this.stringService.maintenanceWindowGetById,
|
|
data: maintenanceWindow,
|
|
});
|
|
},
|
|
SERVICE_NAME,
|
|
"getMaintenanceWindowById"
|
|
);
|
|
|
|
getMaintenanceWindowsByTeamId = asyncHandler(
|
|
async (req, res, next) => {
|
|
await getMaintenanceWindowsByTeamIdQueryValidation.validateAsync(req.query);
|
|
|
|
const { teamId } = req.user;
|
|
const maintenanceWindows = await this.db.getMaintenanceWindowsByTeamId(teamId, req.query);
|
|
|
|
return res.success({
|
|
msg: this.stringService.maintenanceWindowGetByTeam,
|
|
data: maintenanceWindows,
|
|
});
|
|
},
|
|
SERVICE_NAME,
|
|
"getMaintenanceWindowsByTeamId"
|
|
);
|
|
|
|
getMaintenanceWindowsByMonitorId = asyncHandler(
|
|
async (req, res, next) => {
|
|
await getMaintenanceWindowsByMonitorIdParamValidation.validateAsync(req.params);
|
|
|
|
const maintenanceWindows = await this.db.getMaintenanceWindowsByMonitorId(req.params.monitorId);
|
|
|
|
return res.success({
|
|
msg: this.stringService.maintenanceWindowGetByUser,
|
|
data: maintenanceWindows,
|
|
});
|
|
},
|
|
SERVICE_NAME,
|
|
"getMaintenanceWindowsByMonitorId"
|
|
);
|
|
|
|
deleteMaintenanceWindow = asyncHandler(
|
|
async (req, res, next) => {
|
|
await deleteMaintenanceWindowByIdParamValidation.validateAsync(req.params);
|
|
await this.db.deleteMaintenanceWindowById(req.params.id);
|
|
return res.success({
|
|
msg: this.stringService.maintenanceWindowDelete,
|
|
});
|
|
},
|
|
SERVICE_NAME,
|
|
"deleteMaintenanceWindow"
|
|
);
|
|
|
|
editMaintenanceWindow = asyncHandler(
|
|
async (req, res, next) => {
|
|
await editMaintenanceWindowByIdParamValidation.validateAsync(req.params);
|
|
await editMaintenanceByIdWindowBodyValidation.validateAsync(req.body);
|
|
const editedMaintenanceWindow = await this.db.editMaintenanceWindowById(req.params.id, req.body);
|
|
return res.success({
|
|
msg: this.stringService.maintenanceWindowEdit,
|
|
data: editedMaintenanceWindow,
|
|
});
|
|
},
|
|
SERVICE_NAME,
|
|
"editMaintenanceWindow"
|
|
);
|
|
}
|
|
|
|
export default MaintenanceWindowController;
|