forked from qawemlilo/node-ping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.js
78 lines (57 loc) · 1.5 KB
/
events.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
"use strict";
var config = require('./config.json');
var mailer = require('./mailer');
/*
Handles events emitted when a websites stop being monitored
@param - (String) website - website url
*/
function onStop (website) {
mailer({
from: config.email,
to: config.email,
subject: website + ' monitor has stopped',
body: '<p>' + website + ' is no longer being minitored.</p>'
},
function (error, res) {
if (error) {
console.log('Failed to send email. ' + error.message);
}
else {
console.log(res.message);
}
});
}
/*
Handles events emitted when a website is down
@param - (Object) res - response object return by the Node Monitor object
*/
function onDown (res) {
var msg = '';
msg += '<p>Time: ' + res.time;
msg += '</p><p>Website: ' + res.website;
msg += '</p><p>Message: ' + res.statusMessage + '</p>';
mailer({
from: config.email,
to: config.email,
subject: res.website + ' is down',
body: msg
},
function (error, res) {
if (error) {
console.error('Failed to send email. ' + error.message);
}
else {
console.log(res.message);
}
});
}
/*
Handles events emitted when aa error occurs
@param - (String) msg - response message
*/
function onError (msg) {
console.log(msg);
}
module.exports.onStop = onStop;
module.exports.onDown = onDown;
module.exports.onError = onError;