forked from swedishtechevents/updater
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
98 lines (80 loc) · 2.47 KB
/
index.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
const program = require('commander');
const octokit = require('@octokit/rest')();
const pino = require('pino')();
const updater = require('./lib/updater');
const github = require('./lib/github');
const meetup = require('./lib/meetup');
const eventbrite = require('./lib/eventbrite');
const twitter = require('./lib/twitter');
const ical = require('./lib/ical');
const { fixEventsData, uniqEvents } = require('./lib/events');
// Create program.
program
.version('1.0.0')
.option('-c, --config [config]', 'Config file', './config.json')
.option('-e, --eventbrite', 'Enable Eventbrite')
.option('-m, --meetup', 'Enable Meetup')
.option('-u, --update', 'Enable update of api')
.option('-t, --twitter', 'Enable Twitter')
.option('-i, --ical', 'Enable ical')
.parse(process.argv);
// Bail if no config file.
if (!program.config) {
pino.error('Missing config path');
process.exit(1);
}
// Load configuration.
const config = require(program.config);
// Authenticate against GitHub api.
octokit.authenticate(config.github.authentication);
(async () => {
let events = await github(octokit, config.github);
if (!(events instanceof Array)) {
events = [];
}
// Fetch meetup events.
if (program.meetup) {
const eventsMeetup = await meetup(config.meetup);
if (eventsMeetup instanceof Array) {
events = events.concat(eventsMeetup);
}
}
// Fetch eventbrite events.
if (program.eventbrite) {
const eventsEventbrite = await eventbrite(config.eventbrite);
if (eventsEventbrite instanceof Array) {
events = events.concat(eventsEventbrite);
}
}
// Sort events by date.
events = events.sort((a, b) => {
return a.date - b.date;
});
// Remove undefined events.
events = events.filter(event => {
return typeof event === 'object';
});
// Limit events description length to 280.
events = events.map(event => {
let description = (event.description || '').substring(0, 280);
if ((event.description || '').length > 280) {
description += '...';
}
event.description = description.trim();
return event;
});
events = uniqEvents(events);
events = fixEventsData(events);
// Update events file.
if (program.update) {
updater(octokit, config.github, config.github.file, events);
}
// Tweet events.
if (program.twitter) {
twitter.tweet(config.twitter, events);
}
// Update ical file.
if (program.ical) {
updater(octokit, config.github, config.github.files.ical, ical(events));
}
})();