forked from inv4fee2020/pli_node_conf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_plinode_restore.sh
324 lines (239 loc) · 10.6 KB
/
_plinode_restore.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
#!/bin/bash
# Get current user id and store as var
USER_ID=$(getent passwd $EUID | cut -d: -f1)
# Authenticate sudo perms before script execution to avoid timeouts or errors
sudo -l > /dev/null 2>&1
# Set Colour Vars
GREEN='\033[0;32m'
RED='\033[0;31m'
NC='\033[0m' # No Color
if [ -e ~/"plinode_$(hostname -f)".vars ]; then
source ~/"plinode_$(hostname -f)".vars
fi
if [ -e ~/"plinode_$(hostname -f)"_bkup.vars ]; then
source ~/"plinode_$(hostname -f)"_bkup.vars
fi
FUNC_RESTORE_DECRYPT(){
#FUNC_PKG_CHECK
#set -x
PLI_VARS_FILE="plinode_$(hostname -f)".vars
#echo $PLI_VARS_FILE
if [[ ! -e ~/$PLI_VARS_FILE ]]; then
read -r -p "please enter the previous systems .env.password key : " PASS_KEYSTORE
fi
if [ -e ~/"plinode_$(hostname -f)".vars ]; then
source ~/"plinode_$(hostname -f)".vars
fi
#BACKUP_FILE="$IFS"
RESTORE_FILE=""
#echo "Starting value of 'Restore File' var: $RESTORE_FILE"
RESTORE_FILE=$(echo $BACKUP_FILE | sed 's/\.[^.]*$//')
gpg --batch --yes --passphrase=$PASS_KEYSTORE -o $RESTORE_FILE --decrypt $BACKUP_FILE > /dev/null 2>&1
echo $?
#if [[ $? != 0 ]]; then
if [[ $? -gt 128 ]]; then
echo
echo -e "${RED}ERROR :: There was a problem with the entered KeyStore password... please check${NC}"
echo
FUNC_EXIT_ERROR;
fi
##set +x
if [[ "$BACKUP_FILE" =~ "plugin_mainnet_db" ]]; then
#echo "matched 'contains' db name..."
FUNC_RESTORE_DB
elif [[ "$BACKUP_FILE" =~ "conf_vars" ]]; then
#echo "else returned so must be file restore..."
FUNC_RESTORE_CONF
fi
sudo chown $USER_ID\:$DB_BACKUP_GUSER -R "/$DB_BACKUP_DIR"
#sudo chmod g+rw "/$DB_BACKUP_DIR";
#echo "if complete. existing..."
if [[ ! -e "$RESTORE_FILE" ]]; then
echo -e "{$RED}DECRYPT ERROR :: Restore file does not exist"
FUNC_EXIT_ERROR;
fi
FUNC_EXIT;
}
FUNC_RESTORE_DB(){
FUNC_DB_DR_CHECK
#source ~/"plinode_$(hostname -f)".vars
if [ -e ~/"plinode_$(hostname -f)".vars ]; then
source ~/"plinode_$(hostname -f)".vars
fi
### removes last extension suffix to get next file name
RESTORE_FILE_SQL=$(echo "$RESTORE_FILE" | sed -e 's/\.[^.]*$//')
sudo chown $USER_ID\:$DB_BACKUP_GUSER -R "/$DB_BACKUP_DIR"
if [[ ! -e "$RESTORE_FILE" ]]; then
echo -e "${RED}ERROR :: DB Restore file does not exist${NC}"
FUNC_EXIT_ERROR;
fi
echo " DB RESTORE.... unzip file name: $RESTORE_FILE"
#echo " the path to file is: $DB_BACKUP_PATH"
#echo
gunzip -vdf $RESTORE_FILE > /dev/null 2>&1
sudo chown $USER_ID\:$DB_BACKUP_GUSER -R "$RESTORE_FILE_SQL"
sleep 2
echo " DB RESTORE.... psql file name: $RESTORE_FILE_SQL"
sudo su postgres -c "export PGPASSFILE="$DB_BACKUP_PATH/.pgpass"; psql -d $DB_NAME < $RESTORE_FILE_SQL" > /dev/null 2>&1
sleep 2
echo " DB RESTORE.... restarting service postgresql"
sudo systemctl restart postgresql
echo " DB RESTORE.... waiting for API to respond"
until $(curl --output /dev/null --silent --head --fail http://localhost:6688); do
printf '.'
sleep 5
done
echo
echo " DB RESTORE.... API connection responding - continuing"
echo
echo
### NOTE: .pgpass file would need to be manually re-created inorder to restore files? As would the .env.password keystore
#sudo chown $USER_ID\:$DB_BACKUP_GUSER $DB_BACKUP_PATH/\*.sql
shred -uz -n 1 $RESTORE_FILE_SQL > /dev/null 2>&1
if [[ "$DR_RESTORE" == "true" ]]; then
FUNC_REBUILD_EI
fi
echo
echo
echo " DB RESTORE - COMPLETED"
echo
FUNC_EXIT
}
FUNC_RESTORE_CONF(){
if [[ ! -e "$RESTORE_FILE" ]]; then
echo -e "${RED}ERROR :: CONF Restore file does not exist${NC}"
FUNC_EXIT_ERROR;
fi
RESTORE_FILE_CONF=$(echo "$RESTORE_FILE" | sed -e 's/\.[^.]*$//')
echo " CONFIG FILES RESTORE...."
echo " uncompressing gz file: $RESTORE_FILE"
gunzip -df $RESTORE_FILE > /dev/null 2>&1
#sleep 2
echo " unpacking tar file: $RESTORE_FILE_CONF"
tar -xvf $RESTORE_FILE_CONF --directory=/
sleep 2
shred -uz -n 1 $RESTORE_FILE $RESTORE_FILE_CONF > /dev/null 2>&1
FUNC_EXIT
}
FUNC_REBUILD_EI(){
source ~/"plinode_$(hostname -f)".vars
EI_FILE=$(echo "$BASH_FILE3" | sed -e 's/\.[^.]*$//') # cuts the file extension to get the namespace for pm2
pm2 stop $EI_FILE && pm2 delete $EI_FILE && pm2 reset all && pm2 save # deletes existing EI process
sleep 3s
#echo $PWD
echo " DB RESTORE - REBUILD EI - authenticate to API with credentials file: $FILE_API"
plugin admin login -f ~/plugin-deployment/$FILE_API
echo " DB RESTORE - REBUILD EI - delete existing EI"
plugin initiators destroy $PLI_L_INIT_NAME
sleep 2s
cd /$PLI_DEPLOY_PATH/$PLI_INITOR_DIR
echo " DB RESTORE - REBUILD EI - generating new EI values & extract to file"
plugin initiators create $PLI_L_INIT_NAME http://localhost:8080/jobs > $PLI_INIT_RAWFILE
sed -i 's/ ║ /,/g;s/╬//g;s/═//g;s/║//g' $PLI_INIT_RAWFILE
sed -n '/'"$PLI_L_INIT_NAME"'/,//p' $PLI_INIT_RAWFILE > $PLI_INIT_DATFILE
sed -i 's/,/\n/g;s/^.'"$PLI_L_INIT_NAME"'//g' $PLI_INIT_DATFILE
sed -i 's/^http.*//g' $PLI_INIT_DATFILE
sed -i.bak '/^$/d;/^\s*$/d;s/[ \t]\+$//' $PLI_INIT_DATFILE
cp $PLI_INIT_DATFILE ~/$PLI_INIT_DATFILE.bak && chmod 600 ~/$PLI_INIT_DATFILE.bak
#cat $PLI_INIT_DATFILE
sleep 2s
echo " DB RESTORE - REBUILD EI - reading new EI values to variables"
read -r -d '' EXT_ACCESSKEY EXT_SECRET EXT_OUTGOINGTOKEN EXT_OUTGOINGSECRET <$PLI_INIT_DATFILE
echo " DB RESTORE - REBUILD EI - creating new EI file"
cd /$PLI_DEPLOY_PATH
cat <<EOF > $BASH_FILE3
#!/bin/bash
export EI_DATABASEURL=postgresql://postgres:${DB_PWD_NEW}@127.0.0.1:5432/plugin_mainnet_db?sslmode=disable
export EI_CHAINLINKURL=http://localhost:6688
export EI_IC_ACCESSKEY=${EXT_ACCESSKEY}
export EI_IC_SECRET=${EXT_SECRET}
export EI_CI_ACCESSKEY=${EXT_OUTGOINGTOKEN}
export EI_CI_SECRET=${EXT_OUTGOINGSECRET}
echo *** Starting EXTERNAL INITIATOR ***
external-initiator "{\"name\":\"$PLI_E_INIT_NAME\",\"type\":\"xinfin\",\"url\":\"https://plirpc.blocksscan.io\"}" --chainlinkurl "http://localhost:6688/"
EOF
#sleep 1s
#cat $BASH_FILE3
chmod u+x $BASH_FILE3
pm2 start $BASH_FILE3
pm2 save
}
FUNC_EXIT(){
exit 0
}
FUNC_EXIT_ERROR(){
exit 1
}
FUNC_RESTORE_MENU(){
### Call the setup script to set permissions & check installed pkgs
bash _plinode_setup_bkup.sh > /dev/null 2>&1
node_backup_arr=()
BACKUP_FILE=$'\n' read -r -d '' -a node_backup_arr < <( find /plinode_backups/ -type f -name *.gpg | head -n 8 | sort -z )
#node_backup_arr+=(quit)
#echo ${node_backup_arr[@]}
node_backup_arr_len=${#node_backup_arr[@]}
#echo $node_backup_arr_len
echo
echo " Showing last 8 backup files. "
echo " Select the number for the file you wish to restore "
echo
select _file in "${node_backup_arr[@]}" "QUIT" "REBUILD-EI"
do
case $_file in
${node_backup_arr[0]}) echo " RESTORE MENU - Restoring file: ${node_backup_arr[0]}" ; BACKUP_FILE="${node_backup_arr[0]}"; FUNC_RESTORE_DECRYPT; break ;;
${node_backup_arr[1]}) echo " RESTORE MENU - Restoring file: ${node_backup_arr[1]}" ; BACKUP_FILE="${node_backup_arr[1]}"; FUNC_RESTORE_DECRYPT; break ;;
${node_backup_arr[2]}) echo " RESTORE MENU - Restoring file: ${node_backup_arr[2]}" ; BACKUP_FILE="${node_backup_arr[2]}"; FUNC_RESTORE_DECRYPT; break ;;
${node_backup_arr[3]}) echo " RESTORE MENU - Restoring file: ${node_backup_arr[3]}" ; BACKUP_FILE="${node_backup_arr[3]}"; FUNC_RESTORE_DECRYPT; break ;;
${node_backup_arr[4]}) echo " RESTORE MENU - Restoring file: ${node_backup_arr[4]}" ; BACKUP_FILE="${node_backup_arr[4]}"; FUNC_RESTORE_DECRYPT; break ;;
${node_backup_arr[5]}) echo " RESTORE MENU - Restoring file: ${node_backup_arr[5]}" ; BACKUP_FILE="${node_backup_arr[5]}"; FUNC_RESTORE_DECRYPT; break ;;
${node_backup_arr[6]}) echo " RESTORE MENU - Restoring file: ${node_backup_arr[6]}" ; BACKUP_FILE="${node_backup_arr[6]}"; FUNC_RESTORE_DECRYPT; break ;;
${node_backup_arr[7]}) echo " RESTORE MENU - Restoring file: ${node_backup_arr[7]}" ; BACKUP_FILE="${node_backup_arr[7]}"; FUNC_RESTORE_DECRYPT; break ;;
"QUIT") echo "exiting now..." ; FUNC_EXIT; break ;;
"REBUILD-EI") echo " REBUILD-EI workaround"; FUNC_REBUILD_EI; break;;
*) echo invalid option;;
esac
done
}
FUNC_DB_DR_CHECK(){
echo -e "${GREEN} ######################################################################################${NC}"
echo -e "${GREEN} ######################################################################################${NC}"
echo -e "${GREEN} ##${NC}"
echo -e "${GREEN} ## RESTORE SCENARIO CONFIRMATION...${NC}"
echo -e "${GREEN} ##${NC}"
# Ask the user acc for login details (comment out to disable)
#DR_RESTORE=false
while true; do
echo -e "${GREEN} ##${NC}"
echo -e "${GREEN} ## A Full Restore is ONLY where you have moved backup files to a FRESH / NEW VPS host${NC}"
echo -e "${GREEN} ## this includes where you have reset your previous VPS installation to start again..${NC}"
echo -e "${GREEN} ##${NC}"
echo
read -t30 -r -p " Are you performing a Full Restore to BLANK / NEW VPS? - Please answer (Y)es or (N)o : " _RES_INPUT
if [ $? -gt 128 ]; then
#clear
echo
echo
echo " ....timed out waiting for user response - please select a file to restore..."
#echo "....timed out waiting for user response - proceeding as standard in-place restore to existing system..."
echo
#DR_RESTORE=false
FUNC_RESTORE_MENU;
break
fi
case $_RES_INPUT in
[Yy][Ee][Ss]|[Yy]* )
DR_RESTORE=true #flag used to involke the EI REBUID FUNC
#FUNC_RESTORE_MENU
break
;;
[Nn][Oo]|[Nn]* )
#FUNC_RESTORE_MENU
DR_RESTORE=false
echo
break
;;
* ) echo "Please answer (y)es or (n)o.";;
esac
done
}
FUNC_RESTORE_MENU;