mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
Updated croner to 8.1.0 and fixed "recurring-interval" type maintenance (#4939)
This commit is contained in:
commit
ba448c765a
11
package-lock.json
generated
11
package-lock.json
generated
|
@ -24,7 +24,7 @@
|
||||||
"command-exists": "~1.2.9",
|
"command-exists": "~1.2.9",
|
||||||
"compare-versions": "~3.6.0",
|
"compare-versions": "~3.6.0",
|
||||||
"compression": "~1.7.4",
|
"compression": "~1.7.4",
|
||||||
"croner": "~6.0.5",
|
"croner": "~8.1.0",
|
||||||
"dayjs": "~1.11.5",
|
"dayjs": "~1.11.5",
|
||||||
"dev-null": "^0.1.1",
|
"dev-null": "^0.1.1",
|
||||||
"dotenv": "~16.0.3",
|
"dotenv": "~16.0.3",
|
||||||
|
@ -6744,12 +6744,11 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/croner": {
|
"node_modules/croner": {
|
||||||
"version": "6.0.7",
|
"version": "8.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/croner/-/croner-6.0.7.tgz",
|
"resolved": "https://registry.npmjs.org/croner/-/croner-8.1.0.tgz",
|
||||||
"integrity": "sha512-k3Xx3Rcclfr60Yx4TmvsF3Yscuiql8LSvYLaphTsaq5Hk8La4Z/udmUANMOTKpgGGroI2F6/XOr9cU9OFkYluQ==",
|
"integrity": "sha512-sz990XOUPR8dG/r5BRKMBd15MYDDUu8oeSaxFD5DqvNgHSZw8Psd1s689/IGET7ezxRMiNlCIyGeY1Gvxp/MLg==",
|
||||||
"license": "MIT",
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.0"
|
"node": ">=18.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/cronstrue": {
|
"node_modules/cronstrue": {
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
"command-exists": "~1.2.9",
|
"command-exists": "~1.2.9",
|
||||||
"compare-versions": "~3.6.0",
|
"compare-versions": "~3.6.0",
|
||||||
"compression": "~1.7.4",
|
"compression": "~1.7.4",
|
||||||
"croner": "~6.0.5",
|
"croner": "~8.1.0",
|
||||||
"dayjs": "~1.11.5",
|
"dayjs": "~1.11.5",
|
||||||
"dev-null": "^0.1.1",
|
"dev-null": "^0.1.1",
|
||||||
"dotenv": "~16.0.3",
|
"dotenv": "~16.0.3",
|
||||||
|
|
|
@ -239,19 +239,7 @@ class Maintenance extends BeanModel {
|
||||||
this.beanMeta.status = "under-maintenance";
|
this.beanMeta.status = "under-maintenance";
|
||||||
clearTimeout(this.beanMeta.durationTimeout);
|
clearTimeout(this.beanMeta.durationTimeout);
|
||||||
|
|
||||||
// Check if duration is still in the window. If not, use the duration from the current time to the end of the window
|
let duration = this.inferDuration(customDuration);
|
||||||
let duration;
|
|
||||||
|
|
||||||
if (customDuration > 0) {
|
|
||||||
duration = customDuration;
|
|
||||||
} else if (this.end_date) {
|
|
||||||
let d = dayjs(this.end_date).diff(dayjs(), "second");
|
|
||||||
if (d < this.duration) {
|
|
||||||
duration = d * 1000;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
duration = this.duration * 1000;
|
|
||||||
}
|
|
||||||
|
|
||||||
UptimeKumaServer.getInstance().sendMaintenanceListByUserID(this.user_id);
|
UptimeKumaServer.getInstance().sendMaintenanceListByUserID(this.user_id);
|
||||||
|
|
||||||
|
@ -263,9 +251,21 @@ class Maintenance extends BeanModel {
|
||||||
};
|
};
|
||||||
|
|
||||||
// Create Cron
|
// Create Cron
|
||||||
this.beanMeta.job = new Cron(this.cron, {
|
if (this.strategy === "recurring-interval") {
|
||||||
timezone: await this.getTimezone(),
|
// For recurring-interval, Croner needs to have interval and startAt
|
||||||
}, startEvent);
|
const startDate = dayjs(this.startDate);
|
||||||
|
const [ hour, minute ] = this.startTime.split(":");
|
||||||
|
const startDateTime = startDate.hour(hour).minute(minute);
|
||||||
|
this.beanMeta.job = new Cron(this.cron, {
|
||||||
|
timezone: await this.getTimezone(),
|
||||||
|
interval: this.interval_day * 24 * 60 * 60,
|
||||||
|
startAt: startDateTime.toISOString(),
|
||||||
|
}, startEvent);
|
||||||
|
} else {
|
||||||
|
this.beanMeta.job = new Cron(this.cron, {
|
||||||
|
timezone: await this.getTimezone(),
|
||||||
|
}, startEvent);
|
||||||
|
}
|
||||||
|
|
||||||
// Continue if the maintenance is still in the window
|
// Continue if the maintenance is still in the window
|
||||||
let runningTimeslot = this.getRunningTimeslot();
|
let runningTimeslot = this.getRunningTimeslot();
|
||||||
|
@ -311,6 +311,24 @@ class Maintenance extends BeanModel {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calculate the maintenance duration
|
||||||
|
* @param {number} customDuration - The custom duration in milliseconds.
|
||||||
|
* @returns {number} The inferred duration in milliseconds.
|
||||||
|
*/
|
||||||
|
inferDuration(customDuration) {
|
||||||
|
// Check if duration is still in the window. If not, use the duration from the current time to the end of the window
|
||||||
|
if (customDuration > 0) {
|
||||||
|
return customDuration;
|
||||||
|
} else if (this.end_date) {
|
||||||
|
let d = dayjs(this.end_date).diff(dayjs(), "second");
|
||||||
|
if (d < this.duration) {
|
||||||
|
return d * 1000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return this.duration * 1000;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stop the maintenance
|
* Stop the maintenance
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
|
@ -395,10 +413,8 @@ class Maintenance extends BeanModel {
|
||||||
} else if (!this.strategy.startsWith("recurring-")) {
|
} else if (!this.strategy.startsWith("recurring-")) {
|
||||||
this.cron = "";
|
this.cron = "";
|
||||||
} else if (this.strategy === "recurring-interval") {
|
} else if (this.strategy === "recurring-interval") {
|
||||||
let array = this.start_time.split(":");
|
// For intervals, the pattern is calculated in the run function as the interval-option is set
|
||||||
let hour = parseInt(array[0]);
|
this.cron = "* * * * *";
|
||||||
let minute = parseInt(array[1]);
|
|
||||||
this.cron = minute + " " + hour + " */" + this.interval_day + " * *";
|
|
||||||
this.duration = this.calcDuration();
|
this.duration = this.calcDuration();
|
||||||
log.debug("maintenance", "Cron: " + this.cron);
|
log.debug("maintenance", "Cron: " + this.cron);
|
||||||
log.debug("maintenance", "Duration: " + this.duration);
|
log.debug("maintenance", "Duration: " + this.duration);
|
||||||
|
|
Loading…
Reference in a new issue