-
Notifications
You must be signed in to change notification settings - Fork 66
/
verify.sh
executable file
·444 lines (427 loc) · 14.7 KB
/
verify.sh
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
#!/bin/bash
#
# Setup Verification Tool for Powerwall Dashboard
# Stop on Errors
set -e
# Formatting
default="\033[39m"
white="\033[97m"
green="\033[32m"
red="\033[91m"
yellow="\033[33m"
bold="\033[0m${white}\033[1m"
subbold="\033[0m${green}"
normal="${white}\033[0m"
dim="\033[0m${white}\033[2m"
alert="\033[0m${red}\033[1m"
alertdim="\033[0m${red}\033[2m"
# Check for no-color mode
if [ $# -ne 0 ]; then
# no color
bold=""
subbold=""
normal=""
dim=""
alert=""
alertdim=""
fi
# Set Globals
UKN="${alertdim}Unknown${normal}"
GOOD="${subbold}GOOD${normal}"
CURRENT=$UKN
ALLGOOD=1
if [ -f VERSION ]; then
CURRENT=`cat VERSION`
fi
TZ=`cat tz`
# Windows Git Bash docker exec compatibility fix
if type winpty > /dev/null 2>&1; then
shopt -s expand_aliases
alias docker="winpty -Xallow-non-tty -Xplain docker"
fi
# Service Running Helper Function
running() {
local url=${1:-http://localhost:80}
local code=${2:-200}
if [[ $3 == 1 ]]; then
head="--head"
else
head=""
fi
local status=$(curl ${head} -k --location --connect-timeout 5 --write-out %{http_code} --silent --output /dev/null ${url})
[[ $status == ${code} ]]
}
# Operating system details
case "$OSTYPE" in
linux*) OS="Linux" ;;
darwin*) OS="MacOS" ;;
cygwin*) OS="Windows" ;;
msys*) OS="Windows" ;;
*) OS="$OSTYPE" ;;
esac
echo -e "${bold}Verify Powerwall-Dashboard ${subbold}${CURRENT}${normal} on ${OS} - Timezone: ${subbold}${TZ}${dim}"
echo -e "----------------------------------------------------------------------------"
echo -e "This script will attempt to verify all the services needed to run"
echo -e "Powerwall-Dashboard. Use this output when you open an issue for help:"
echo -e "https://github.com/jasonacox/Powerwall-Dashboard/issues/new"
echo -e ""
# Check compose env file
COMPOSE_ENV_FILE="compose.env"
if [ ! -f ${COMPOSE_ENV_FILE} ]; then
echo -e " - ${alert}ERROR: You are missing ${COMPOSE_ENV_FILE}${normal}"
ALLGOOD=0
fi
echo -e ""
# pypowerwall
echo -e "${bold}Checking pypowerwall${dim}"
echo -e "----------------------------------------------------------------------------"
CONTAINER="pypowerwall"
VER=$UKN
PWVER=$UKN
PWSTATE="${alert}ERROR: Not Connected${dim}"
ENV_FILE="pypowerwall.env"
AUTH_FILE=".auth/.pypowerwall.auth"
PORT="8675"
echo -e -n "${dim} - Config File ${ENV_FILE}: "
if [ ! -f ${ENV_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null) || true
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
echo -e -n "${dim} - Service (port $PORT): "
if running http://localhost:$PORT/stats 200 0 2>/dev/null; then
echo -e $GOOD
VER=`curl --silent http://localhost:$PORT/stats | awk '{print $2" "$3" "$4}' | cut -d\" -f 2 2>/dev/null`
SITENAME=`curl --silent http://localhost:$PORT/stats | sed 's/.*"site_name": "\(.*\)", "cloudmode".*/\1/' 2>/dev/null`
CLOUDMODE=`curl --silent http://localhost:$PORT/stats | sed 's/.*"cloudmode": \(.*\), "fleetapi".*/\1/' 2>/dev/null`
SITEID=`curl --silent http://localhost:$PORT/stats | sed 's/.*"siteid": \(.*\), "counter".*/\1/' 2>/dev/null`
TEDAPI=`curl --silent http://localhost:$PORT/stats | sed 's/.*"tedapi": \(.*\), "pw3".*/\1/' 2>/dev/null`
TEDAPIMODE=`curl --silent http://localhost:$PORT/stats | sed 's/.*"tedapi_mode": "\(.*\)", "siteid".*/\1/' 2>/dev/null`
# check connection with powerwall
if running http://localhost:$PORT/version 200 0 2>/dev/null; then
PWSTATE="CONNECTED"
PWVER=`curl --silent http://localhost:$PORT/version | awk '{print $2}' | cut -d\" -f 2 2>/dev/null`
fi
else
echo -e "${alert}ERROR: Not Listening${normal}"
LISTENING="false"
ALLGOOD=0
fi
elif [ "$RUNNING" = "false" ]; then
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
else
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e "${dim} - Powerwall State: ${subbold}$PWSTATE${dim} - Firmware: ${subbold}$PWVER${dim}"
if [ -n "$SITENAME" ]; then
echo -e "${dim} - Site Name: ${subbold}$SITENAME${normal}"
SITEID="$SITEID ($SITENAME)"
fi
if running https://192.168.91.1/tedapi/din 403 0 2>/dev/null; then
# if TEDAPI = "true" show connected
if [ "$TEDAPI" = "true" ]; then
VAL="${subbold}Connected ${dim}- Mode: ${subbold}${TEDAPIMODE}"
else
VAL="${alert}Not Connected"
fi
echo -e "${dim} - Gateway TEDAPI: ${subbold}Available ${dim}(192.168.91.1)"
echo -e "${dim} - TEDAPI Vitals: ${VAL} ${dim}"
else
echo -e "${dim} - Powerwall Gateway TEDAPI: ${normal}Not Available ${dim}(192.168.91.1)"
fi
if [ "$CLOUDMODE" = "true" ]; then
echo -e "${dim} - Cloud Mode: ${subbold}YES ${dim}- Site ID: ${subbold}$SITEID"
elif [ "$LISTENING" = "false" ] && [ -f ${ENV_FILE} ] && ! grep -qE "^PW_HOST=.+" "${ENV_FILE}"; then
echo -e "${dim} - Cloud Mode: ${subbold}YES ${dim}- ${alert}ERROR: Not Connected to Tesla Cloud${normal}"
if [ ! -f "${AUTH_FILE}" ]; then
echo -e "${dim} - Auth File ${AUTH_FILE}: ${alert}ERROR: Missing${normal}"
fi
ALLGOOD=0
else
echo -e "${dim} - Cloud Mode: ${normal}NO"
fi
# Check to see that TZ is set in pypowerwall
if [ -f ${ENV_FILE} ] && ! grep -q "TZ=" ${ENV_FILE}; then
echo -e "${dim} - ${alertdim}ERROR: Your pypowerwall settings are missing TZ.${normal}"
ALLGOOD=0
fi
echo -e ""
# telegraf
echo -e "${bold}Checking telegraf${dim}"
echo -e "----------------------------------------------------------------------------"
CONTAINER="telegraf"
VER=$UKN
PORT=""
CONF_FILE="telegraf.conf"
echo -e -n "${dim} - Config File ${CONF_FILE}: "
if [ ! -f ${CONF_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
fi
CONF_FILE="telegraf.local"
echo -e -n "${dim} - Local Config File ${CONF_FILE}: "
if [ ! -f ${CONF_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null) || true
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
VER=`v=$(docker exec --tty $CONTAINER sh -c "telegraf --version") && echo "$v" || echo "$UKN"`
elif [ "$RUNNING" = "false" ]; then
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
else
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e ""
# influxdb
echo -e "${bold}Checking influxdb${dim}"
echo -e "----------------------------------------------------------------------------"
CONTAINER="influxdb"
VER=$UKN
CONF_FILE="influxdb.conf"
ENV_FILE="influxdb.env"
PORT="8086"
echo -e -n "${dim} - Config File ${CONF_FILE}: "
if [ ! -f ${CONF_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Environment File ${ENV_FILE}: "
if [ ! -f ${ENV_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null) || true
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
echo -e -n "${dim} - Service (port $PORT): "
if running http://localhost:$PORT/ping 204 1 2>/dev/null; then
echo -e $GOOD
VER=`v=$(docker exec --tty $CONTAINER sh -c "influx -version") && echo "$v" || echo "$UKN"`
else
echo -e "${alert}ERROR: Not Listening${normal}"
ALLGOOD=0
fi
echo -e -n "${dim} - Filesystem (./$CONTAINER): "
rm -f ./influxdb/WRITE
ERR=`docker exec -it $CONTAINER sh -c "touch /var/lib/influxdb/WRITE 2>/dev/null"` || true
if [ -e "./influxdb/WRITE" ]; then
echo -e $GOOD
rm -f ./influxdb/WRITE
else
echo -e "${alert}ERROR: Unable to write to filesystem - check permissions${normal}"
ALLGOOD=0
fi
elif [ "$RUNNING" = "false" ]; then
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
else
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e ""
# grafana
echo -e "${bold}Checking grafana${dim}"
echo -e "----------------------------------------------------------------------------"
CONTAINER="grafana"
VER=$UKN
PORT="9000"
ENV_FILE="grafana.env"
echo -e -n "${dim} - Config File ${ENV_FILE}: "
if [ ! -f ${ENV_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
if ! grep -q "yesoreyeram-boomtable-panel-1.5.0-alpha.3.zip" $ENV_FILE; then
echo -e "${dim} - ${alertdim}WARNING: Your Grafana settings are outdated."
fi
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null) || true
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
VER=`v=$(docker exec --tty $CONTAINER sh -c "grafana-cli --version") && echo "$v" || echo "$UKN"`
echo -e -n "${dim} - Service (port $PORT): "
if running http://localhost:$PORT/login 200 1 2>/dev/null; then
echo -e $GOOD
else
echo -e "${alert}ERROR: Not Listening - Logs:${alertdim}"
echo -e "---"
docker logs $CONTAINER 2>&1 | tail -11
echo -e "---${normal}"
ALLGOOD=0
fi
echo -e -n "${dim} - Filesystem (./$CONTAINER): "
rm -f ./grafana/WRITE
ERR=`docker exec -it $CONTAINER sh -c "touch /var/lib/grafana/WRITE 2>/dev/null"` || true
if [ -e "./grafana/WRITE" ]; then
echo -e $GOOD
rm -f ./grafana/WRITE
else
echo -e "${alert}ERROR: Unable to write to filesystem - check permissions${normal}"
ALLGOOD=0
fi
elif [ "$RUNNING" = "false" ]; then
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
else
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e ""
if grep -q "tesla-history" powerwall.extend.yml 2>/dev/null; then
# tesla-history
echo -e "${bold}Checking tesla-history${dim}"
echo -e "----------------------------------------------------------------------------"
CONTAINER="tesla-history"
VER=$UKN
CONF_FILE="tools/tesla-history/tesla-history.conf"
AUTH_FILE="tools/tesla-history/tesla-history.auth"
echo -e -n "${dim} - Config File ${CONF_FILE}: "
if [ ! -f ${CONF_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Auth File ${AUTH_FILE}: "
if [ ! -f ${AUTH_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null) || true
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
VER=`v=$(docker exec -it $CONTAINER sh -c "python3 tesla-history.py --version") && echo "$v" || echo "$UKN"`
elif [ "$RUNNING" = "false" ]; then
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
else
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e ""
fi
# weather411
echo -e "${bold}Checking weather411${dim}"
echo -e "----------------------------------------------------------------------------"
CONTAINER="weather411"
VER=$UKN
WEATHER=$UKN
ENV_FILE="weather/weather411.conf"
PORT="8676"
if [ ! -f ${ENV_FILE} ]; then
echo -e "${dim} - Skipped: weather411 not set up (missing ${ENV_FILE})"
else
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null) || true
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
echo -e -n "${dim} - Service (port $PORT): "
if running http://localhost:$PORT/stats 200 0 2>/dev/null; then
echo -e $GOOD
VER=`curl --silent http://localhost:$PORT/stats | awk '{print $2" "$3" "$4}' | cut -d\" -f 2 2>/dev/null`
# check connection with openweather
if running http://localhost:$PORT/temp 200 0 2>/dev/null; then
WEATHER=`curl --silent http://localhost:$PORT/temp 2>/dev/null`
fi
echo -e "${dim} - Weather: ${subbold}${WEATHER}"
else
echo -e "${alert}ERROR: Not Listening - Logs:${alertdim}"
echo -e "---"
docker logs $CONTAINER 2>&1 | tail -11
echo -e "---${normal}"
ALLGOOD=0
fi
elif [ "$RUNNING" = "false" ]; then
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
else
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
fi
echo -e ""
if grep -q "ecowitt" powerwall.extend.yml 2>/dev/null; then
# ecowitt
echo -e "${bold}Checking ecowitt${dim} (optional component - OK if missing)"
echo -e "----------------------------------------------------------------------------"
CONTAINER="ecowitt"
VER=$UKN
WEATHER=$UKN
ENV_FILE="weather/contrib/ecowitt/ecowitt.conf"
PORT="8686"
echo -e -n "${dim} - Config File ${ENV_FILE}: "
if [ ! -f ${ENV_FILE} ]; then
echo -e "${alertdim}Missing - ecowitt not set up"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null) || true
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
echo -e -n "${dim} - Service (port $PORT): "
if running http://localhost:$PORT/stats 200 0 2>/dev/null; then
echo -e $GOOD
VER=`curl --silent http://localhost:$PORT/stats | awk '{print $2" "$3" "$4}' | cut -d\" -f 2 2>/dev/null`
# check connection with ecowitt
if running http://localhost:$PORT/temp 200 0 2>/dev/null; then
WEATHER=`curl --silent http://localhost:$PORT/temp 2>/dev/null`
fi
echo -e "${dim} - Weather: ${subbold}${WEATHER}"
else
echo -e "${alert}ERROR: Not Listening - Logs:${alertdim}"
echo -e "---"
docker logs $CONTAINER 2>&1 | tail -11
echo -e "---${normal}"
ALLGOOD=0
fi
elif [ "$RUNNING" = "false" ]; then
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
else
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e ""
fi
if [ $ALLGOOD -ne 1 ]; then
echo -e "${alert}One or more tests failed.${normal}"
exit 1
else
echo -e "${subbold}All tests succeeded.${normal}"
exit 0
fi