-
Notifications
You must be signed in to change notification settings - Fork 138
/
run.js
124 lines (105 loc) · 4.25 KB
/
run.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
/* jshint node: true */
"use strict";
var carelink = require('./carelink'),
filter = require('./filter'),
logger = require('./logger'),
nightscout = require('./nightscout'),
transform = require('./transform');
function readEnv(key, defaultVal) {
var val = process.env[key] ||
process.env[key.toLowerCase()] ||
// Azure prefixes environment variables with this
process.env['CUSTOMCONNSTR_' + key] ||
process.env['CUSTOMCONNSTR_' + key.toLowerCase()];
if (val === 'true') val = true;
if (val === 'false') val = false;
if (val === 'null') val = null;
return val !== undefined ? val : defaultVal;
}
var config = {
username: readEnv('CARELINK_USERNAME'),
password: readEnv('CARELINK_PASSWORD'),
nsHost: readEnv('WEBSITE_HOSTNAME'),
nsBaseUrl: readEnv('NS'),
nsSecret: readEnv('API_SECRET'),
interval: parseInt(readEnv('CARELINK_REQUEST_INTERVAL', 60 * 1000), 10),
sgvLimit: parseInt(readEnv('CARELINK_SGV_LIMIT', 24), 10),
maxRetryDuration: parseInt(readEnv('CARELINK_MAX_RETRY_DURATION', carelink.defaultMaxRetryDuration), 10),
verbose: !readEnv('CARELINK_QUIET', true),
deviceInterval: 5.1 * 60 * 1000,
patientId: readEnv('CARELINK_PATIENT'),
};
if (!config.username) {
throw new Error('Missing CareLink username');
} else if(!config.password) {
throw new Error('Missing CareLink password');
}
var client = carelink.Client({
username: config.username,
password: config.password,
maxRetryDuration: config.maxRetryDuration,
patientId: config.patientId
});
var entriesUrl = (config.nsBaseUrl ? config.nsBaseUrl : 'https://' + config.nsHost) + '/api/v1/entries.json';
var devicestatusUrl = (config.nsBaseUrl ? config.nsBaseUrl : 'https://' + config.nsHost) + '/api/v1/devicestatus.json';
logger.setVerbose(config.verbose);
var filterSgvs = filter.makeRecencyFilter(function(item) {
return item['date'];
});
var filterDeviceStatus = filter.makeRecencyFilter(function(item) {
return new Date(item['created_at']).getTime();
});
function uploadMaybe(items, endpoint, callback) {
if (items.length === 0) {
logger.log('No new items for ' + endpoint);
callback();
} else {
nightscout.upload(items, endpoint, config.nsSecret, function(err, response) {
if (err) {
// Continue gathering data from CareLink even if Nightscout can't be reached
console.log(err);
}
callback();
});
}
}
function requestLoop() {
try {
client.fetch(function(err, data) {
if (err) {
console.log(err);
setTimeout(requestLoop, config.deviceInterval);
} else {
let transformed = transform(data, config.sgvLimit);
// Because of Nightscout's upsert semantics and the fact that CareLink provides trend
// data only for the most recent sgv, we need to filter out sgvs we've already sent.
// Otherwise we'll overwrite existing sgv entries and remove their trend data.
let newSgvs = filterSgvs(transformed.entries);
// Nightscout's entries collection upserts based on date, but the devicestatus collection
// does not do the same for created_at, so we need to de-dupe them here.
let newDeviceStatuses = filterDeviceStatus(transformed.devicestatus);
// Calculate interval by the device next upload time
let interval = config.deviceInterval - (data.currentServerTime - data.lastMedicalDeviceDataUpdateServerTime);
if (interval > config.deviceInterval || interval < 0)
interval = config.deviceInterval;
logger.log(`Next check ${Math.round(interval / 1000)}s later (at ${new Date(Date.now() + interval)})`)
uploadMaybe(newSgvs, entriesUrl, function() {
uploadMaybe(newDeviceStatuses, devicestatusUrl, function() {
setTimeout(requestLoop, interval);
});
});
}
});
} catch (error) {
console.error(error);
setTimeout(requestLoop, config.deviceInterval);
}
}
function getRandomInt(max) {
return Math.floor(Math.random() * Math.floor(max));
}
// Safety function to avoid ban for managed environments (it only happens once, on the start)
let waitTime = 0;
if (process.env.RANDOMIZE_INIT) { waitTime = getRandomInt(3 * 60 * 1000); }
console.log(`[MMConnect] Wait ${Math.round(waitTime / 1000)} seconds before start`);
setTimeout(requestLoop, waitTime);