-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
351 lines (301 loc) · 10.3 KB
/
main.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
"use strict";
/*
* Created with @iobroker/create-adapter v2.0.2
*/
// The adapter-core module gives you access to the core ioBroker functions
// you need to create an adapter
const utils = require("@iobroker/adapter-core");
const axios = require("axios").default;
const axiosTimeout = 8000;
const BASE_URL = "https://api.fitbit.com/1/user/";
const BASE2_URL = "https://api.fitbit.com/1.2/user/";
// Load your modules here, e.g.:
class Fitbit extends utils.Adapter {
/**
* @param {Partial<utils.AdapterOptions>} [options={}]
*/
constructor(options) {
super({
...options,
name: "fitbit",
});
this.on("ready", this.onReady.bind(this));
this.on("stateChange", this.onStateChange.bind(this));
// this.on("objectChange", this.onObjectChange.bind(this));
// this.on("message", this.onMessage.bind(this));
this.on("unload", this.onUnload.bind(this));
this.updateInterval = null;
this.fitbit = {};
this.fitbit.sleepRecordsStoredate = null;
}
/**
* Is called when databases are connected and adapter received configuration.
*/
async onReady() {
// Initialize your adapter here
// Get system configuration
// const sysConf = await this.getForeignObjectAsync("system.config");
// The adapters config (in the instance object everything under the attribute "native") is accessible via
// this.config:
this.setState("info.connection", false, true);
this.login().
then(() => {
if (this.fitbit.status === 200) {
this.setState("info.connection", true, true);
this.getFitbitRecords(); // get data one time
this.updateInterval = setInterval(() => {
this.getFitbitRecords();
}, this.config.refresh * 1000 * 60); // in seconds
} else {
this.setState("info.connection", false, true);
this.log.warn(`FITBit login failed ${this.fitbit.status}`);
}
})
.catch((error) => {
this.log.error(`Adapter Connection Error: ${error} `);
});
}
async getFitbitRecords() {
this.log.info(`Getting data for user ${this.fitbit.user.fullName}`);
//const actualDate = new Date().getDate();
if (this.config.activityrecords) {
await this.getActivityRecords();
}
if (this.config.bodyrecords) {
await this.getBodyRecords();
}
if (this.config.foodrecords) {
await this.getFoodRecords();
}
if (this.config.sleeprecords) {
await this.getSleepRecords();
}
}
async login() {
const url = "https://api.fitbit.com/1/user/-/profile.json";
const token = this.config.token;
try {
const response = await axios.get(url,
{
headers: { "Authorization": `Bearer ${token}` },
timeout: axiosTimeout
});
this.fitbit.status = response.status;
if (this.fitbit.status === 200) {
this.setState("info.connection", true, true);
this.log.info(`Logged in Status: ${response.status}`);
this.setUserStates(response.data);
}
}
catch (err) {
throw new Error(err);
}
}
setUserStates(data) {
this.fitbit.user = data.user; // Use instance object for data
this.log.info(`User logged in ${this.fitbit.user.fullName}`);
this.setState("user.fullName", this.fitbit.user.fullName, true);
}
async getActivityRecords() {
const url = `${BASE_URL}-/activities/date/${this.getDate()}.json`;
try {
const response = await axios.get(url,
{
headers: { "Authorization": `Bearer ${this.config.token}` },
timeout: axiosTimeout
});
this.log.info(`Status: ${response.status}`);
if (response.status === 200) {
this.setActivityStates(response.data);
}
}
catch (err) {
this.log.warn(`${err}`);
}
}
setActivityStates(data) {
if (data.summary) {
this.fitbit.activities = data; // First record in the array
this.log.info(`Activity Records retrieved Steps:${this.fitbit.activities.summary.steps} Calories:${this.fitbit.activities.summary.caloriesOut}`);
this.setState("activity.Steps", this.fitbit.activities.summary.steps, true);
this.setState("activity.Calories", this.fitbit.activities.summary.caloriesOut, true);
this.setState("activity.ActivitiesCount", this.fitbit.activities.activities.length, true);
} else {
throw new Error("FITBit: No Activity records available");
}
}
async getBodyRecords() {
//const url = "https://api.fitbit.com/1/user/-/body/log/fat/date/2022-02-01.json";
const url = `${BASE_URL}-/body/log/weight/date/${this.getDate()}.json`;
//const token = "eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiIyMjdHNUwiLCJzdWIiOiI4OTVXWEQiLCJpc3MiOiJGaXRiaXQiLCJ0eXAiOiJhY2Nlc3NfdG9rZW4iLCJzY29wZXMiOiJ3aHIgd251dCB3cHJvIHdzbGUgd3dlaSB3c29jIHdzZXQgd2FjdCB3bG9jIiwiZXhwIjoxNjQzODk0MTIwLCJpYXQiOjE2NDM4MDc3MjB9.wh7-CEc9Ysdj5CM5Tecs6AwqhWuzaaZ-s2ZMlTPpwIk";
const token = this.config.token;
try {
const response = await axios.get(url,
{
headers: { "Authorization": `Bearer ${token}` },
timeout: axiosTimeout
});
//this.log.info(`Status: ${response.status}`);
if (response.status === 200) {
this.setBodyStates(response.data);
}
}
catch (err) {
this.log.warn(`${err}`);
}
}
setBodyStates(data) {
if (data.weight.length > 0) {
this.fitbit.body = data.weight[0]; // First record in the array
this.log.info(`Body records retrieved Weight:${this.fitbit.body.weight} Fat:${this.fitbit.body.fat} BMI:${this.fitbit.body.bmi}`);
this.setState("body.weight", this.fitbit.body.weight, true);
this.setState("body.fat", this.fitbit.body.fat, true);
this.setState("body.bmi", this.fitbit.body.bmi, true);
}
else {
throw new Error("FITBit: No Weight records available");
}
}
async getFoodRecords() {
//const url = "https://api.fitbit.com/1/user/-/foods/log/date/2022-02-01.json";
const url = `${BASE_URL}-/foods/log/date/${this.getDate()}.json`;
try {
const response = await axios.get(url,
{
headers: { "Authorization": `Bearer ${this.config.token}` },
timeout: axiosTimeout
});
if (response.status === 200) {
this.setFoodStates(response.data);
}
}
catch (err) {
this.log.warn(`${err}`);
}
}
setFoodStates(data) {
if (data.foods.length > 0) {
this.fitbit.food = data.summary; // First record in the array
this.log.info(`Food records retrieved Cal:${this.fitbit.food.calories} Water:${this.fitbit.food.water} FAT:${this.fitbit.food.fat} Protein:${this.fitbit.food.protein}`);
this.setState("food.Water", this.fitbit.food.water, true);
this.setState("food.Calories", this.fitbit.food.calories, true);
this.setState("food.Fat", this.fitbit.food.fat, true);
this.setState("food.Protein", this.fitbit.food.protein, true);
} else {
throw new Error("FITBit: No Food records available");
}
}
async getSleepRecords() {
//const url = "https://api.fitbit.com/1.2/user/-/sleep/date/2022-02-01.json";
const url = `${BASE2_URL}-/sleep/date/${this.getDate()}.json`;
try {
const response = await axios.get(url,
{
headers: { "Authorization": `Bearer ${this.config.token}` },
timeout: axiosTimeout
});
//this.log.info(`Food Status: ${response.status}`);
if (response.status === 200) {
this.setSleepStates(response.data);
}
}
catch (err) {
this.log.warn(`${err}`);
}
}
setSleepStates(data) {
if (data.sleep.length > 0) {
this.fitbit.sleep = data.summary.stages; // First record in the array
this.log.info(`Sleep records retrieved Deep:${this.fitbit.sleep.deep} light:${this.fitbit.sleep.light} rem:${this.fitbit.sleep.rem} wake:${this.fitbit.sleep.wake}`);
this.setState("sleep.Deep", this.fitbit.sleep.deep, true);
this.setState("sleep.Light", this.fitbit.sleep.light, true);
this.setState("sleep.Rem", this.fitbit.sleep.rem, true);
this.setState("sleep.Wake", this.fitbit.sleep.wake, true);
} else {
throw new Error("FITBit: No Sleep Data found");
}
}
getDate() {
const today = new Date();
const dd = today.getDate();
const mm = today.getMonth() + 1;
const year = today.getFullYear();
return `${year}-${mm.toString(10).padStart(2, "0")}-${dd.toString(10).padStart(2, "0")}`;
}
/**
* Is called when adapter shuts down - callback has to be called under any circumstances!
* @param {() => void} callback
*/
onUnload(callback) {
try {
// Here you must clear all timeouts or intervals that may still be active
// clearTimeout(timeout1);
// clearTimeout(timeout2);
// ...
// clearInterval(interval1);
if (this.updateInterval) {
clearInterval(this.updateInterval);
this.updateInterval = null;
}
callback();
} catch (e) {
callback();
}
}
// If you need to react to object changes, uncomment the following block and the corresponding line in the constructor.
// You also need to subscribe to the objects with `this.subscribeObjects`, similar to `this.subscribeStates`.
// /**
// * Is called if a subscribed object changes
// * @param {string} id
// * @param {ioBroker.Object | null | undefined} obj
// */
// onObjectChange(id, obj) {
// if (obj) {
// // The object was changed
// this.log.info(`object ${id} changed: ${JSON.stringify(obj)}`);
// } else {
// // The object was deleted
// this.log.info(`object ${id} deleted`);
// }
// }
/**
* Is called if a subscribed state changes
* @param {string} id
* @param {ioBroker.State | null | undefined} state
*/
onStateChange(id, state) {
if (state) {
// The state was changed
this.log.info(`state ${id} changed: ${state.val} (ack = ${state.ack})`);
} else {
// The state was deleted
this.log.info(`state ${id} deleted`);
}
}
// If you need to accept messages in your adapter, uncomment the following block and the corresponding line in the constructor.
// /**
// * Some message was sent to this instance over message box. Used by email, pushover, text2speech, ...
// * Using this method requires "common.messagebox" property to be set to true in io-package.json
// * @param {ioBroker.Message} obj
// */
// onMessage(obj) {
// if (typeof obj === "object" && obj.message) {
// if (obj.command === "send") {
// // e.g. send email or pushover or whatever
// this.log.info("send command");
// // Send response in callback if required
// if (obj.callback) this.sendTo(obj.from, obj.command, "Message received", obj.callback);
// }
// }
// }
}
if (require.main !== module) {
// Export the constructor in compact mode
/**
* @param {Partial<utils.AdapterOptions>} [options={}]
*/
module.exports = (options) => new Fitbit(options);
} else {
// otherwise start the instance directly
new Fitbit();
}