lint fixes

This commit is contained in:
Eddie Fiorentine 2024-11-19 20:13:06 -05:00
parent e5477fba0d
commit b40dbf7db7
2 changed files with 11 additions and 12 deletions

View file

@ -1,5 +1,5 @@
const { MonitorType } = require("./monitor-type"); const { MonitorType } = require("./monitor-type");
const { UP, log } = require("../../src/util"); const { UP } = require("../../src/util");
const { exec } = require("promisify-child-process"); const { exec } = require("promisify-child-process");
class SIPMonitorType extends MonitorType { class SIPMonitorType extends MonitorType {
@ -10,7 +10,7 @@ class SIPMonitorType extends MonitorType {
* Run the monitoring check on the given monitor * Run the monitoring check on the given monitor
* @param {Monitor} monitor Monitor to check * @param {Monitor} monitor Monitor to check
* @param {Heartbeat} heartbeat Monitor heartbeat to update * @param {Heartbeat} heartbeat Monitor heartbeat to update
* @param {UptimeKumaServer} server Uptime Kuma server * @param {UptimeKumaServer} _server Uptime Kuma server
* @returns {Promise<void>} * @returns {Promise<void>}
* @throws Will throw an error if the command execution encounters any error. * @throws Will throw an error if the command execution encounters any error.
*/ */
@ -32,7 +32,7 @@ class SIPMonitorType extends MonitorType {
* @throws Will throw an error if the command execution encounters any error. * @throws Will throw an error if the command execution encounters any error.
*/ */
async runSipSak(hostname, port, timeout) { async runSipSak(hostname, port, timeout) {
const { stdout, stderr } = await exec(`sipsak -s sip:${hostname}:${port} --from sip:sipsak@${hostname} -v`,{timeout:timeout}); const { stdout, stderr } = await exec(`sipsak -s sip:${hostname}:${port} --from sip:sipsak@${hostname} -v`, { timeout: timeout });
if (!stdout && stderr && stderr.toString()) { if (!stdout && stderr && stderr.toString()) {
throw new Error(`Error in output: ${stderr.toString()}`); throw new Error(`Error in output: ${stderr.toString()}`);
} }
@ -44,15 +44,14 @@ class SIPMonitorType extends MonitorType {
} }
/** /**
* * @param {string} res response to be parsed
* @param {string} res * @param {object} heartbeat heartbeat object to update
* @param {object} heartbeat * @returns {void} returns nothing
* @returns {void}
*/ */
parseSipsakResponse(res, heartbeat){ parseSipsakResponse(res, heartbeat) {
let lines = res.split("\n"); let lines = res.split("\n");
for (let line of lines){ for (let line of lines) {
if (line.includes("200 OK")){ if (line.includes("200 OK")) {
heartbeat.status = UP; heartbeat.status = UP;
heartbeat.msg = line; heartbeat.msg = line;
break; break;