This repository has been archived by the owner on Mar 18, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
init.sh
executable file
·151 lines (128 loc) · 3.64 KB
/
init.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
#!/usr/bin/env sh
# MIT License
#
# Copyright (c) 2022-2023 Carlo Corradini
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# Current directory
# shellcheck disable=SC1007
DIRNAME=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
# Load commons
# shellcheck source=./__commons.sh
. "$DIRNAME/__commons.sh"
# ================
# CONFIGURATION
# ================
# Root directory
ROOT_DIR="$(readlink -f "$DIRNAME/..")"
# ================
# FUNCTIONS
# ================
# Show help message
show_help() {
cat << EOF
Usage: $(basename "$0") [--help]
$HELP_COMMONS_USAGE
reCluster initialization script.
Options:
--help Show this help message and exit
$HELP_COMMONS_OPTIONS
EOF
}
# Download inline script
download_inline_script() {
_script_url="https://raw.githubusercontent.com/carlocorradini/inline/main/inline.sh"
_script_file="$DIRNAME/inline.sh"
INFO "Downloading '$_script_url'"
download "$_script_file" "$_script_url"
DEBUG "Setting 'execute' permission to '$_script_file'"
chmod u+x "$_script_file"
}
# Server environment
server_env() {
_env_example_file="$ROOT_DIR/server/.env.example"
_env_file="$ROOT_DIR/server/.env"
INFO "Copying server environment file '$_env_example_file' to '$_env_file'"
cp --force "$_env_example_file" "$_env_file"
}
# Server certificates
server_certs() {
_certs_script="$DIRNAME/certs.sh"
_certs_dir="$ROOT_DIR/server/certs"
[ ! -d "$_certs_dir" ] || {
DEBUG "Removing old certificates directory '$_certs_dir'"
rm -rf "$_certs_dir"
}
INFO "Generating server certificates"
$_certs_script --out-dir "$_certs_dir"
}
# Install dependencies
install_dependencies() {
INFO "Installing dependencies"
DEBUG "Installing dependencies"
npm --prefix "$ROOT_DIR" ci
DEBUG "Installing server dependencies"
npm --prefix "$ROOT_DIR/server" ci
}
################################################################################################################################
# Parse command line arguments
# @param $@ Arguments
parse_args() {
while [ $# -gt 0 ]; do
# Number of shift
_shifts=1
case $1 in
--help)
# Display help message and exit
show_help
exit 0
;;
*)
# Commons
parse_args_commons "$@"
_shifts=$RETVAL
;;
esac
# Shift arguments
while [ "$_shifts" -gt 0 ]; do
shift
_shifts=$((_shifts = _shifts - 1))
done
done
}
# Verify system
verify_system() {
assert_cmd npm
assert_downloader
}
# Initialization
init() {
download_inline_script
server_env
server_certs
install_dependencies
}
# ================
# MAIN
# ================
{
parse_args "$@"
verify_system
init
}