-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfreeboxapi.js
393 lines (357 loc) · 11.3 KB
/
freeboxapi.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
/**
* Created by taillan2 on 24/06/2016.
*/
var reqjson = require('request-json');
var ptn = require('parse-torrent-name');
var imdb = require('imdb-api');
var omdb = require('omdb');
var CryptoJS = require("crypto-js");
var fs = require("fs");
var _ = require("underscore");
var Freeboxapi = function(ip) {
var version = "";
var mirrorName = "";
var apsMap = new Map();
var nameSize = 10;
var apsWithDevices = new Map();
var self = this;
var config = {
track_id: "",
app_token: "",
appId: "",
challenge: "",
session_token: ""
};
this.configure = function(data){
ip = data.ip;
mirrorName = data.mirrorName;
};
this.readFreeboxVersion = function(){
var client = reqjson.createClient(ip);
client.get('/api_version', callbackVersion);
}
var callbackVersion = function(error, response, body){
if (!error) {
var info = JSON.parse(JSON.stringify(body));
config.version = info.api_version.split('.')[0];
console.debug('API Version is: '+config.version);
self.authorize("fr.freebox",'MM Freebox Monitor',"1.0.2",mirrorName);
}
else {
console.error('VERSION - Error happened: ' + error);
}
}
var callbackSystemInfo = function(error, response, body){
if (!error) {
var info = JSON.parse(JSON.stringify(body));
console.debug(info);
if (info.success === true){
msg = {
value: info.result,
type: "systemInfo"
};
fetchCallback(self, msg);
}else{
config.challenge = info.result.challenge;
openSession(callbackOpenSession);
}
}
else {
console.error('System Info - Error happened: ' + error);
}
}
var authCallback = function(error, response, body){
if (!error) {
var info = JSON.parse(JSON.stringify(body));
console.debug(info);
config.app_token = info.result.app_token;
config.track_id = info.result.track_id;
checkAuthorize(config.track_id, callbackCheckAuthorize);
}
else {
console.error('Error happened: ' + error);
}
};
var connectionStatusCallback = function(error, response, body){
if (!error) {
var info = JSON.parse(JSON.stringify(body));
console.debug(info);
if (info.success === true){
msg = {
value: info.result,
type: "connectionStatus"
};
fetchCallback(self, msg);
}else{
console.info(info.result);
config.challenge = info.result.challenge;
openSession(callbackOpenSession);
}
}
else {
console.error('Error happened: ' + error);
}
};
var callbackCalls = function(error, response, body){
if (!error) {
var info = JSON.parse(JSON.stringify(body));
if (info.success === true){
var info = JSON.parse(JSON.stringify(body));
var calls = info.result;
var today = new Date();
var start = new Date();
start.setDate(start.getDate() - 10);
start.setHours(0,0,0,0);
start = start.getTime()/1000;
var end = new Date();
end.setDate(end.getDate() - 30);
end.setHours(23,59,59,00);
end = end.getTime()/1000;
var filtered = _.where(calls, {type: "missed"});
value = "";
if ( filtered.length > 1){
value = filtered.length + " missed calls";
}else
value = filtered.length + " missed call";
msg = {
value: filtered,
type: "calls"
};
fetchCallback(self, msg);
}else{
config.challenge = info.result.challenge;
openSession(callbackOpenSession);
}
}
else {
console.error('Error happened: ' + error);
}
};
var callbackDownloads = function(error, response, body){
if (!error) {
var info = JSON.parse(JSON.stringify(body));
console.debug(info);
var downloads = info.result;
var done = _.where(downloads, {status: "done"});
var seeding = _.where(downloads, {status: "seeding"});
var downloading = _.where(downloads, {status: "downloading"});
done.forEach( function( item ) {
var mov = ptn(item.name);
item.name = trunckName(mov.title, nameSize);
});
seeding.forEach( function( item ) {
var mov = ptn(item.name);
item.name = trunckName(mov.title, nameSize);
});
downloading.forEach( function( item ) {
var mov = ptn(item.name);
item.name = trunckName(mov.title, nameSize);
});
files = {
done: done,
seeding: seeding,
downloading: downloading
};
msg = {
value: files,
type: "downloads"
};
fetchCallback(self, msg);
}
else {
console.error('Error happened: ' + error);
}
};
var trunckName = function (name, maxSize) {
if (name.length > maxSize) {
return name.slice(0, maxSize) + "...";
} else {
return name;
}
}
var callbackCheckAuthorize = function(error, response, body){
if (!error) {
var info = JSON.parse(JSON.stringify(body));
if (info.success === false){
error = info.msg;
fetchFailedCallback(self, error);
}else if (info.result.status =='pending'){
setTimeout( function(){checkAuthorize(config.track_id, callbackCheckAuthorize)}, 5000);
}else if (info.result.status =='granted'){
getChallenge(callbackGetChallenge);
}else{
error = "Timeout";
fetchFailedCallback(self, error);
}
}
else {
console.error('Error happened: ' + error);
}
};
var callbackGetChallenge = function(error, response, body){
if (!error) {
var info = JSON.parse(JSON.stringify(body));
console.debug("CallbackGetChallenge -> "+ info);
if (info.success == true){
config.challenge = info.result.challenge;
setTimeout( function(){openSession(callbackOpenSession)}, 2000);
}
}
else {
console.error('Error happened: ' + error);
}
};
var apListCallback = function(error, response, body){
if (!error) {
var info = JSON.parse(JSON.stringify(body));
console.debug(info);
var apList = info.result;
for(var i = 0; i < apList.length; i++)
{
apsMap.set(apList[i].id, apList[i]);
apsMap.get(apList[i].id).status = "unknow";
}
apsWithDevices = new Map();
apsMap.forEach(function(ap,ap_id, ) {
console.debug("Retrieving connected devices for ap "+ap_id+ " "+ ap.name);
getApDevices(ap_id);
});
}
else {
console.error('Error happened: ' + error);
}
};
var getApDevices = function(ap_id){
var client = reqjson.createClient(ip);
client.headers['X-Fbx-App-Auth'] = config.session_token;
//retrieve ap list
client.get('/api/v'+config.version+'/wifi/ap/'+ap_id+'/stations', (error, response, body) => {
if (!error) {
var info = JSON.parse(JSON.stringify(body));
console.debug(info);
var devicesMap = info.result;
if (devicesMap) {
apsWithDevices.set(apsMap.get(ap_id).name, devicesMap.length);
apsMap.get(ap_id).number = devicesMap.length;
console.debug( devicesMap.length +" devices connected on ap "+apsMap.get(ap_id).name);
}
apsMap.get(ap_id).status = "done";
var send = true;
apsMap.forEach(function(ap,id, ) {
console.log("Checking status for "+id+" "+ap.status);
if ( ap.status === "unknow"){
send = false;
}
});
if ( send === true) {
//var devices = _.where(downloads, {status: "done"});
msg = {
value: JSON.stringify(Object.fromEntries(apsWithDevices))
,
type: "connectedDevices"
};
console.debug(msg );
fetchCallback(self, msg);
}
}
else {
console.error('Error happened: ' + error);
}
});
};
var callbackOpenSession = function(error, response, body){
if (!error) {
var info = JSON.parse(JSON.stringify(body));
console.debug(info);
if (info.success == true){
config.session_token = info.result.session_token;
var outputFilename = 'freebox.txt';
fs.writeFile(outputFilename, JSON.stringify(config, null, 4), function(err) {
if(err) {
console.error(err);
} else {
msg = {
value: "Connected",
type: "connection"
};
fetchCallback(self, msg);
}
});
}
}
else {
console.error('Error happened: ' + error);
}
};
this.authorize = function( app_id ,app_name, app_version, device_name){
config.appId = app_id
var data = {
app_id: app_id,
app_name: app_name,
app_version: app_version,
device_name: device_name
};
var client = reqjson.createClient(ip);
try {
fs.accessSync("freebox.txt", fs.F_OK);
config = JSON.parse(fs.readFileSync('freebox.txt', 'utf8'));
console.debug(config);
getChallenge(callbackGetChallenge);
} catch (e) {
// It isn't accessible
client.post('/api/v'+config.version+'/login/authorize/', data, authCallback);
}
};
var checkAuthorize = function(track_id, callback){
var client = reqjson.createClient(ip);
client.get('/api/v'+config.version+'/login/authorize/'+config.track_id, callback);
};
var getChallenge = function(callback){
var client = reqjson.createClient(ip);
client.get('/api/v'+config.version+'/login/', callback);
};
var openSession = function(callback){
var client = reqjson.createClient(ip);
var message = config.challenge;
var passphrase = config.app_token;
var signature = CryptoJS.enc.Hex.stringify(CryptoJS.HmacSHA1( message, passphrase));
var data = {
app_id: config.appId,
password: signature
};
client.post('/api/v'+config.version+'/login/session/', data, callbackOpenSession);
};
this.getConnectedDevices = function(){
var client = reqjson.createClient(ip);
client.headers['X-Fbx-App-Auth'] = config.session_token;
//retrieve ap list
client.get('/api/v'+config.version+'/wifi/ap/', apListCallback );
};
this.getConnectionStatus = function(){
var client = reqjson.createClient(ip);
client.headers['X-Fbx-App-Auth'] = config.session_token;
client.get('/api/v'+config.version+'/connection/', connectionStatusCallback );
};
this.getCalls = function(){
var client = reqjson.createClient(ip);
client.headers['X-Fbx-App-Auth'] = config.session_token;
client.get('/api/v'+config.version+'/call/log/', callbackCalls);
};
this.getDownloads = function(){
var client = reqjson.createClient(ip);
client.headers['X-Fbx-App-Auth'] = config.session_token;
client.get('/api/v'+config.version+'/downloads/', callbackDownloads);
};
this.getSystemInfo = function(){
var client = reqjson.createClient(ip);
client.headers['X-Fbx-App-Auth'] = config.session_token;
client.get('/api/v'+config.version+'/system/', callbackSystemInfo);
};
this.onError = function(callback) {
fetchFailedCallback = callback;
};
this.onMsg = function(callback) {
fetchCallback = callback;
};
};
module.exports = Freeboxapi;