-
Notifications
You must be signed in to change notification settings - Fork 66
/
api.js
198 lines (160 loc) · 6.9 KB
/
api.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
var express = require('express');
var router = express.Router();
var Christmas = require("./public/js/christmas"),
zones = require("./public/js/zones"),
labels = require("./public/js/labels")
moment = require("moment-timezone");
module.exports = function(app, config, findCountry) {
var ERROR = function(message) {
return {
"errors": [
{"message": message}
]
}
};
var UNAUTHORIZED = "No thank you.",
BAD_TRIGGER = "Invalid trigger.",
BAD_TRIGGER_FIELD = "Invalid trigger field.",
BAD_TIMEZONE = "Invalid timezone.",
BAD_COUNTRY = "Invalid country code.",
INVALID_TIMEZONE = "Not a valid timezone.",
MISSING_TRIGGER_FIELDS = "Missing trigger fields.",
EVERYTHING_IS_FINE = "Everything is fine."
// if a client secret is set, gate access to some methods
var authed = function(req) {
var secret = config.ifttt;
if (!secret) {
console.log("No client secret set, not checking auth.");
return true;
}
return req.get("IFTTT-Channel-Key") == secret;
};
// Every Christmas since 2007, in the given time zone,
// to honor the site's history.
var christmasesFor = function(country, timezone) {
var firstYear = 2007; // nostalgia
var now = new Date();
var thisYear = 1900 + now.getYear();
var years = thisYear - firstYear;
var christmases = [];
for (var i=0; i<=years; i++) {
var year = thisYear - i; // reverse chronological order
var christmasDay = Christmas.forYear(moment, year, timezone);
// only show christmases past
if (now > christmasDay) {
christmases.push({
answer: Christmas.yes(country),
christmas: true,
christmas_day: christmasDay.toISOString(),
christmas_time: (christmasDay.getTime() / 1000),
year: year,
id: "christmas-" + year,
timezone: timezone,
country: country,
country_names: Christmas.countries[country].names
});
}
}
return christmases;
};
// given a christmas object above, prepare it for IFTTT format
var iftttFor = function(christmas) {
return {
answer: christmas.answer,
year: christmas.year,
created_at: christmas.christmas_day,
meta: {
// should only ever fire once a year
id: christmas.id,
timestamp: christmas.christmas_time,
}
}
};
// isitchristmas API.
// Default to Esperanto and Greenwich Mean Time.
router.get('/', function(req, res) {
var country = findCountry(req) || "EO";
if (!Christmas.countries[country]) return res.status(400).json(ERROR(BAD_COUNTRY));
var timezone = (req.query.timezone || "UTC");
if (moment.tz.zone(timezone) == null) {
return res.status(400).json(ERROR(BAD_TIMEZONE));
}
res.json({christmases: christmasesFor(country, timezone)})
});
router.get('/test', function(req, res) {
res.send("The API is alive!");
});
router.post('/ifttt/v1/triggers/:trigger', function(req, res) {
if (config.ifttt_debug) console.log("trigger: " + req.params.trigger);
if (!authed(req)) return res.status(401).json(ERROR(UNAUTHORIZED));
if (req.params.trigger != "christmas") return res.status(400).json(ERROR(BAD_TRIGGER));
if (!req.body.triggerFields || !req.body.triggerFields.timezone) return res.status(400).json(ERROR(MISSING_TRIGGER_FIELDS));
if (!zones[req.body.triggerFields.timezone]) return res.status(400).json(ERROR(INVALID_TIMEZONE));
if (req.body.limit === 0)
res.json({"data": []});
else {
// map IFTTT zone name to standard zone name
// we've validated that this field is here
var timezone = zones[req.body.triggerFields.timezone];
// every christmas since 2007 in the user's time zone
// for IFTTT, sadly I must just assume English
var christmases = christmasesFor("US", timezone);
var items = [];
for (var i=0; i<christmases.length; i++)
items.push(iftttFor(christmases[i]))
// no more than 20 years of christmas data, tops
items = items.slice(0, (req.body.limit || 20));
res.json({"data": items});
}
});
router.post('/ifttt/v1/triggers/:trigger/fields/:field/options', function(req, res) {
if (!authed(req)) return res.status(401).json(ERROR(UNAUTHORIZED));
if (config.ifttt_debug) console.log('triggerfield, trigger: ' + req.params.trigger + ', field: ' + req.params.field);
if (req.params.trigger != "christmas") return res.status(400).json(ERROR(BAD_TRIGGER));
if (req.params.field != "timezone") return res.status(400).json(ERROR(BAD_TRIGGER_FIELD));
res.json({"data": labels});
});
router.post('/ifttt/v1/triggers/:trigger/fields/:field/validate', function(req, res) {
if (!authed(req)) return res.status(401).json(ERROR(UNAUTHORIZED));
if (config.ifttt_debug) console.log('triggerfield validate, trigger: ' + req.params.trigger + ', field: ' + req.params.field);
if (req.params.trigger != "christmas") return res.status(400).json(ERROR(BAD_TRIGGER));
if (req.params.field != "timezone") return res.status(400).json(ERROR(BAD_TRIGGER_FIELD));
if (zones[req.body.value])
res.json({"data": {valid: true}});
else
res.json({"data": {valid: false, message: INVALID_TIMEZONE}});
});
router.get('/ifttt/v1/status', function(req, res) {
if (!authed(req)) return res.status(401).json(ERROR(UNAUTHORIZED));
res.json({
"data": {
"status": "OK",
"time": new Date().toISOString(),
"message": EVERYTHING_IS_FINE
}
});
});
router.post('/ifttt/v1/test/setup', function(req, res) {
if (!authed(req)) return res.status(401).json(ERROR(UNAUTHORIZED));
res.json({
"data": {
"samples": {
"triggers": {
"christmas": {
"timezone": "Pacific Time (US & Canada)"
}
},
"triggerFieldValidations": {
"christmas": {
"timezone": {
"valid": "Pacific Time (US & Canada)",
"invalid": "America/Los_Angeles"
}
}
}
}
}
});
});
return router;
};