-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotify.js
More file actions
executable file
·75 lines (69 loc) · 2.45 KB
/
notify.js
File metadata and controls
executable file
·75 lines (69 loc) · 2.45 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env node
const _ = require('lodash');
const ubsub = require('libubsub').streaming;
const notifier = require('node-notifier');
const os = require('os');
const fs = require('fs');
const CONFIG_PATH = `${os.homedir()}/.ubsub`;
function loadConfig() {
if (fs.existsSync(CONFIG_PATH))
return JSON.parse(fs.readFileSync(CONFIG_PATH, 'utf8'));
return {};
}
const args = require('yargs')
.usage('$0 [args]')
.help('help')
.alias('help', 'h')
.string('user')
.describe('user', 'User id to override one that you logged in to')
.string('userkey')
.describe('userkey', 'User key to override your logged in account')
.describe('topic', 'The topic to listen on')
.string('topic')
.alias('topic', 't')
.demand('topic')
.describe('messagekey', 'The key to lookup the message from the payload')
.string('messagekey')
.alias('messagekey', 'mk')
.default('messagekey', 'message')
.describe('titlekey', 'The key to lookup the title from the payload')
.string('titlekey')
.alias('titlekey', 'tk')
.default('titlekey', 'title')
.describe('stickykey', 'The key to lookup whether or not the message is sticky in the payload')
.string('stickykey')
.describe('sticky', 'Messages are sticky (if not specified by event)')
.boolean('sticky')
.default('sticky', false)
.describe('prioritykey', 'Key to determine message priority from event')
.string('prioritykey')
.describe('priority', 'The default priority')
.number('priority')
.default('priority', 0)
.describe('imagekey', 'The key to use an image from the event')
.string('imagekey')
.describe('image', 'The default image to use for the event')
.string('image')
.env('UBSUB')
.version()
.epilog(`You can set login information via environmental variables,
eg. UBSUB_USER, UBSUB_USERKEY`)
.argv;
const cfg = loadConfig();
const client = ubsub(args.user || cfg.userId, args.userkey || cfg.userKey);
console.log(`Listening to ${args.user}:${args.topic}...`);
client.listen(args.topic, (payload) => {
const message = _.get(payload, args.messagekey, 'Undefined message');
const title = _.get(payload, args.titlekey, 'UbSub Event');
const sticky = !!_.get(payload, args.stickykey, args.sticky);
const priority = ~~_.get(payload, args.prioritykey, args.priority);
const image = _.get(payload, args.imagekey, args.image);
console.log(`Received message: [${title}] ${message}`);
notifier.notify({
title,
message,
icon: image,
wait: sticky,
priority,
});
});