-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathENPHASE-T1.plugin.txt
More file actions
494 lines (451 loc) · 24.4 KB
/
ENPHASE-T1.plugin.txt
File metadata and controls
494 lines (451 loc) · 24.4 KB
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
///////// <version>1.2.1</version>
///////// ENPHASE-T1 /////////////
///////// Plugin to extract Enphase Solar data for Toon ///////////////
///////// By Oepi-Loepi /////////////
function getSolarData(passWord,userName,sessionID,siteid,urlString,totalValue){
var sessionID = apiKey
if (debugOutput) console.log("*********SolarPanel Start getSolarData")
//getEnphaseStep1(urlString,passWord,userName,sessionID, totalValue,siteid);
parseEnpaseInfo(urlString,passWord,userName,sessionID, totalValue,siteid);
}
/*
function getEnphaseStep1(urlString,passWord,userName,sessionID, totalValue,siteid){
var onetime = true
if (debugOutput) console.log("*********SolarPanel Start getEnphaseStep1()")
if (debugOutput) console.log("*********SolarPanel haal de enphase info op via tsc command")
if (debugOutput) console.log("*********SolarPanel enphase info url " + urlString)
var doc2 = new XMLHttpRequest();
doc2.open("PUT", "file:///tmp/enphase_info.txt");
doc2.send(urlString)
var doc4 = new XMLHttpRequest();
doc4.open("PUT", "file:///tmp/tsc.command");
doc4.send("external-solarPanel");
//wacht op een response vanuit het TSC script
solarEnphaseDelay(8000, function() {
if (onetime){
onetime = false
parseEnpaseInfo(urlString,passWord,userName,sessionID,totalValue,siteid)
}
})
}
*/
function parseEnpaseInfo(urlString,passWord,userName,sessionID,totalValue,siteid){
if (debugOutput) console.log("*********SolarPanel parsing Info data after TSC command")
var http = new XMLHttpRequest()
//var url = "file:///tmp/enphase_info_return.txt"
var url = "http://" + urlString + "/info.xml"
http.open("GET", url, true);
http.onreadystatechange = function() {
if (debugOutput) console.log("http.readyState: " +http.readyState)
if (http.readyState === XMLHttpRequest.DONE) {
if (debugOutput) console.log("http.status: " + http.status)
if (http.status === 200 || http.status === 300 || http.status === 302) {
try {
if (debugOutput) console.log("*********SolarPanel http.status: " + http.status)
if (debugOutput) console.log("*********SolarPanel http.responseText: " + http.responseText)
var envoyserial
var envoyfirmware
if (http.responseText.indexOf("<sn>")){
envoyserial= http.responseText.split("<sn>")[1].split("</sn>")[0]
}
if (http.responseText.indexOf("<software>")){
envoyfirmware= http.responseText.split("<software>")[1].split("</software>")[0].split(".")[0]
}
if (debugOutput) console.log("*********SolarPanel envoyserial: " + envoyserial)
if (debugOutput) console.log("*********SolarPanel envoyfirmware: " + envoyfirmware)
if (envoyfirmware === 'D7' & sessionID === ''){
startLoginD7(passWord,userName,urlString,envoyserial,envoyfirmware,totalValue)
}
if (envoyfirmware === 'D8' & sessionID === ''){
startLoginD8(passWord,userName,urlString,envoyserial,envoyfirmware,totalValue,siteid)
}
if (envoyfirmware === 'D8' & sessionID !== ''){
getD7data(urlString, sessionID,totalValue,"D8")
}
if (envoyfirmware === 'D7' & sessionID !== ''){
getD7data(urlString, sessionID,totalValue,"D7")
}
if (envoyfirmware === 'D5'){
getD5data(urlString,totalValue)
}
}
catch (e){
currentPower = 0
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
} else {
if (debugOutput) console.log("*********SolarPanel error: " + http.status)
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
}
}
http.send();
}
function startLoginD7(passWord,userName,urlString,envoyserial,envoyfirmware, totalValue){
if (debugOutput) console.log("*********SolarPanel Start startLoginD7")
var http = new XMLHttpRequest()
var url = "https://enlighten.enphaseenergy.com/login/login.json?&user[password]=" + passWord + "&user[email]=" + userName
if (debugOutput) console.log("*********SolarPanel url: " + url)
http.open("POST", url, true);
http.onreadystatechange = function() { // Call a function when the state changes.
if (debugOutput) console.log("http.readyState: " +http.readyState)
if (http.readyState === XMLHttpRequest.DONE) {
if (debugOutput) console.log("http.status: " + http.status)
if (http.status === 200 || http.status === 300 || http.status === 302) {
try {
if (debugOutput) console.log("http.status: " + http.status)
if (debugOutput) console.log(http.responseText)
var JsonString = http.responseText
var JsonObject= JSON.parse(JsonString)
var tempSession = JsonObject.session_id
getTokenD7(tempSession, passWord,userName,urlString,envoyserial,envoyfirmware,totalValue)
}
catch (e){
currentPower = 0
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
} else {
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
}
}
http.send();
}
function getTokenD7(tempSession, passWord,userName,urlString,envoyserial,envoyfirmware,totalValue){
if (debugOutput) console.log("*********SolarPanel Start getTokenD7")
var http = new XMLHttpRequest()
var url = "https://entrez.enphaseenergy.com/tokens"
if (debugOutput) console.log("*********SolarPanel url: " + url)
http.open("POST", url, true);
http.withCredentials = true;
http.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
http.onreadystatechange = function() { // Call a function when the state changes.
if (debugOutput) console.log("http.readyState: " + http.readyState)
if (http.readyState === XMLHttpRequest.DONE) {
if (debugOutput) console.log("http.status: " + http.status)
if (http.status === 200 || http.status === 300 || http.status === 302) {
try {
if (debugOutput) console.log("http.status: " + http.status)
if (debugOutput) console.log(http.responseText)
if (http.responseText != ""){
checkToken(tempSession, urlString,http.responseText,totalValue,"D7")
}else{
if (getDataCount == 0){apiKey = ""}
if (getDataCount == 1){apiKey2 = ""}
}
}
catch (e){
currentPower = 0
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
} else {
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
}
}
http.send(JSON.stringify({ "session_id": tempSession , "serial_num": envoyserial , "username" : userName}));
}
function startLoginD8(passWord,userName,urlString,envoyserial,envoyfirmware,totalValue,siteid){
if (debugOutput) console.log("*********SolarPanel Start startLoginD8")
var http = new XMLHttpRequest()
var url = "https://entrez.enphaseenergy.com/login_main_page"
http.open("GET", url, true);
http.setRequestHeader("Connection", "keep-alive")
http.onreadystatechange = function() {
if (http.readyState === XMLHttpRequest.DONE) {
if (http.status === 200 || http.status === 300 || http.status === 302) {
try {
if (debugOutput) console.log("*********SolarPanel Start startLoginD8 http.status: " + http.status)
if (debugOutput) console.log("*********SolarPanel Start startLoginD8 http.responseText: " + http.responseText)
var csrf= http.responseText.split("<input type=\"hidden\" name=\"_csrf\" value=\"")[1].split("\"/>")[0].trim()
if (debugOutput) console.log("*********SolarPanel csrf: " + csrf)
startLoginD82(passWord,userName,urlString,envoyserial,envoyfirmware,totalValue,siteid,csrf)
}
catch (e){
currentPower = 0
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
} else {
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
}
}
http.send();
}
function startLoginD82(passWord,userName,urlString,envoyserial,envoyfirmware,totalValue,siteid, csrf){
if (debugOutput) console.log("*********SolarPanel Start startLoginD82")
var data = "_csrf=" + csrf + "&username=" + encodeURIComponent(userName) + "&password=" + encodeURIComponent(passWord) + "&codeChallenge=&redirectUri=&client=&clientId=&authFlow=entrezSession&serialNum=&grantType=&state=&invalidSerialNum=";
var http = new XMLHttpRequest()
var url = "https://entrez.enphaseenergy.com/login"
if (debugOutput) console.log("*********SolarPanel url: " + url)
http.open("POST", url, true);
http.setRequestHeader("content-type", "application/x-www-form-urlencoded")
http.onreadystatechange = function() {
if (http.readyState === XMLHttpRequest.DONE) {
if (debugOutput) console.log("*********SolarPanel http.status: " + http.status)
if (http.status === 200 || http.status === 300 || http.status === 302) {
try {
if (debugOutput) console.log("*********SolarPanel Start startLoginD8-2 http.status: " + http.status)
if (debugOutput) console.log("*********SolarPanel Start startLoginD8-2 http.responseText: " + http.responseText)
var csrf2= http.responseText.split("<input type=\"hidden\" name=\"_csrf\" value=\"")[1].split("\"/>")[0].trim()
if (debugOutput) console.log("*********SolarPanel csrf2: " + csrf2)
getTokenD8(passWord,userName,urlString,envoyserial,envoyfirmware,totalValue,siteid,csrf2)
}
catch (e){
currentPower = 0
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
} else {
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
}
}
http.send(data);
}
function getTokenD8(passWord,userName,urlString,envoyserial,envoyfirmware,totalValue,siteid,csrf){
if (debugOutput) console.log("*********SolarPanel Start getTokenD8")
var siteName = siteid
if (debugOutput) console.log("*********SolarPanel getTokenD8 siteName: " + siteName)
if (debugOutput) console.log("*********SolarPanel getTokenD8 siteSerial: " + envoyserial)
var data = "_csrf=" + csrf + "&Site=" + siteName + "&serialNum=" + envoyserial;
var http = new XMLHttpRequest()
var url = "https://entrez.enphaseenergy.com/entrez_tokens"
if (debugOutput) console.log("*********SolarPanel url: " + url)
http.open("POST", url, true);
http.setRequestHeader("content-type", "application/x-www-form-urlencoded")
http.onreadystatechange = function() {
if (http.readyState === XMLHttpRequest.DONE) {
if (debugOutput) console.log("*********SolarPanel http.status: " + http.status)
if (http.status === 200 || http.status === 300 || http.status === 302) {
try {
if (debugOutput) console.log("*********SolarPanel getTokenD8 http.status: " + http.status)
if (debugOutput) console.log("*********SolarPanel getTokenD8 http.responseText: " + http.responseText)
var newtoken= http.responseText.split("<textarea name=\"accessToken\" id=\"JWTToken\" cols=\"30\" rows=\"10\" >")[1].split("</textarea>")[0].trim()
if (debugOutput) console.log("*********SolarPanel newtokenD8:: " + newtoken)
if (newtoken !== ""){
if (debugOutput) console.log("*********SolarPanel checking token: " + newtoken)
checkToken(passWord,userName,urlString,envoyserial,envoyfirmware,totalValue,siteid,newtoken, "D8")
}else{
if (getDataCount == 0){apiKey = ""}
if (getDataCount == 1){apiKey2 = ""}
}
}
catch (e){
currentPower = 0
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
} else {
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
}
}
http.send(data);
}
function checkToken(passWord,userName,urlString,envoyserial,envoyfirmware,totalValue,siteid,newtoken,invtype){
console.log("*********SolarPanel Start checkToken()*******************************************************************************")
if (debugOutput) console.log("*********SolarPanel Start checkToken()")
if (debugOutput) console.log("*********SolarPanel haal de enphase info op via tsc command")
if (debugOutput) console.log("*********SolarPanel enphase checktoken url " + urlString)
if (debugOutput) console.log("*********SolarPanel enphase checktoken newtoken " + newtoken)
var onetime = true
var doc2 = new XMLHttpRequest();
doc2.open("PUT", "file:///tmp/enphase_token.txt");
doc2.send(urlString + ";" + newtoken);
var doc4 = new XMLHttpRequest();
doc4.open("PUT", "file:///tmp/tsc.command");
doc4.send("external-solarPanel");
//wacht op een response vanuit het TSC script
solarEnphaseDelay(8000, function() {
if (onetime){
onetime = false
parseEnpaseToken(urlString,passWord,userName,newtoken,totalValue,invtype)
}
})
}
function parseEnpaseToken(urlString,passWord,userName,newtoken,totalValue,invtype){
if (debugOutput) console.log("*********SolarPanel Start parseEnpaseToken()")
if (debugOutput) console.log("*********SolarPanel newtoken: " + newtoken)
var http = new XMLHttpRequest()
var url = "file:///tmp/enphase_token_return.txt"
if (debugOutput) console.log("*********SolarPanel url: " + url)
http.open("GET", url, true);
http.onreadystatechange = function() { // Call a function when the state changes.
if (debugOutput) console.log("http.readyState: " + http.readyState)
if (http.readyState === XMLHttpRequest.DONE) {
if (debugOutput) console.log("http.status: " + http.status)
if (http.status === 200 || http.status === 300 || http.status === 302) {
try {
if (debugOutput) console.log("http.status: " + http.status)
if (debugOutput) console.log("*********SolarPanel http.responseText: " + http.responseText)
if (http.responseText.indexOf("Valid token")>0){
if (debugOutput) console.log("valid token")
//get cookie data from response
var locsessionID= http.responseText.split("sessionId=")[1].split(";")[0]
if (debugOutput) console.log("apiKeyPlugin: " + locsessionID)
if (getDataCount == 0){apiKey = locsessionID}
if (getDataCount == 1){apiKey2 = locsessionID}
getD7data(urlString,locsessionID,totalValue,invtype)
}else{
if (getDataCount == 0){apiKey = ""}
if (getDataCount == 1){apiKey2 = ""}
}
}
catch (e){
currentPower = 0
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
} else {
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
}
}
http.send();
}
function getD7data(urlString,sessionID,totalValue,invtype){
var onetime = true
if (debugOutput) console.log("*********SolarPanel Start getD7data")
if (debugOutput) console.log("*********SolarPanel haal de enphase info op via tsc command")
if (debugOutput) console.log("*********SolarPanel enphase getD7data url " + urlString)
if (debugOutput) console.log("*********SolarPanel enphase getD7data sessionID " + sessionID)
var doc2 = new XMLHttpRequest();
doc2.open("PUT", "file:///tmp/enphase_D7.txt");
doc2.send(urlString + ";" + sessionID);
var doc4 = new XMLHttpRequest();
doc4.open("PUT", "file:///tmp/tsc.command");
doc4.send("external-solarPanel");
//wacht op een response vanuit het TSC script
solarEnphaseDelay(8000, function() {
if (onetime){
onetime = false
parseEnphaseD7(totalValue,invtype)
}
})
}
function parseEnphaseD7(totalValue,invtype){
if (debugOutput) console.log("*********SolarPanel Start parseEnphaseD7")
var http = new XMLHttpRequest()
var url = "file:///tmp/enphase_D7_return.txt"
if (debugOutput) console.log("*********SolarPanel url: " + url)
http.open("GET", url, true);
http.onreadystatechange = function() { // Call a function when the state changes.
if (debugOutput) console.log("http.readyState: " + http.readyState)
if (http.readyState === XMLHttpRequest.DONE) {
if (debugOutput) console.log("http.status: " + http.status)
if (http.status === 200 || http.status === 300 || http.status === 302) {
try {
if (debugOutput) console.log("*********SolarPanel http.status: " + http.status)
if (debugOutput) console.log("*********SolarPanel http.responseText: " + http.responseText)
if (http.responseText.indexOf("401 Authorization Required")>0){
if (getDataCount == 0){apiKey = ""}
if (getDataCount == 1){apiKey2 = ""}
}else{
if(invtype == "D7"){
if (debugOutput) console.log("*********SolarPanel parsing D7 responseText")
var JsonObject= JSON.parse(http.responseText)
var today2
currentPower = parseInt(JsonObject.production[0].wNow)
today2=parseInt(JsonObject.production[1].whToday)
totalValue= parseInt(JsonObject.production[0].whLifetime)
if (debugOutput) console.log("*********SolarPanel currentPower: " + currentPower)
if (debugOutput) console.log("*********SolarPanel today2: " + today2)
if (debugOutput) console.log("*********SolarPanel totalValue: " + totalValue)
parseReturnData(currentPower,totalValue,today2,0,0,0,0,http.status,"succes")
}
if(invtype == "D8"){
if (debugOutput) console.log("*********SolarPanel yesterdayTotal: " + yesterdayTotal)
if (yesterdayTotal == 0||yesterdayTotal == null){
if (debugOutput) console.log("*********SolarPanel yesterdayTotal is 0")
getLastNonNullValueFromURL()
if (debugOutput) console.log("*********SolarPanel return yesterdayTotal: " + yesterdayTotal)
}
if (debugOutput) console.log("*********SolarPanel parsing D8 responseText")
var JsonObject= JSON.parse(http.responseText)
var today2
currentPower = parseInt(JsonObject.production[0].wNow)
totalValue= parseInt(JsonObject.production[0].whLifetime)
today2= totalValue - yesterdayTotal
if (debugOutput) console.log("*********SolarPanel currentPower: " + currentPower)
if (debugOutput) console.log("*********SolarPanel today2: " + today2)
if (debugOutput) console.log("*********SolarPanel totalValue: " + totalValue)
parseReturnData(currentPower,totalValue,today2,0,0,0,0,http.status,"succes")
}
}
}
catch (e){
currentPower = 0
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
} else {
if (http.status === 401){
if (getDataCount == 0){apiKey = ""}
if (getDataCount == 1){apiKey2 = ""}
}
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
}
}
http.send();
}
function getD5data(urlString,totalValue){
if (debugOutput) console.log("*********SolarPanel Start getD5data")
var http = new XMLHttpRequest()
var url = "http://" + urlString + "/production.json"
if (debugOutput) console.log("*********SolarPanel url: " + url)
http.open("GET", url, true);
http.onreadystatechange = function() { // Call a function when the state changes.
if (debugOutput) console.log("http.readyState: " + http.readyState)
if (http.readyState === XMLHttpRequest.DONE) {
if (debugOutput) console.log("http.status: " + http.status)
if (http.status === 200 || http.status === 300 || http.status === 302) {
try {
if (debugOutput) console.log("http.status: " + http.status)
if (debugOutput) console.log(http.responseText)
var JsonObject= JSON.parse(http.responseText)
var today2
currentPower = parseInt(JsonObject.production[0].wNow)
today2=parseInt(JsonObject.production[1].whToday)
totalValue= parseInt(JsonObject.production[0].whLifetime)
parseReturnData(currentPower,totalValue,today2,0,0,0,0,http.status,"succes")
}
catch (e){
currentPower = 0
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
} else {
parseReturnData(currentPower,totalValue,todayValue,0,0,0,0, http.status,"error")
}
}
}
http.send();
}
function getLastNonNullValueFromURL() {
if (debugOutput) console.log("*********SolarPanel getLastNonNullValueFromURL")
var $date = new Date()
$date.setDate($date.getDate()-1)
var yesterdayDate = $date.getDate() + '-' + ($date.getMonth()+1) + '-' + $date.getFullYear()
var url = "http://localhost/hcb_rrd?action=getRrdData&loggerName=elec_solar_quantity&rra=10yrdays&readableTime=1&nullForNaN=1&to=" + yesterdayDate;
const xhr = new XMLHttpRequest()
xhr.open('GET', url, true)
xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status === 200) {
try {
const data = JSON.parse(xhr.responseText)
const keys = Object.keys(data).reverse()
let lastNonNullValue = null
for (var key in keys) {
if (data[key] !== null) {
lastNonNullValue = data[key]
yesterdayTotal = lastNonNullValue
}
}
if (debugOutput) console.log("*********SolarPanel yesterdayTotal: " + yesterdayTotal)
return yesterdayTotal
} catch (error) {
if (debugOutput) console.error("*********SolarPanel getLastNonNullValueFromURL error: ", error)
}
} else if (xhr.readyState === 4) {
if (debugOutput) console.error("*********SolarPanel getLastNonNullValueFromURL error: ", xhr.status)
}
}
xhr.send();
}