mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-08 02:39:44 -06:00
* Added comment to show where maintenance window should be applied * Add maintenance window schema * Added userID to model
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
const mongoose = require("mongoose");
|
|
|
|
/**
|
|
* MaintenanceWindow Schema
|
|
* @module MaintenanceWindow
|
|
* @typedef {Object} MaintenanceWindow
|
|
* @property {mongoose.Schema.Types.ObjectId} monitorId - The ID of the monitor. This is a reference to the Monitor model and is immutable.
|
|
* @property {Boolean} active - Indicates whether the maintenance window is active.
|
|
* @property {Boolean} oneTime - Indicates whether the maintenance window is a one-time event.
|
|
* @property {Date} start - The start date and time of the maintenance window.
|
|
* @property {Date} end - The end date and time of the maintenance window.
|
|
* @property {Date} expiry - The expiry date and time of the maintenance window. This is used for MongoDB's TTL index to automatically delete the document at this time. This field is set to the same value as `end` when `oneTime` is `true`.
|
|
*
|
|
* @example
|
|
*
|
|
* let maintenanceWindow = new MaintenanceWindow({
|
|
* monitorId: monitorId,
|
|
* active: active,
|
|
* oneTime: oneTime,
|
|
* start: start,
|
|
* end: end,
|
|
* });
|
|
*
|
|
* if (oneTime) {
|
|
* maintenanceWindow.expiry = end;
|
|
* }
|
|
*
|
|
*/
|
|
|
|
const MaintenanceWindow = mongoose.Schema(
|
|
{
|
|
monitorId: {
|
|
type: mongoose.Schema.Types.ObjectId,
|
|
ref: "Monitor",
|
|
immutable: true,
|
|
},
|
|
userId: {
|
|
type: mongoose.Schema.Types.ObjectId,
|
|
ref: "User",
|
|
immutable: true,
|
|
},
|
|
active: {
|
|
type: Boolean,
|
|
},
|
|
oneTime: {
|
|
type: Boolean,
|
|
},
|
|
start: {
|
|
type: Date,
|
|
},
|
|
end: {
|
|
type: Date,
|
|
},
|
|
expiry: {
|
|
type: Date,
|
|
index: { expires: "0s" },
|
|
},
|
|
},
|
|
|
|
{
|
|
timestamps: true,
|
|
}
|
|
);
|
|
|
|
module.exports = mongoose.model("MaintenanceWindow", MaintenanceWindow);
|