-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.js
452 lines (423 loc) · 13.6 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
450
451
452
/* yunmai-data-extract
Copyright Conor O'Neill 2017 (conor@conoroneill.com)
LICENSE: MIT
OAuth portions Copyright Google
This simple Node.js app downloads your weight data saved by a Yunmai weighing scales from their Cloud API and saves it to CSV, LevelDB and Google Sheets.
*/
const { google } = require("googleapis");
const express = require("express");
const opn = require("open");
const path = require("path");
const fs = require("fs");
const { GoogleAuth } = require("google-auth-library");
const { Level } = require("level");
const { EntryStream } = require("level-read-stream");
const request = require("request-promise");
require("toml-require");
require("./conf.toml");
var db = new Level("yunmai_weights.db", {
valueEncoding: "json",
});
var wstream = fs.createWriteStream("yunmai_weights.csv");
// Convince Excel to read CSV correctly
wstream.write("sep=,\n");
wstream.write(
"createTime, weight, bmi, bmr, bone, fat, skeletalMuscle, protein, resistance, somaAge, visFat, water\n"
);
// If any problems connecting to GSheets, delete ~/.credentials/yunmai-data-extract-gsheets.json
var TOKEN_DIR =
(process.env.HOME || process.env.HOMEPATH || process.env.USERPROFILE) +
"/.credentials/";
var TOKEN_PATH = TOKEN_DIR + "yunmai-data-extract-gsheets.json";
if (useGSheets === true) {
const keyfile = "client_secret.json";
const keys = JSON.parse(fs.readFileSync(keyfile));
const scopes = ["https://www.googleapis.com/auth/spreadsheets"];
// Create an oAuth2 client to authorize the API call
const client = new google.auth.OAuth2(
keys.web.client_id,
keys.web.client_secret,
keys.web.redirect_uris[0]
);
// Generate the url that will be used for authorization
authorizeUrl = client.generateAuthUrl({
access_type: "offline",
scope: scopes
});
const app = express();
const server = app.listen(10001, '127.0.0.1', () => {});
app.get("/", (req, res) => {
const code = req.query.code;
client.getToken(code, (err, tokens) => {
if (err) {
console.error("Error getting oAuth tokens:");
throw err;
}
client.credentials = tokens;
storeToken(tokens);
res.send("Authentication successful! Please return to the console.");
server.close();
writeWeightData(client);
});
});
// Check if we have previously stored a token.
fs.readFile(TOKEN_PATH, function(err, token) {
if (err) {
opn(authorizeUrl, { wait: false });
} else {
client.credentials = JSON.parse(token);
writeWeightData(client);
server.close();
}
});
} else {
writeWeightData();
}
function storeToken(tokens) {
try {
fs.mkdirSync(TOKEN_DIR);
} catch (err) {
if (err.code != "EEXIST") {
throw err;
}
}
fs.writeFile(TOKEN_PATH, JSON.stringify(tokens), function(err) {
if (err) throw err;
console.log("Token stored to " + TOKEN_PATH);
});
}
// Main function which does the work
function writeWeightData(auth) {
// With optional params:
// August 2019: http://intdata.iyunmai.com/api/android/scale/list.json?code='+code+'&%26startTime='+epochtime+'&lang='+lang+'&userId='+userId+'&versionCode=2&token='+token
// Code and Token definitely seem to be related. Token must be generated from the Code
// Some calls use a datestamp code e.g. 20170201 which seems to be reusable across other calls
// Note sure where the other codes come from
// Will also not be able to check expiry/renewal until it happens in real-life
var d = new Date();
d.setFullYear(2019, 9, 1);
d.setHours(0, 0, 0, 0);
var epochtime = d.getTime() / 1000;
var uri = `https://intdata.iyunmai.com/api/android/scale/list.json?code=${code}&%26startTime=${epochtime}&lang=2&versionCode=2&signVersion=3&userId=${userId}`
const options = {
method: "GET",
uri: uri,
json: true,
headers: {
'user-agent': 'yunmai_android',
'accept-encoding': 'gzip',
'accesstoken': token
}
};
request(options)
.then(function(response) {
if (response.result.code !== 0) {
throw `Unexpected response code ${response.result.code}, response: ${JSON.stringify(response.result)}`
}
// Request was successful, use the response object at will
console.dir(response, {
depth: null
});
for (var i = 0, len = response.data.rows.length; i < len; i++) {
// Save in LevelDB. Don't need to worry about repeated entries. Automatically handles incremental updates too
db.put(
response.data.rows[i].createTime,
response.data.rows[i],
function(err) {
if (err) return console.log("Error writing to LevelDB!", err); // some kind of I/O error
}
);
}
console.log("LevelDB updated");
if (useGSheets === true) {
var sheets = google.sheets("v4");
var requests = [];
var row = 0;
var column = 0;
// Set Column Headers
requests.push({
updateCells: {
start: {
sheetId: gSheetsTabId,
rowIndex: row,
columnIndex: column
},
rows: [
{
values: [
{
userEnteredValue: {
stringValue: "Date"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
},
{
userEnteredValue: {
stringValue: "Weight (KG)"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
},
{
userEnteredValue: {
stringValue: "BMI"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
},
{
userEnteredValue: {
stringValue: "BMR"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
},
{
userEnteredValue: {
stringValue: "Bone"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
},
{
userEnteredValue: {
stringValue: "Body Fat"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
},
{
userEnteredValue: {
stringValue: "skeletalMuscle"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
},
{
userEnteredValue: {
stringValue: "Protein"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
},
{
userEnteredValue: {
stringValue: "Resistance"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
},
{
userEnteredValue: {
stringValue: "Body Age"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
},
{
userEnteredValue: {
stringValue: "Visceral Fat"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
},
{
userEnteredValue: {
stringValue: "Water"
},
userEnteredFormat: {
textFormat: {
bold: true
}
}
}
]
}
],
fields: "userEnteredValue,userEnteredFormat.textFormat"
}
});
row++;
}
// read the whole LevelDB store as a stream and generate CSV and update GSheets
new EntryStream(db)
.on("data", function (data) {
// Save in CSV. Just overwriting entire file each time, so no need to worry about repeated entries
wstream.write(
data.value.createTime +
", " +
data.value.weight +
", " +
data.value.bmi +
", " +
data.value.bmr +
", " +
data.value.bone +
", " +
data.value.fat +
", " +
data.value.skeletalMuscle +
", " +
data.value.protein +
", " +
data.value.resistance +
", " +
data.value.somaAge +
", " +
data.value.visFat +
", " +
data.value.water +
"\n"
);
if (useGSheets === true) {
//Save in Google Sheets. Just overwriting entire set of columns each time, so no need to worry about repeated entries
//Shouldn't impact any extra columns that users add themselves
requests.push({
updateCells: {
start: {
sheetId: gSheetsTabId,
rowIndex: row,
columnIndex: column
},
rows: [
{
values: [
{
userEnteredValue: {
stringValue: data.value.createTime
},
userEnteredFormat: {
numberFormat: {
type: "DATE",
pattern: "dd/mm/yyyy hh:mm"
}
}
},
{
userEnteredValue: {
numberValue: data.value.weight
}
},
{
userEnteredValue: {
numberValue: data.value.bmi
}
},
{
userEnteredValue: {
numberValue: data.value.bmr
}
},
{
userEnteredValue: {
numberValue: data.value.bone
}
},
{
userEnteredValue: {
numberValue: data.value.fat
}
},
{
userEnteredValue: {
numberValue: data.value.skeletalMuscle
}
},
{
userEnteredValue: {
numberValue: data.value.protein
}
},
{
userEnteredValue: {
numberValue: data.value.resistance
}
},
{
userEnteredValue: {
numberValue: data.value.somaAge
}
},
{
userEnteredValue: {
numberValue: data.value.visFat
}
},
{
userEnteredValue: {
numberValue: data.value.water
}
}
]
}
],
fields: "userEnteredValue, userEnteredFormat.numberFormat"
}
});
row++;
}
})
.on("close", function() {
db.close();
wstream.end();
console.log("CSV updated");
var batchUpdateRequest = {
requests: requests
};
if (useGSheets === true) {
sheets.spreadsheets.batchUpdate(
{
auth: auth,
spreadsheetId: gSheetsId,
resource: batchUpdateRequest
},
function(err, response) {
if (err) {
// Handle error
console.log(err);
}
console.log("Google Sheets updated");
}
);
}
});
})
.catch(function(err) {
// Something bad happened, handle the error
console.dir(err);
});
}