forked from phlshenrique/liferay-tool
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathge.sh
executable file
·509 lines (462 loc) · 13.2 KB
/
ge.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
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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
#!/bin/bash
command=
show_help=false
container="mysql"
name_db="lportal"
only_cache=false
dxp=false
project_path=~/dev/projects/liferay-portal/
wizard_path=~/dev/bundles/master/portal-setup-wizard.properties
me_path=~/dev/projects/liferay-portal/app.server.me.properties
show_basic_usage() {
printf 'usage lfc [--all] [-h | --help] [--tomcat | -t]\n\t [--database | -d] [--untracked | -u] <command> [<args>]'
}
show_all_usage() {
printf 'usage lfc --all [-c | --container] --name\n\t --wizard-path --me-path --only-cache --project-path --dxp [-h | --help]'
}
show_tomcat_usage() {
printf 'usage lfc %s [-p | --path] --only-cache --project-path --dxp [-h | --help]' "$command"
}
show_untracked_usage() {
printf 'usage lfc %s [-p | --path] --dxp [-h | --help]' "$command"
}
show_database_usage() {
printf 'usage lfc %s [-c | --container] --name [-h | --help]' "$command"
}
show_basic_help() {
show_basic_usage
printf '\n\nThese are basic commands used in various situations:\n'
printf 'all \t\t Run all steps to clean up the Liferay instance.\n'
printf 'tomcat \t\t Clean up caches in tomcat directory.\n'
printf 'database \t Clean up the MySQL database instance.\n'
printf 'untracked \t Clean up untracked files in Liferay project directory.\n\n'
printf "See 'lfc <command> [-h | --help]' to read about a specific subcommand."
}
show_all_help() {
show_all_usage
printf '\n\nThese are optionals commands used in various situations:\n'
printf 'container \t Indicate a docker container to clean up a MySQL instance.\n'
printf 'name \t\t Database name to connect it.\n'
printf "wizard-path \t Path to portal-setup-wizard.properties in bundles\n\t\t configuration directory.\n"
printf "me-path \t Path to app.server.me.properties in\n\t\t Liferay Portal directory.\n"
printf "only-cache \t This allow the command only delete cache like data,\n\t\t osgi/state folders in bundles configuration directory.\n"
printf "project-path \t Path to Liferay Project directory.\n"
printf "dxp \t Allow command to run the ant setup-profile-dxp."
}
show_database_help() {
show_database_usage
printf '\n\nThese are optionals commands used in various situations:\n'
printf 'container \t Indicate a docker container to clean up a MySQL instance.\n'
printf 'name \t\t Database name to connect it.\n'
}
show_tomcat_help() {
show_tomcat_usage
printf '\n\nThese are optionals commands used in various situations:\n'
printf 'path \t Path to portal-setup-wizard.properties in bundles\n\t\t configuration directory.\n'
printf 'only-cache \t This allow the command only delete cache like data,\n\t\t osgi/state folders in bundles configuration directory.\n'
printf "project-path \t Path to Liferay Project directory.\n"
printf "dxp \t Allow command to run the ant setup-profile-dxp."
}
show_untracked_help() {
show_untracked_usage
printf '\n\nThese are optionals commands used in various situations:\n'
printf 'path \t Path to portal-setup-wizard.properties in bundles\n\t\t configuration directory.\n'
printf "dxp \t Allow command to run the ant setup-profile-dxp."
}
run_database() {
printf 'Starting database clean up'
sleep .5
printf '.'
sleep .5
printf '.'
sleep .5
printf '.'
sleep .5
printf '\n'
printf 'Creating SQL file temporary as temp_sql.sql to run it...\n'
printf 'DROP DATABASE %s; CREATE DATABASE %s;' "$name_db" "$name_db" >temp_sql.sql
printf 'Running the SQL file in MySQL instance...\n'
output=$(docker exec -i $container mysql --login-path=local <temp_sql.sql 2>&1)
if [ $output ]; then
if [[ $output == *"Warning"* ]]; then
rm temp_sql.sql
printf "\nApparently you didn't create a login-path for running MySQL script, try run this before run this script: \n\n"
printf "First, run this command:\n"
printf "docker exec -it %s mysql bash -l" "$container"
printf "\n\nSecond, run this command, already inside the docker instance:\n"
printf "mysql_config_editor set --login-path=local --host=localhost --user=username --password"
printf "\n\nThe password that will be asked is the same that you set when create the MySQL instance."
exit 1
else
rm temp_sql.sql
echo $output
exit 1
fi
fi
printf 'Removing the temporary SQL file...\n'
rm temp_sql.sql
printf 'The database has been successfully cleaned!\n\n\n'
}
run_tomcat() {
printf 'Starting tomcat clean up'
sleep .5
printf '.'
sleep .5
printf '.'
sleep .5
printf '.'
sleep .5
printf '\n'
if [ -f "$wizard_path" ]; then
dir="$(dirname "$wizard_path")"
parent_dir="$(dirname "$dir")"
filename="$(basename "$wizard_path")"
if [ "$only_cache" = true ]; then
printf 'Removing cache directories...\n'
rm -rf "$dir/data $dir/elasticsearch* $dir/osgi/state $dir/tomcat-*/temp $dir/tomcat-*/work"
printf 'The tomcat has been successfully cleaned!\n\n\n'
else
printf 'Moving portal-setup-wizard.properties to keep this file...\n'
mv $wizard_path "$parent_dir/$filename"
printf 'Removing the bundles directory...\n'
rm -rf $dir
printf 'Create a empty bundles directory...\n'
mkdir $dir
printf 'Moving portal-setup-wizard.properties to empty directory...\n'
mv "$parent_dir/$filename" $wizard_path
printf 'The tomcat has been successfully cleaned!\n\n\n'
fi
else
printf "portal-setup-wizard.properties doesn't exists."
exit 1
fi
}
run_untracked() {
printf 'Starting untracked clean up'
sleep .5
printf '.'
sleep .5
printf '.'
sleep .5
printf '.'
sleep .5
printf '\n'
if [ -f "$me_path" ]; then
dir="$(dirname "$me_path")"
parent_dir="$(dirname "$dir")"
filename="$(basename "$me_path")"
project_path=$dir
printf 'Moving app.server.me.properties to keep this file...\n'
mv $me_path "$parent_dir/$filename"
printf 'Running git clean -dfx to remove untracked files...\n\n'
git -C $dir clean -dfx
printf 'Moving app.server.me.properties to your directory...\n'
mv "$parent_dir/$filename" $me_path
printf 'The untracked has been successfully cleaned!\n\n\n'
else
printf "app.server.me.properties doesn't exists."
exit 1
fi
}
run_ant() {
printf 'Running ant steps'
sleep .5
printf '.'
sleep .5
printf '.'
sleep .5
printf '.'
sleep .5
printf '\n'
cd $project_path
printf 'Running ant clean...\n\n'
ant clean
if [ "$dxp" = true ]; then
printf '\n\nRunning ant setup-profile-dxp...\n\n'
ant setup-profile-dxp
fi
printf '\n\nRunning ant all...\n\n'
ant all
cd -
}
while :; do
case $1 in
--all | -t | --tomcat | -d | --database | -u | --untracked)
if [ -z "$command" ]; then
command=$1
else
case $command in
--all)
show_all_help >&2
exit
;;
-d | --database)
show_database_help >&2
exit
;;
-t | --tomcat)
show_tomcat_help >&2
exit
;;
-u | --untracked)
show_untracked_help >&2
exit
;;
esac
fi
;;
-c | --container)
case $command in
--all | -d | --database)
if [[ "$2" && ! "$2" =~ ^- ]]; then
container=$2
shift
else
printf "ERROR: '%s' requires a string argument.\n" "$1" >&2
exit 1
fi
;;
-t | --tomcat)
show_tomcat_help >&2
exit
;;
-u | --untracked)
show_untracked_help >&2
exit
;;
*)
show_basic_help >&2
exit
;;
esac
;;
--name)
case $command in
--all | -d | --database)
if [[ "$2" && ! "$2" =~ ^- ]]; then
name_db=$2
shift
else
printf "ERROR: '%s' requires a string argument.\n" "$command" >&2
exit 1
fi
;;
-t | --tomcat)
show_tomcat_help >&2
exit
;;
-u | --untracked)
show_untracked_help >&2
exit
;;
*)
show_basic_help >&2
exit
;;
esac
;;
--only-cache)
case $command in
--all | -t | --tomcat)
only_cache=true
;;
-d | --database)
show_database_help >&2
exit
;;
-u | --untracked)
show_untracked_help >&2
exit
;;
*)
show_basic_help >&2
exit
;;
esac
;;
--wizard-path)
case $command in
--all)
if [[ "$2" && ! "$2" =~ ^- ]]; then
wizard_path=$2
shift
else
printf "ERROR: '%s' requires a argument.\n" "$command" >&2
exit 1
fi
;;
-d | --database)
show_database_help >&2
exit
;;
-t | --tomcat)
show_tomcat_help >&2
exit
;;
-u | --untracked)
show_untracked_help >&2
exit
;;
*)
show_basic_help >&2
exit
;;
esac
;;
--me-path)
case $command in
--all)
if [[ "$2" && ! "$2" =~ ^- ]]; then
me_path=$2
shift
else
printf "ERROR: '%s' requires a argument.\n" "$command" >&2
exit 1
fi
;;
-d | --database)
show_database_help >&2
exit
;;
-t | --tomcat)
show_tomcat_help >&2
exit
;;
-u | --untracked)
show_untracked_help >&2
exit
;;
*)
show_basic_help >&2
exit
;;
esac
;;
-p | --path)
case $command in
-t | --tomcat)
if [[ "$2" && ! "$2" =~ ^- ]]; then
wizard_path=$2
shift
else
printf "ERROR: '%s' requires a argument.\n" "$command" >&2
exit 1
fi
;;
-u | --untracked)
if [[ "$2" && ! "$2" =~ ^- ]]; then
me_path=$2
shift
else
printf "ERROR: '%s' requires a argument.\n" "$command" >&2
exit 1
fi
;;
-d | --database)
show_database_help >&2
exit
;;
--all)
show_all_help >&2
exit
;;
*)
show_basic_help >&2
exit
;;
esac
;;
--project-path)
case $command in
--all | -t | --tomcat)
if [[ "$2" && ! "$2" =~ ^- ]]; then
project_path=$2
shift
else
printf "ERROR: '%s' requires a argument.\n" "$command" >&2
exit 1
fi
;;
-d | --database)
show_database_help >&2
exit
;;
-u | --untracked)
show_untracked_help >&2
exit
;;
--all)
show_all_help >&2
exit
;;
*)
show_basic_help >&2
exit
;;
esac
;;
--dxp)
case $command in
--all | -t | --tomcat | -u | --untracked)
dxp=true
;;
-d | --database)
show_database_help >&2
exit
;;
*)
show_basic_help >&2
exit
;;
esac
;;
-h | --help)
show_help=true
;;
*)
break
;;
esac
shift
done
if [ -z "$command" ]; then
show_basic_help
else
case $command in
--all)
if [ "$show_help" = true ]; then
show_all_help
else
run_database && run_untracked && run_tomcat && run_ant
fi
exit
;;
-d | --database)
if [ "$show_help" = true ]; then
show_database_help
else
run_database
fi
exit
;;
-t | --tomcat)
if [ "$show_help" = true ]; then
show_tomcat_help
else
run_tomcat
if [ "$only_cache" = false ]; then
run_ant
fi
fi
exit
;;
-u | --untracked)
if [ "$show_help" = true ]; then
show_untracked_help
else
run_untracked && run_ant
fi
exit
;;
esac
fi