forked from mykle1/MMM-AfterShip
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnode_helper.js
219 lines (195 loc) · 6.86 KB
/
node_helper.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
/* Magic Mirror
* Module: MMM-PARCEL
*
* By MartinKooij
* adapted to use tracktry.com
*
*/
const NodeHelper = require('node_helper');
const apifetch = require('node-fetch') ;
const {Translate} = require('@google-cloud/translate').v2;
const fs = require('fs').promises;
const normalize_tr = require('./normalize-tracktry') ;
const normalize_as = require('./normalize-aftership') ;
//Global variables used by the helper
var updateInterval = 30 * 60 * 1000; // if sending the updateInterval fails set to 30 minutes
var updateLowerBound = 10 * 60 * 1000; //lower bound is normally 10 minutes. Only change during debugging
var translationErrcount = 0;
const transMap = new Map();
module.exports = NodeHelper.create({
start: function() {
console.log("Starting node_helper for: " + this.name);
transMap.set("","");
transMap.set(" ", " ");
},
translate: async function(data,lang) {
//sanitized parcel list expected in data parameter, shortcode language in target language.
var origstrings = [];
for (var i = 0; i < data.length; i++) {
const ll = data[i].last_loc ;
if ( ll ) {
origstrings.push(ll.info);
origstrings.push(ll.details);
}
}
var leftoverstrings = [] ;
origstrings.forEach(
(value) => { if (!transMap.get(value)) { leftoverstrings.push(value) ;}}
);
// console.log("[leftoverstrings =]", leftoverstrings) ;
if (leftoverstrings.length != 0 && this.config.useGoogleTranslate) {
const translateAPI = new Translate( {keyFilename : "modules/" + this.name + "/parceltranslate-credentials.json"} ) ;
try{
let [translation] = await translateAPI.translate(leftoverstrings,lang);
var translations = Array.isArray(translation)?translation:[translation] ;
if (this.config.debug) {
console.log('MMM-Parcel GOOGLE TRANSLATIONS:', leftoverstrings, translations)} ;
translations.forEach ( (v,i) => {
transMap.set(leftoverstrings[i],v);
});
} catch (err) {
console.log('PARCELTRANS ERROR No:', translationErrcount++, ", error: ", err);
}
};
for (var i = 0; i < data.length; i++) {
if ( data[i].last_loc ) {
var tr;
tr = transMap.get(data[i].last_loc.info) ;
data[i].last_loc.info = tr?tr:data[i].last_loc.info;
tr = transMap.get(data[i].last_loc.details) ;
data[i].last_loc.details = tr?tr:data[i].last_loc.details ;
}
}
return data ;
},
fetchShipments: async function() {
var parcelList = [] ;
if (this.config.apiKey || this.config.useTrackTry) {
var ttResult = await this.fetchTracktry(this.config.apiKey || this.config.useTrackTry);
parcelList = parcelList.concat(ttResult);
}
if (this.config.useAfterShip) {
var asResult = await this.fetchAfterShip(this.config.useAfterShip);
parcelList = parcelList.concat(asResult);
}
return parcelList;
},
fetchTracktry: async function(apiKey) {
var apiurl = 'https://api.tracktry.com/v1' + '/trackings' ;
var apiurlget = apiurl + '/get?page=1&limit=25';
// console.log('[DEBUG] In Fetch Tracktry Shipments') ;
try {
var body ;
if (!this.config.testRead) {
let result = await apifetch(apiurlget, {
headers: {
'Content-Type': 'application/json',
'Tracktry-Api-Key': apiKey
},
method: 'GET'
});
body = await result.json() ;
} else {
body = await this.testRead('modules/'+this.name+'/testparcels.json') ;
}
if (body.meta.code == 4031) { return [] ;};
if (body.meta.code != 200) { throw (body) };
if (this.config.debug) {
console.log('MMM-Parcel RECEIVED FROM TRACKTRY API', JSON.stringify(body,undefined,2))};
var resultL = normalize_tr(body.data.items) ;
if (this.config.autoTranslate) {
let result = await this.translate(resultL, this.config.autoTranslate);
return result ;
} else {
return resultL
}
} catch (err) {
console.log('[MMM-Parcelfetcherror]',Date(), err );
return [] ;
}
},
fetchAfterShip: async function(apiKey) {
var apiurlget = 'https://api.aftership.com/v4' + '/trackings' ;
// console.log('[DEBUG] In Fetch AfterShip Shipments') ;
try {
var body ;
if (!this.config.testRead) {
let result = await apifetch(apiurlget, {
headers: {
'Content-Type': 'application/json',
'aftership-api-key': apiKey
},
method: 'GET'
});
body = await result.json() ;
} else {
body = await this.testRead('modules/'+this.name+'/testparcels-aftership.json') ;
}
if (body.meta.code != 200) { throw (body) };
if (this.config.debug) {
console.log('MMM-Parcel RECEIVED FROM Aftership API', JSON.stringify(body,undefined,2))};
var resultL = normalize_as(body.data.trackings) ;
if (this.config.autoTranslate) {
let result = await this.translate(resultL, this.config.autoTranslate);
return result ;
} else {
return resultL
}
} catch (err) {
console.log('[MMM-Parcelfetcherror]',Date(), err );
return [] ;
}
},
broadcastShipments: function(payload) {
if (this.config.debug) {
console.log('BROADCAST shipments TO MMM-Parcel MODULE ', JSON.stringify(payload,undefined,2))};
this.sendSocketNotification('API_RESULT', payload);
},
addmanualtrans : async function() {
try {
var data = await fs.readFile('modules/'+this.name+'/manualtrans/' + this.config.autoTranslate + '.json', 'utf8');
var forceTrans = JSON.parse(data);
Object.keys(forceTrans).forEach(function(key) {
transMap.set(key,forceTrans[key]) ;});
console.log('Message ' + this.name + ': "manualtrans/' + this.config.autoTranslate + '.json" translation file is active');
} catch (error) {
console.log('Message ' + this.name + ': "manualtrans/' + this.config.autoTranslate + '.json" translation file could not be found/read. Skipped file entry and continued operations');
}
},
socketNotificationReceived: function(notification, payload) {
if (notification === 'CONFIG') {
this.config = payload;
} else if (notification === 'API_FETCHER') {
(async () => {
if (this.config.autoTranslate) { await this.addmanualtrans() ;}
this.startFetcher();
})();
} else if (notification === 'INTERVAL_SET') {
if (this.config.updateLowerBound) {updateLowerBound = this.config.updateLowerBound}
updateInterval = (payload<updateLowerBound)?updateLowerBound:payload; // 10 minutes minimal
} else {
console.log("MMM-Parcel DEBUG arriving FROM Module:", notification, payload);
}
},
startFetcher: function() {
var self = this ;
(async () => {
var shipments;
shipments = await this.fetchShipments();
this.broadcastShipments(shipments);
})();
setTimeout(function(){ self.startFetcher();}, updateInterval )
},
testRead: async function(file) {
try {
var data = await fs.readFile(file, 'utf8');
var json = data ;
var body = JSON.parse(json);
// console.log('[DEBUG TESTREAD]:', JSON.stringify(body, undefined, 2));
return (body) ;
} catch(e) {
console.log('testRead ERROR',e);
return ( null ) ;
}
}
});