-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandler.js
More file actions
53 lines (46 loc) · 1.06 KB
/
handler.js
File metadata and controls
53 lines (46 loc) · 1.06 KB
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
'use strict';
var Push = require( 'pushover-notifications' )
var p = new Push( {
user: process.env['PUSHOVER_USER'],
token: process.env['PUSHOVER_TOKEN'],
// httpOptions: {
// proxy: process.env['http_proxy'],
//},
// onerror: function(error) {},
// update_sounds: true // update the list of sounds every day - will
// prevent app from exiting.
})
function record(event){
if (event.hasOwnProperty('Records')){
return event['Records'][0]
}else{
undefined
}
}
function isSNS(event) {
return event.hasOwnProperty('Records') && event['Records'][0]['EventSource'] == 'aws:sns'
}
module.exports.pushover_send = async (event) => {
console.log(event)
var msg = null
if (isSNS(event)){
var sns = event.Records[0].Sns
var msg = {
title: sns.Subject,
message: sns.message + '\n' + sns.Timestamp
}
}else{
var msg = {
title: 'Event Notificaiton',
message: event
}
}
return p.send(msg, function(err, result){
if (err) {
throw e
}
if (res) {
return result
}
});
};