forked from randomBrainstormer/MMM-GoogleCalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node_helper.js
291 lines (260 loc) · 8.33 KB
/
node_helper.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
const NodeHelper = require("node_helper");
const { google } = require("googleapis");
const { encodeQueryData, formatError } = require("./helpers");
const fs = require("fs");
const Log = require("logger");
const TOKEN_PATH = "/token.json";
module.exports = NodeHelper.create({
// Override start method.
start: function () {
Log.log("Starting node helper for: " + this.name);
this.fetchers = [];
this.isHelperActive = true;
this.calendarService;
},
stop: function () {
this.isHelperActive = false;
},
// Override socketNotificationReceived method.
socketNotificationReceived: function (notification, payload) {
if (notification === "MODULE_READY") {
if (!this.calendarService) {
if (payload.queryParams) {
// if payload is sent, user has authenticated
const params = new URLSearchParams(payload.queryParams);
this.authenticateWithQueryParams(params);
} else {
this.authenticate();
}
} else {
this.sendSocketNotification("SERVICE_READY", {});
}
}
if (notification === "ADD_CALENDAR") {
this.fetchCalendar(
payload.calendarID,
payload.fetchInterval,
payload.maximumEntries,
payload.pastDaysCount,
payload.id
);
}
},
authenticateWithQueryParams: function (params) {
const error = params.get("error");
if (error) {
this.sendSocketNotification("AUTH_FAILED", { error_type: error });
return;
}
var _this = this;
const code = params.get("code");
fs.readFile(_this.path + "/credentials.json", (err, content) => {
if (err) {
_this.sendSocketNotification("AUTH_FAILED", { error_type: err });
return console.log("Error loading client secret file:", err);
}
// Authorize a client with credentials, then call the Google Tasks API.
_this.authenticateWeb(
_this,
code,
JSON.parse(content),
_this.startCalendarService
);
});
},
// replaces the old authenticate method
authenticateWeb: function (_this, code, credentials, callback) {
const { client_secret, client_id, redirect_uris } = credentials.web;
if (!client_secret || !client_id) {
_this.sendSocketNotification("AUTH_FAILED", {
error_type: "WRONG_CREDENTIALS_FORMAT"
});
return;
}
_this.oAuth2Client = new google.auth.OAuth2(
client_id,
client_secret,
redirect_uris ? redirect_uris[0] : "http://localhost:8080"
);
_this.oAuth2Client.getToken(code, (err, token) => {
if (err) return console.error("Error retrieving access token", err);
_this.oAuth2Client.setCredentials(token);
// Store the token to disk for later program executions
fs.writeFile(_this.path + TOKEN_PATH, JSON.stringify(token), (err) => {
if (err) return console.error(err);
console.log("Token stored to", _this.path + TOKEN_PATH);
});
callback(_this.oAuth2Client, _this);
});
},
// Authenticate oAuth credentials
authenticate: function () {
var _this = this;
fs.readFile(_this.path + "/credentials.json", (err, content) => {
if (err) {
_this.sendSocketNotification("AUTH_FAILED", { error_type: err });
return console.log("Error loading client secret file:", err);
}
// Authorize a client with credentials, then call the Google Tasks API.
authorize(JSON.parse(content), _this.startCalendarService);
});
/**
* Create an OAuth2 client with the given credentials, and then execute the
* given callback function.
* @param {Object} credentials The authorization client credentials.
* @param {function} callback The callback to call with the authorized client.
*/
function authorize(credentials, callback) {
var creds;
var credentialType;
// TVs and Limited Input devices credentials
if (credentials.installed) {
creds = credentials.installed;
credentialType = "tv";
}
// Web credentials (fallback)
if (credentials.web) {
creds = credentials.web;
credentialType = "web";
}
const { client_secret, client_id, redirect_uris } = creds;
if (!client_secret || !client_id) {
_this.sendSocketNotification("AUTH_FAILED", {
error_type: "WRONG_CREDENTIALS_FORMAT"
});
return;
}
_this.oAuth2Client = new google.auth.OAuth2(
client_id,
client_secret,
redirect_uris ? redirect_uris[0] : "http://localhost:8080"
);
// Check if we have previously stored a token.
fs.readFile(_this.path + TOKEN_PATH, (err, token) => {
if (err) {
const redirect_uri = redirect_uris
? redirect_uris[0]
: `http://localhost:8080`;
// alert auth is needed
_this.sendSocketNotification("AUTH_NEEDED", {
url: `https://accounts.google.com/o/oauth2/v2/auth?${encodeQueryData(
{
scope: "https://www.googleapis.com/auth/calendar.readonly",
access_type: "offline",
include_granted_scopes: true,
response_type: "code",
state: _this.name,
redirect_uri,
client_id
}
)}`, // only used for web credential
credentialType
});
return console.log(
this.name + ": Error loading token:",
err,
"Make sure you have authorized the app."
);
}
_this.oAuth2Client.setCredentials(JSON.parse(token));
callback(_this.oAuth2Client, _this);
});
}
},
/**
* Check for data.error
* @param {object} error
*/
checkForHTTPError: function (request) {
return request?.response?.data?.error?.toUpperCase();
},
startCalendarService: function (auth, _this) {
_this.calendarService = google.calendar({ version: "v3", auth });
_this.sendSocketNotification("SERVICE_READY", {});
},
/**
* Fetch calendars
*
* @param {string} calendarID The ID of the calendar
* @param {number} fetchInterval How often does the calendar needs to be fetched in ms
* @param {number} maximumEntries The maximum number of events fetched.
* @param {string} identifier ID of the module
*/
fetchCalendar: function (
calendarID,
fetchInterval,
maximumEntries,
pastDaysCount,
identifier
) {
this.calendarService.events.list(
{
calendarId: calendarID,
timeMin: new Date(
new Date().setDate(new Date().getDate() - pastDaysCount)
).toISOString(), // Lower bound (exclusive) for an event's end time to filter by
maxResults: maximumEntries, // Maximum number of events returned
singleEvents: true,
orderBy: "startTime"
},
(err, res) => {
if (err) {
Log.error(
"MMM-GoogleCalendar Error. Could not fetch calendar: ",
calendarID,
formatError(err)
);
let error_type = NodeHelper.checkFetchError(err);
if (error_type === "MODULE_ERROR_UNSPECIFIED") {
error_type = this.checkForHTTPError(err) || error_type;
}
// send error to module
this.sendSocketNotification("CALENDAR_ERROR", {
id: identifier,
error_type
});
} else {
const events = res.data.items;
Log.info(
`${this.name}: ${events.length} events loaded for ${calendarID}`
);
this.broadcastEvents(events, identifier, calendarID);
}
this.scheduleNextCalendarFetch(
calendarID,
fetchInterval,
maximumEntries,
pastDaysCount,
identifier
);
}
);
},
scheduleNextCalendarFetch: function (
calendarID,
fetchInterval,
maximumEntries,
pastDaysCount,
identifier
) {
var _this = this;
if (this.isHelperActive) {
setTimeout(function () {
_this.fetchCalendar(
calendarID,
fetchInterval,
maximumEntries,
pastDaysCount,
identifier
);
}, fetchInterval);
}
},
broadcastEvents: function (events, identifier, calendarID) {
this.sendSocketNotification("CALENDAR_EVENTS", {
id: identifier,
calendarID,
events: events
});
}
});