This repository has been archived by the owner on Nov 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
449 lines (363 loc) · 12.2 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
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
var FileCookieStore = require('tough-cookie-filestore');
var request = require('request');
var _ = require('underscore');
var uuid = require('node-uuid');
var fs = require('fs');
var random_useragent = require('random-useragent');
var phone = require('phone');
var debug = require('debug')('icloud:log');
var debugM = require('debug')('icloud:methods');
var ICloud = function (username, password, options) {
debugM("-> new ICloud()");
this.options = _.extendOwn({
credentialsFile: __dirname + '/.credentials.json',
cookieFile: __dirname + '/cookies.json',
timeZone: require('system-timezone')() || 'US/Eastern',
appName: "iCloud Find (Web)",
appVersion: "2.0",
apiVersion: "3.0",
timeout: 3571,
userAgent: random_useragent.getRandom(),
requestOptions: {
headers: {
"Origin": "https://www.icloud.com"
}
},
}, options);
var self = this;
if (username && password) {
this.username = username;
this.password = password;
} else if (this.options.credentialsFile) {
try {
fs.lstatSync(self.options.credentialsFile);
debug("Found credentials file!", self.options.credentialsFile);
var credentials = require(self.options.credentialsFile) || {};
self.username = credentials.username;
self.password = credentials.password;
console.log(credentials);
} catch (e) {
console.error(e);
}
}
if (!this.username || !this.password) throw new Error("Must have username & password!");
var stats = false;
try {
stats = fs.lstatSync(this.options.cookieFile);
debug("Found existing cookies file", {filename: this.options.cookieFile});
} catch (e) {
fs.closeSync(fs.openSync(this.options.cookieFile, 'a'));
debug("Created new cookies file", {filename: this.options.cookieFile});
}
if (!this.options.hasOwnProperty("cookieJar") && this.options.cookieFile) {
this.options.cookieJar = request.jar(new FileCookieStore(this.options.cookieFile));
}
this.r = request.defaults(_.extendOwn({
jar: this.options.cookieJar,
userAgent: this.options.userAgent
}, this.options.requestOptions));
this.devices = [];
};
ICloud.prototype._login = function (callback) {
debugM("-> login");
debug("Logging in to iCloud", {username: this.username});
// References to this can get messed up, so keep a copy of it
var self = this;
var options = {
method: "POST",
url: "https://setup.icloud.com/setup/ws/1/login",
json: {
"apple_id": self.username,
"password": self.password,
"extended_login": true
}
};
self.r(options, function (err, response, body) {
if (err) {
debug("Error processing HTTP request", err);
if (_.isFunction(callback)) return callback(err);
}
if (!response || response.statusCode != 200) {
debug("Error Logging In", body);
return callback("Unable to login: HTTP:"+response.statusCode,null);
} else {
debug("Successfully Logged In!");
self.reslogin = response;
callback(null, response);
}
});
};
/**
*
* @param roption - HTTP request information passed to CloudRequest
* @param webservicename - the Apple iCloud web services supported feature
* @param callback
* @private
*/
ICloud.prototype._icloudrequest = function (roption, webservicename, callback) {
debugM("-> " + webservicename);
debug("Logging in to iCloud", {username: this.username});
// References to this can get messed up, so keep a copy of it
var self = this;
// Process Request
var processCloudRequest = function () {
var basepath;
var options;
if (self.reslogin.body.hasOwnProperty("webservices") && self.reslogin.body.webservices.hasOwnProperty(webservicename)) {
basepath = self.reslogin.body.webservices[webservicename].url;
options = roption;
// Adjust url to include base path and tack on common params
options.url = basepath + options.url;
options.qs = {
usertz: self.options.timeZone,
lang: "en-us", // TODO figure out how to make this env or request specific
dsid: self.reslogin.body.dsInfo.dsid
};
debug("Initializing Client", options.json);
self.r(options, function (err, response, body) {
if (err) {
debug("Failed to Initialize Client", err);
if (_.isFunction(callback)) {
return callback(err);
}
}
debug("Successfully Initialized Client");
if (body) {
debug("Discovered " + body.length + " response on iCloud Account");
} else {
debug("Could not find any response data on iCloud Account. Invalid body string", body);
}
if (_.isFunction(callback)) return callback(null, response);
});
}
}
// Has the iCloud instance been initialized and been populated w/ data?
if (!self.reslogin) {
// If not, login first, then process request.
self._login(function (err, msg) {
if (err) {
return callback(err);
} else {
return processCloudRequest() ;
}
});
} else {
// logged in already, just process request
return processCloudRequest();
}
}
ICloud.prototype.addReminder = function (reminder, callback) {
debugM("-> addReminders()");
var self = this;
// Initialize the template for a reminder.
var rguid = uuid.v4().toUpperCase();
var collections = _.map(self.resreminders.Collections, function (collection) {
return {guid: collection.guid, ctag: collection.ctag};
});
reminder = _.extendOwn(
{
"title": "dummy title" + rguid,
"description": null,
"pGuid": null,
"etag": null,
"order": null,
"priority": 0,
"recurrence": null,
"alarms": [],
"createdDateExtended": new Date().valueOf(), // use the current date/time
"guid": rguid,
"startDate": null,
"startDateTz": null,
"startDateIsAllDay": false,
"completedDate": null,
"dueDate": null,
"dueDateIsAllDay": false,
"lastModifiedDate": null,
"createdDate": null,
"isFamily": null
},reminder);
// url is relative to base (will be prepended during the request (which does the actual startup/login)
var options = {
method: "POST",
url: "/rd/reminders/" + reminder.pGuid,
json: {
"Reminders": reminder,
"ClientState": {
"Collections": collections
}
}
};
self._icloudrequest(options, "reminders", function (err, response) {
if (err) {
debug("Failed to Initialize Client", err);
if (_.isFunction(callback)) return callback(err);
}
if (response.body) {
debug("Successfully Initialized Client");
self.ChangeSetupdates = response.body.ChangeSet.updates;
} else {
debug("Could not find Reminders on iCloud Account. Invalid body string", body);
}
if (_.isFunction(callback)) return callback(null, response.body.ChangeSet.updates);
});
};
ICloud.prototype.getReminders = function (collectionname, callback) {
var self = this;
// Structure request
//TODO verify if ClientContext is needed
var options = {
method: "GET",
url: "/rd/startup",
json: {
"clientContext": {
"appName": self.options.appName,
"appVersion": self.options.appVersion,
"timezone": self.options.timeZone,
"inactiveTime": self.options.timeout,
"apiVersion": self.options.apiVersion,
"fmly": true
}
}
};
self._icloudrequest(options, "reminders", function (err, response) {
var matchedreminders = [];
if (err) {
return callback(err, null);
}
// Ok... good request, process response.
self.resreminders = response.body;
if (response.body) {
var collectionpGuid = _.where(self.resreminders.Collections, {title: collectionname});
matchedreminders = _.where(self.resreminders.Reminders, {pGuid: collectionpGuid[0].guid});
debug("Discovered " + self.resreminders.Reminders.length + " Reminders on iCloud Account");
return callback(null, matchedreminders);
}
});
}
ICloud.prototype.getDevices = function (callback) {
debugM("-> getDevices()");
var self = this;
var self = this;
// Structure request
//TODO verify if ClientContext is needed
var options = {
method: "POST",
url: "/fmipservice/client/web/initClient",
json: {
"clientContext": {
"appName": self.options.appName,
"appVersion": self.options.appVersion,
"timezone": self.options.timeZone,
"inactiveTime": self.options.timeout,
"apiVersion": self.options.apiVersion,
"fmly": true
}
}
};
self._icloudrequest(options, "findme", function (err, response) {
var matchedreminders = [];
if (err) {
return callback(err, null);
}
// Ok... good request, process response.
if (response.body) {
self.resfindme = response.body;
debug("Discovered " + self.resfindme.content.length + " Devices on iCloud Account");
return callback(null, response.body.content);
}
});
};
ICloud.prototype.silentLostDevice = function (deviceId, emailUpdates, callback) {
debugM("-> silentLostDevice(\"" + deviceId + "\", \"" + emailUpdates + "\")");
return this.lostDevice(deviceId, null, null, emailUpdates, callback);
};
ICloud.prototype.lostDevice = function (deviceId, callNumber, text, emailUpdates, callback) {
debugM("-> lostDevice(\"" + deviceId + "\", \"" + callNumber + "\", \"" + text + "\", \"" + emailUpdates + "\")");
var self = this;
var options = {
method: "POST",
url: "/fmipservice/client/web/lostDevice",
json: {
"emailUpdates": emailUpdates || false,
"lostModeEnabled": true,
"trackingEnabled": true,
"device": deviceId
}
};
if (callNumber) {
var phoneNumber = phone(callNumber);
if (phoneNumber.length === 0) {
return callback("Invalid Phone Number!");
}
options.json.ownerNbr = phoneNumber[0];
}
if (text) {
options.json.userText = true;
options.json.text = text;
} else {
options.json.userText = false;
}
self._icloudrequest(options, "findme", function (err, response) {
if (err) {
debug("Failed to Initialize Client", err);
if (_.isFunction(callback)) return callback(err);
}
if (response.body) {
debug("Successfully Initialized Client");
self.resfindmelocked = response.body.content[0];
} else {
debug("Could not find device on iCloud Account. Invalid body string", response.body.content[0]);
}
if (_.isFunction(callback)) return callback(null, response.body.content[0]);
});
};
ICloud.prototype.alertDevice = function (deviceId, subject, callback) {
debugM("-> playSound(\"" + deviceId + "\", \"" + subject + "\")");
var self = this;
var options = {
method: "POST",
url: "/fmipservice/client/web/playSound",
json: {
"subject": subject || "Find My iPhone Alert",
"device": deviceId,
"clientContext": {
"appName": self.options.appName,
"appVersion": self.options.appVersion,
"timezone": self.options.timeZone,
"inactiveTime": self.options.timeout,
"apiVersion": self.options.apiVersion,
"fmly": true
}
}
};
self._icloudrequest(options, "findme", function (err, response) {
var matchedreminders = [];
if (err) {
return callback(err, null);
}
// Ok... good request, process response.
if (response.body) {
self.resfindme = response.body;
debug("Discovered " + self.resfindme.content.length + " Devices on iCloud Account");
return callback(null, response.body.content);
}
});
};
ICloud.prototype.eraseDevice = function (deviceId, callback) {
debugM("-> eraseDevice(\"" + deviceId + "\")");
debug("FUNCTION NOT IMPLEMENTED.... Want to implement it and send me a PR? :-)");
};
ICloud.prototype.logout = function (callback) {
var stats = false;
try {
stats = fs.lstatSync(this.options.cookieFile);
fs.unlinkSync(this.options.cookieFile);
} catch (e) {
fs.closeSync(fs.openSync(this.options.cookieFile, 'a'));
debug("Created new cookies file", {filename: this.options.cookieFile});
}
if (!this.options.hasOwnProperty("cookieJar") && this.options.cookieFile) {
this.options.cookieJar = request.jar(new FileCookieStore(this.options.cookieFile));
}
};
module.exports = ICloud;