-
Notifications
You must be signed in to change notification settings - Fork 83
/
install.sh
executable file
·430 lines (336 loc) · 10.8 KB
/
install.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
#!/bin/bash
set -e
###################################################
# Variable definitions
###################################################
APT_DEPENDENCIES=(
make # cook
inkscape # cook
ffmpeg # cook
flac # cook
fdkaac # cook
vorbis-tools # cook
opus-tools # cook
zip # cook
unzip # cook
lsb-release # redis
curl # redis
gpg # redis
postgresql # web
sed # install
coreutils # install
build-essential # install
)
# Get the directory of the script being executed
# this lets us call the function from anywhere and it will work
craig_dir=$(dirname "$(realpath "$0")")
###################################################
# Function definitions
###################################################
usage() {
cat <<EOS
Install Craig for local development
Usage: install.sh [options]
options:
-h, --help Display this message.
Please modify file 'install_config' located in the main directory of Craig with
values for the Discord bot environment variables
- DISCORD_BOT_TOKEN
- DISCORD_APP_ID
- CLIENT_ID
- CLIENT_SECRET
- DEVELOPMENT_GUILD_ID (optional)
This script will prompt for sudo password so that it can automatically install
packages and configure PostgreSQL.
Various steps are required to run local instances of Craig.
The steps are summarized below:
1) Install apt and react packages
2) Start Redis
3) Start PostgreSQL
4) Config environment
5) Configure react and yarn
6) Build audio processing utilities
7) Start application
If all steps are successfully ran, you can monitor the application using the 'pm2' utility:
pm2 monit
EOS
exit "${1:-0}"
}
warning() {
echo "[Craig][Warning]: $1"
}
error() {
echo "[Craig][Error]: $1" >&2
}
info() {
echo "[Craig][Info]: $1"
}
install_apt_packages() {
info "Updating and upgrading apt packages..."
sudo apt-get update
sudo apt-get -y upgrade
info "Installing apt dependencies..."
for package in "${APT_DEPENDENCIES[@]}"
do
sudo apt-get -y install "$package"
done
# Add redis repository to apt index and install it
# for more info, see: https://redis.io/docs/install/install-redis/install-redis-on-linux/
curl -fsSL https://packages.redis.io/gpg | sudo gpg --yes --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
sudo apt-get update || true
sudo apt-get -y install redis
}
install_node() {
# Install and run node (must come before npm install because npm is included with node)
# we have to source nvm first otherwise in this non-interactive script it will not be available
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
# There is a version error raised somewhere in "nvm.sh"
# because of set -e at the top of this script, we need to add the || true
source ~/.nvm/nvm.sh || true
nvm install $NODE_VERSION
nvm use $NODE_VERSION
# Install yarn globally to avoid creating package-lock.json file
npm install -g yarn
npm install -g pm2
}
start_redis() {
local start_time_s
local current_time_s
# otherwise 'redis-server' will not be found if this function
# is ran separately
source ~/.nvm/nvm.sh || true
nvm use $NODE_VERSION
# start redis and check if it is running, timeout if it hasn't started
info "Starting Redis server..."
if ! redis-cli ping | grep -q "PONG"
then
sudo systemctl enable --now redis-server # is disabled by default
start_time_s=$(date +%s)
while ! redis-cli ping | grep -q "PONG"
do
current_time_s=$(date +%s)
sleep 1 # otherwise we get a bunch of connection refused errors
if [[ $current_time_s-$start_time_s -ge $REDIS_START_TIMEOUT_S ]]
then
error "Redis server is not running or not accepting connections"
info "Make sure Redis was successfully installed and rerun this script"
info "You can also try increasing the REDIS_START_TIMEOUT_S value (currently $REDIS_START_TIMEOUT_S seconds)"
exit 1
fi
done
fi
}
start_postgresql() {
local start_time_s
local current_time_s
info "Starting PostgreSQL server..."
if ! pg_isready
then
sudo systemctl enable --now postgresql # is enabled by default
start_time_s=$(date +%s)
while ! pg_isready
do
current_time_s=$(date +%s)
sleep 1 # otherwise we get a bunch of connection refused errors
if [[ $current_time_s-$start_time_s -ge $POSTGRESQL_START_TIMEOUT_S ]]
then
error "PostgreSQL server is not running or not accepting connections"
info "Make sure PostgreSQL was successfully installed and rerun this script"
info "You can also try increasing the POSTGRESQL_START_TIMEOUT_S value (currently $POSTGRESQL_START_TIMEOUT_S seconds)"
exit 1
fi
done
fi
# create postgreSQL database if it doesn't already exist
if sudo -u postgres -i psql -lqt | cut -d \| -f 1 | grep -qw "$DATABASE_NAME"
then
info "PostgreSQL database '$DATABASE_NAME' already exists."
else
# we need to be the postgres superuser to create a db
# -i to avoid the "could not change directory to '...': Permission denied message"
sudo -u postgres -i createdb $DATABASE_NAME
fi
# Don't know if this is strictly needed, but add user to run this database
# Check if user exists
if ! sudo -u postgres -i psql -t -c '\du' | cut -d \| -f 1 | grep -qw "$POSTGRESQL_USER"
then
# Create user if it doesn't exist
sudo -u postgres -i psql -c "CREATE USER $POSTGRESQL_USER WITH PASSWORD '$POSTGRESQL_PASSWORD';"
else
info "PostgreSQL user '$POSTGRESQL_USER' already exists."
fi
sudo -u postgres -i psql -c "GRANT ALL PRIVILEGES ON DATABASE $DATABASE_NAME TO $POSTGRESQL_USER;"
sudo -u postgres -i psql -c "GRANT ALL ON SCHEMA public TO $POSTGRESQL_USER;"
sudo -u postgres -i psql -c "GRANT USAGE ON SCHEMA public TO $POSTGRESQL_USER;"
sudo -u postgres -i psql -c "ALTER DATABASE $DATABASE_NAME OWNER TO $POSTGRESQL_USER;"
sudo -u postgres -i psql -c "\l" # unnecessary but just for debugging
}
create_env_file() {
local output_file="$1"
local variable_names=("${@:2}")
# recreate if it already exists
> "$output_file"
# output the name of the env variable and its value
for var_name in "${variable_names[@]}"; do
echo "$var_name=${!var_name}" >> "$output_file"
done
}
config_env() {
local env_names
info "Configuring environment..."
env_names=(
"DISCORD_BOT_TOKEN"
"DISCORD_APP_ID"
"DEVELOPMENT_GUILD_ID"
"DATABASE_URL"
)
create_env_file "$craig_dir/.env" "${env_names[@]}"
env_names=(
"CLIENT_ID"
"CLIENT_SECRET"
"PATREON_CLIENT_ID"
"PATREON_CLIENT_SECRET"
"PATRON_TIER_MAP"
"PATREON_WEBHOOK_SECRET"
"GOOGLE_CLIENT_ID"
"GOOGLE_CLIENT_SECRET"
"MICROSOFT_CLIENT_ID"
"MICROSOFT_CLIENT_SECRET"
"DROPBOX_CLIENT_ID"
"DROPBOX_CLIENT_SECRET"
"APP_URI"
"JWT_SECRET"
)
create_env_file "$craig_dir/apps/dashboard/.env" "${env_names[@]}"
env_names=(
"API_PORT"
"API_HOMEPAGE"
"ENNUIZEL_BASE"
"TRUST_PROXY"
"SENTRY_DSN"
"SENTRY_HOST"
"SENTRY_SAMPLE_RATE"
"SENTRY_DSN_API"
"SENTRY_ENV"
"SENTRY_SAMPLE_RATE_API"
"INFLUX_URL"
"INFLUX_TOKEN"
"INFLUX_ORG"
"INFLUX_BUCKET"
"SERVER_NAME"
"REDIS_HOST"
"REDIS_PORT"
)
create_env_file "$craig_dir/apps/download/.env" "${env_names[@]}"
}
config_react(){
info "Configuring react..."
cp "$craig_dir/apps/bot/config/_default.js" "$craig_dir/apps/bot/config/default.js"
cp "$craig_dir/apps/tasks/config/_default.js" "$craig_dir/apps/tasks/config/default.js"
# not very elegant, but here's some sed magic in order to update the javascript file with the required values
# we are regexing the following pattern and replacing the 2nd and 4th capture group
# with the appropiate environment values
#
# ----------------------------
# dexare: {
# // Bot token
# token: '',
# // Application ID
# applicationID: '',
# ----------------------------
sed -z -E -i "s/(dexare:.*token:\s*)('')(.*applicationID:\s*)('')/\
\1'$DISCORD_BOT_TOKEN'\3'$DISCORD_APP_ID'/"\
"$craig_dir/apps/bot/config/default.js"
# here's some more sed magic. this task isn't needed for local builds
# we are regexing the following pattern and replacing the 2nd capture
# group with the ignored task
#
# -------------------------------
# tasks: {
# ignore: []
# -------------------------------
sed -z -E -i "s/(tasks:.*ignore:\s*)(\[\s*\])/\
\1[\"refreshPatrons\"]/"\
"$craig_dir/apps/tasks/config/default.js"
}
config_yarn(){
info "Configuring yarn..."
# install dependencies
yarn install
# config prisma
yarn prisma:generate
yarn prisma:deploy
# build
yarn run build
# sync Discord slash commands globally
yarn run sync
# only sync Discord slash commands to the guild
# specified by DEVELOPMENT_GUILD_ID in install.config
# yarn run sync:dev
}
start_app(){
# otherwise 'pm2' will not be found if this function
# is ran separately
source ~/.nvm/nvm.sh || true
nvm use $NODE_VERSION
info "Starting Craig..."
cd "$craig_dir/apps/bot" && pm2 start "ecosystem.config.js"
cd "$craig_dir/apps/dashboard" && pm2 start "ecosystem.config.js"
cd "$craig_dir/apps/download" && pm2 start "ecosystem.config.js"
cd "$craig_dir/apps/tasks" && pm2 start "ecosystem.config.js"
pm2 save
cd "$craig_dir"
}
config_cook(){
info "Building cook..."
mkdir -p "$craig_dir/rec"
"$craig_dir/scripts/buildCook.sh"
"$craig_dir/scripts/downloadCookBuilds.sh"
}
###################################################
# Main script commands
###################################################
{
# Parse command-line options
while [[ $# -gt 0 ]]
do
case "$1" in
-h | --help)
usage ;;
*)
warning "Unrecognized option: '$1'"
usage 1
;;
esac
done
# Prompt for sudo up front for installing
# packages and configuring PostgreSQL
info "This script requires sudo privileges to run"
if ! sudo -v; then
error "Sudo password entry was cancelled or incorrect."
exit 1
fi
source "$craig_dir/install.config"
# check if user is using linux
OS="$(uname)"
if [[ "${OS}" != "Linux" ]]
then
error "Craig is only supported on Linux."
exit 1
fi
info "Now installing Craig..."
info "Start time: $(date +%H:%M:%S)"
install_apt_packages
install_node
start_redis
start_postgresql
config_env
config_react
config_yarn
config_cook
start_app
info "Craig installation finished..."
info "End time: $(date +%H:%M:%S)"
info "Log output: $craig_dir/install.log"
} 2>&1 | tee "$craig_dir/install.log"