-
Notifications
You must be signed in to change notification settings - Fork 105
/
functions.sh
645 lines (566 loc) · 27.4 KB
/
functions.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
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
#!/bin/bash
# Startup script for this OTRS container.
#
# The script by default loads a fresh OTRS install ready to be customized through
# the admin web interface.
#
# If the environment variable OTRS_INSTALL is set to yes, then the default web
# installer can be run from localhost/otrs/installer.pl.
#
# If the environment variable OTRS_INSTALL="restore", then the configuration backup
# files will be loaded from ${OTRS_ROOT}/backups. This means you need to build
# the image with the backup files (sql and Confg.pm) you want to use, or, mount a
# host volume to map where you store the backup files to ${OTRS_ROOT}/backups.
#
# To change the default database and admin interface user passwords you can define
# the following env vars too:
# - OTRS_DB_PASSWORD to set the database password
# - OTRS_ROOT_PASSWORD to set the admin user 'root@localhost' password.
#
. /util_functions.sh
. /otrs_ascii_logo.sh
function enable_debug_mode () {
print_info "Preparing debug mode..."
yum install -y telnet dig
[ $? -gt 0 ] && print_error "ERROR: Could not intall debug tools." && exit 1
print_info "Done."
env
set -x
}
if [ "$OTRS_DEBUG" == "yes" ];then
enable_debug_mode
fi
function random_string() {
echo `cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 8 | head -n 1`
}
function apply_docker_secrets() {
print_info "Apply docker secrets..."
if [ -f $OTRS_SECRETS_FILE ]; then
. $OTRS_SECRETS_FILE
return 0
else
print_warning "Secrets file $OTRS_SECRETS_FILE not found"
fi
}
#Default configuration values
DEFAULT_OTRS_ROOT_PASSWORD="changeme"
DEFAULT_OTRS_DB_PASSWORD="changeme"
DEFAULT_MYSQL_ROOT_PASSWORD="changeme"
DEFAULT_OTRS_DB_NAME="otrs"
DEFAULT_OTRS_DB_USER="otrs"
DEFAULT_MYSQL_ROOT_USER="root"
DEFAULT_OTRS_DB_HOST="mariadb"
DEFAULT_OTRS_DB_PORT=3306
DEFAULT_OTRS_BACKUP_TIME="0 4 * * *"
DEFAULT_BACKUP_SCRIPT="/otrs_backup.sh"
DEFAULT_OTRS_CRON_BACKUP_SCRIPT="/etc/cron.d/otrs_backup"
OTRS_BACKUP_DIR="/var/otrs/backups"
OTRS_CONFIG_DIR="${OTRS_ROOT}Kernel/"
OTRS_CONFIG_FILE="${OTRS_CONFIG_DIR}Config.pm"
OTRS_CONFIG_MOUNT_DIR="/Kernel"
WAIT_TIMEOUT=2
OTRS_ASCII_COLOR_BLUE="38;5;31"
OTRS_ASCII_COLOR_RED="31"
OTRS_BACKUP_SCRIPT="${OTRS_BACKUP_SCRIPT:-/otrs_backup.sh}"
OTRS_CRON_BACKUP_SCRIPT="${OTRS_CRON_BACKUP_SCRIPT:-/etc/cron.d/otrs_backup}"
OTRS_ARTICLE_STORAGE_TYPE="${OTRS_ARTICLE_STORAGE_TYPE:-ArticleStorageDB}"
OTRS_UPGRADE="${OTRS_UPGRADE:-no}"
OTRS_UPGRADE_BACKUP="${OTRS_UPGRADE_BACKUP:-yes}"
OTRS_ADDONS_PATH="${OTRS_ROOT}/addons/"
INSTALLED_ADDONS_DIR="${OTRS_ADDONS_PATH}/installed"
OTRS_UPGRADE_SQL_FILES="${OTRS_ROOT}/db_upgrade"
OTRS_UPGRADE_XML_FILES="${OTRS_UPGRADE_XML_FILES:-no}"
OTRS_DISABLE_EMAIL_FETCH="${OTRS_DISABLE_EMAIL_FETCH:-no}"
OTRS_SET_PERMISSIONS="${OTRS_SET_PERMISSIONS:-yes}"
OTRS_ALLOW_NOT_VERIFIED_PACKAGES="${OTRS_ALLOW_NOT_VERIFIED_PACKAGES:-no}"
_MINOR_VERSION_UPGRADE=false
[ ! -z "${OTRS_SECRETS_FILE}" ] && apply_docker_secrets
[ -z "${OTRS_INSTALL}" ] && OTRS_INSTALL="no"
[ -z "${OTRS_DB_NAME}" ] && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mOTRS_DB_NAME\e[0m not set, setting value to \e[${OTRS_ASCII_COLOR_RED}m${DEFAULT_OTRS_DB_NAME}\e[0m" && OTRS_DB_NAME=${DEFAULT_OTRS_DB_NAME}
[ -z "${OTRS_DB_USER}" ] && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mOTRS_DB_USER\e[0m not set, setting value to \e[${OTRS_ASCII_COLOR_RED}m${DEFAULT_OTRS_DB_USER}\e[0m" && OTRS_DB_USER=${DEFAULT_OTRS_DB_USER}
[ -z "${OTRS_DB_HOST}" ] && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mDOTRS_DB_HOST\e[0m not set, setting value to \e[${OTRS_ASCII_COLOR_RED}m${DEFAULT_OTRS_DB_HOST}\e[0m" && OTRS_DB_HOST=${DEFAULT_OTRS_DB_HOST}
[ -z "${OTRS_DB_PORT}" ] && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mOTRS_DB_PORT\e[0m not set, setting value to \e[${OTRS_ASCII_COLOR_RED}m${DEFAULT_OTRS_DB_PORT}\e[0m" && OTRS_DB_PORT=${DEFAULT_OTRS_DB_PORT}
[ -z "${SHOW_OTRS_LOGO}" ] && SHOW_OTRS_LOGO="yes"
[ -z "${OTRS_HOSTNAME}" ] && OTRS_HOSTNAME="otrs-`random_string`" && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mOTRS_HOSTNAME\e[0m not set, setting hostname to '${OTRS_HOSTNAME}'"
[ -z "${OTRS_DB_PASSWORD}" ] && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mOTRS_DB_PASSWORD\e[0m not set, setting password to \e[${OTRS_ASCII_COLOR_RED}m${DEFAULT_OTRS_DB_PASSWORD}\e[0m" && OTRS_DB_PASSWORD=${DEFAULT_OTRS_DB_PASSWORD}
[ -z "${OTRS_ROOT_PASSWORD}" ] && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mOTRS_ROOT_PASSWORD\e[0m not set, setting password to \e[${OTRS_ASCII_COLOR_RED}m${DEFAULT_OTRS_ROOT_PASSWORD}\e[0m" && OTRS_ROOT_PASSWORD=${DEFAULT_OTRS_ROOT_PASSWORD}
[ -z "${MYSQL_ROOT_PASSWORD}" ] && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mMYSQL_ROOT_PASSWORD\e[0m not set, setting password to \e[${OTRS_ASCII_COLOR_RED}m${DEFAULT_MYSQL_ROOT_PASSWORD}\e[0m" && MYSQL_ROOT_PASSWORD=${DEFAULT_MYSQL_ROOT_PASSWORD}
[ -z "${MYSQL_ROOT_USER}" ] && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mMYSQL_ROOT_USER\e[0m not set, setting user to \e[${OTRS_ASCII_COLOR_RED}m${DEFAULT_MYSQL_ROOT_USER}\e[0m" && MYSQL_ROOT_USER=${DEFAULT_MYSQL_ROOT_USER}
[ -z "${OTRS_BACKUP_TIME}" ] && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mOTRS_BACKUP_TIME\e[0m not set, setting value to \e[${OTRS_ASCII_COLOR_RED}m${DEFAULT_OTRS_BACKUP_TIME}\e[0m" && OTRS_BACKUP_TIME=${DEFAULT_OTRS_BACKUP_TIME}
[ ! -z "${OTRS_CRON_BACKUP_SCRIPT}" ] && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mSetting OTRS_CRON_BACKUP_SCRIPT\e[0m to \e[${OTRS_ASCII_COLOR_RED}m${OTRS_CRON_BACKUP_SCRIPT}\e[0m"
[ ! -z "${OTRS_ARTICLE_STORAGE_TYPE}" ] && print_info "\e[${OTRS_ASCII_COLOR_BLUE}mSetting OTRS_ARTICLE_STORAGE_TYPE\e[0m to \e[${OTRS_ASCII_COLOR_RED}m${OTRS_ARTICLE_STORAGE_TYPE}\e[0m"
mysqlcmd="mysql -u${MYSQL_ROOT_USER} -h ${OTRS_DB_HOST} -P ${OTRS_DB_PORT} -p${MYSQL_ROOT_PASSWORD} "
function wait_for_db() {
while [ ! "$(mysqladmin ping -h ${OTRS_DB_HOST} -P ${OTRS_DB_PORT} -u ${MYSQL_ROOT_USER} \
--password="${MYSQL_ROOT_PASSWORD}" --silent --connect_timeout=3)" ]; do
print_info "Database server is not available. Waiting ${WAIT_TIMEOUT} seconds..."
sleep ${WAIT_TIMEOUT}
done
print_info "Database server is up !"
}
function create_db() {
print_info "Creating OTRS database..."
$mysqlcmd -e "CREATE DATABASE IF NOT EXISTS ${OTRS_DB_NAME};"
[ $? -gt 0 ] && print_error "Couldn't create OTRS database !!" && exit 1
$mysqlcmd -e " GRANT ALL ON ${OTRS_DB_NAME}.* to '${OTRS_DB_USER}'@'%' identified by '${OTRS_DB_PASSWORD}'";
[ $? -gt 0 ] && print_error "Couldn't create database user !!" && exit 1
}
function restore_backup() {
[ -z $1 ] && print_error "OTRS_BACKUP_DATE not set." && exit 1
#Check if a host-mounted volume for configuration storage was added to this
#container
check_host_mount_dir
add_config_value "DatabaseUser" ${OTRS_DB_USER}
add_config_value "DatabasePw" ${OTRS_DB_PASSWORD} true
add_config_value "DatabaseHost" ${OTRS_DB_HOST}
add_config_value "DatabasePort" ${OTRS_DB_PORT}
add_config_value "Database" ${OTRS_DB_NAME}
#Check first that the backup file exists
restore_file="${OTRS_BACKUP_DIR}/${OTRS_BACKUP_DATE}"
if [ -f ${restore_file} ]; then
#Check file integrity
if (! tar tf ${restore_file} &> /dev/null) || (! tar xOf ${restore_file} &> /dev/null); then
print_error "Backup file is corrupt !!" && exit 1
fi
# Uncompress file
temp_dir=$(mktemp -d )
cd ${temp_dir}
tar zxvf ${restore_file}
[ $? -gt 0 ] && print_error "Could not uncompress main backup file !!" && exit 1
cd ..
restore_dir="$(ls -t ${temp_dir}|head -n1)"
elif [[ -d ${restore_file} ]]; then
restore_dir="${restore_file}/"
else
print_error "Backup file does not exist !!" && exit 1
fi
#As this is a restore, drop database first.
$mysqlcmd -e "use ${OTRS_DB_NAME}"
if [ $? -eq 0 ]; then
if [ "${OTRS_DROP_DATABASE}" == "yes" ]; then
print_info "\e[${OTRS_ASCII_COLOR_BLUE}mOTRS_DROP_DATABASE=\e[0m\e[${OTRS_ASCII_COLOR_RED}m${OTRS_DROP_DATABASE}\e[0m, Dropping existing database\n"
$mysqlcmd -e "drop database ${OTRS_DB_NAME}"
else
print_error "Couldn't load OTRS backup, databse already exists !!" && exit 1
fi
fi
create_db
#Make a copy of installed skins so they aren't overwritten by the backup.
tmpdir=`mktemp -d`
[ ! -z $OTRS_AGENT_SKIN ] && cp -rp ${SKINS_PATH}Agent $tmpdir/
[ ! -z $OTRS_CUSTOMER_SKIN ] && cp -rp ${SKINS_PATH}Customer $tmpdir/
restore_dir=${temp_dir}/${restore_dir}
${OTRS_ROOT}scripts/restore.pl -b ${restore_dir} -d ${OTRS_ROOT}
[ $? -gt 0 ] && print_error "Couldn't load OTRS backup !!" && exit 1
backup_version=`tar -xOf ${restore_dir}/Application.tar.gz ./RELEASE|grep -o 'VERSION = [^,]*' | cut -d '=' -f2 |tr -d '[[:space:]]'`
[ $? -gt 0 ] && print_error "Couldn't get installed OTRS version !!" && exit 1
OTRS_INSTALLED_VERSION=`echo $OTRS_VERSION|cut -d '-' -f1`
print_warning "OTRS version of backup being restored: \e[1;31m$backup_version\e[1;0m"
print_warning "OTRS version of this container: \e[1;31m$OTRS_INSTALLED_VERSION\e[1;0m"
check_version ${OTRS_INSTALLED_VERSION} $backup_version
if [ $? -eq 1 ]; then
print_warning "Backup version different than current OTRS version, fixing..."
#Update version on ${OTRS_ROOT}/RELEASE so it the website shows the correct version.
sed -i -r "s/(VERSION *= *).*/\1${OTRS_INSTALLED_VERSION}/" ${OTRS_ROOT}RELEASE
print_info "Done."
fi
#Restore configured password overwritten by restore
setup_otrs_config
#Copy back skins over restored files
[ ! -z ${OTRS_CUSTOMER_SKIN} ] && cp -rfp ${tmpdir}/* ${SKINS_PATH} && rm -fr ${tmpdir}
#Update the skin preferences in the users from the backup
set_users_skin
}
# return 0 if program version is equal or greater than check version
check_version() {
local version=$1 check=${2}
local winner=$(echo -e "$version\n$check" | sed '/^$/d' | sort -nr | head -1)
[[ "$winner" = "$version" ]] && return 0
return 1
}
function add_config_value() {
local key=${1}
local value=${2}
local mask=${3:-false}
if [ "${mask}" == true ]; then
print_value="**********"
else
print_value=${value}
fi
grep -qE \{\'\?${key}\'\?\} ${OTRS_CONFIG_FILE}
if [ $? -eq 0 ]
then
print_info "Updating configuration option \e[${OTRS_ASCII_COLOR_BLUE}m${key}\e[0m with value: \e[31m${print_value}\e[0m"
sed -i -r "s/($Self->\{*$key*\} *= *).*/\1\"${value}\";/" ${OTRS_CONFIG_FILE}
else
print_info "Adding configuration option \e[${OTRS_ASCII_COLOR_BLUE}m${key}\e[0m with value: \e[31m${print_value}\e[0m"
sed -i "/$Self->{Home} = '\/opt\/otrs';/a \
\$Self->{'${key}'} = '${value}';" ${OTRS_CONFIG_FILE}
fi
}
# Sets default configuration options on $OTRS_ROOT/Kernel/Config.pm. Options set
# here can't be modified via sysConfig later.
function setup_otrs_config() {
#Set database configuration
add_config_value "DatabaseUser" ${OTRS_DB_USER}
add_config_value "DatabasePw" ${OTRS_DB_PASSWORD} true
add_config_value "DatabaseHost" ${OTRS_DB_HOST}
add_config_value "DatabasePort" ${OTRS_DB_PORT}
add_config_value "Database" ${OTRS_DB_NAME}
#Set general configuration values
[ ! -z "${OTRS_LANGUAGE}" ] && add_config_value "DefaultLanguage" ${OTRS_LANGUAGE}
[ ! -z "${OTRS_TIMEZONE}" ] && add_config_value "OTRSTimeZone" ${OTRS_TIMEZONE} && add_config_value "UserDefaultTimeZone" ${OTRS_TIMEZONE}
add_config_value "FQDN" ${OTRS_HOSTNAME}
#Set email SMTP configuration
[ ! -z "${OTRS_SENDMAIL_MODULE}" ] && add_config_value "SendmailModule" "Kernel::System::Email::${OTRS_SENDMAIL_MODULE}"
[ ! -z "${OTRS_SMTP_SERVER}" ] && add_config_value "SendmailModule::Host" "${OTRS_SMTP_SERVER}"
[ ! -z "${OTRS_SMTP_PORT}" ] && add_config_value "SendmailModule::Port" "${OTRS_SMTP_PORT}"
[ ! -z "${OTRS_SMTP_USERNAME}" ] && add_config_value "SendmailModule::AuthUser" "${OTRS_SMTP_USERNAME}"
[ ! -z "${OTRS_SMTP_PASSWORD}" ] && add_config_value "SendmailModule::AuthPassword" "${OTRS_SMTP_PASSWORD}" true
add_config_value "SecureMode" "1"
# Configure automatic backups
setup_backup_cron
# Reinstall any existing addons
reinstall_modules
}
function load_defaults() {
local current_version_file="${OTRS_CONFIG_DIR}/current_version"
# Check if OTRS minor version changed and do a minor version upgrade
if [ -e ${current_version_file} ] && [ ${OTRS_UPGRADE} != "yes" ]; then
current_version=$(cat ${current_version_file})
new_version=$(echo ${OTRS_VERSION}|cut -d'-' -f1)
print_info "Current installed OTRS version: \e[1;31m$current_version\e[1;0m"
print_info "Starting up container with OTRS version: \e[1;31m$new_version\e[1;0m"
check_version ${current_version} ${new_version}
if [ $? -eq 1 ]; then
print_info "Doing minor version upgrade from \e[${OTRS_ASCII_COLOR_BLUE}m${current_version}\e[0m to \e[${OTRS_ASCII_COLOR_RED}m${new_version}\e[0m"
upgrade_minor_version
upgrade_modules
_MINOR_VERSION_UPGRADE=true
echo ${new_version} > ${current_version_file}
fi
else
current_version=$(cat ${OTRS_ROOT}/RELEASE |grep VERSION|cut -d'=' -f2)
current_version="${current_version## }"
echo ${current_version} > ${OTRS_ROOT}/current_version
fi
#Check if a host-mounted volume for configuration storage was added to this
#container
check_host_mount_dir
check_custom_skins_dir
#Setup OTRS configuration
setup_otrs_config
#Check if database doesn't exists yet (it could if this is a container redeploy)
$mysqlcmd -e "use ${OTRS_DB_NAME}"
if [ $? -gt 0 ]; then
create_db
#Check that a backup isn't being restored
if [ "$OTRS_INSTALL" == "no" ]; then
print_info "Loading default db schemas..."
$mysqlcmd ${OTRS_DB_NAME} < ${OTRS_ROOT}scripts/database/otrs-schema.mysql.sql
[ $? -gt 0 ] && print_error "\n\e[1;31mERROR:\e[0m Couldn't load otrs-schema.mysql.sql schema !!\n" && exit 1
print_info "Loading initial db inserts..."
$mysqlcmd ${OTRS_DB_NAME} < ${OTRS_ROOT}scripts/database/otrs-initial_insert.mysql.sql
[ $? -gt 0 ] && print_error "\n\e[1;31mERROR:\e[0m Couldn't load OTRS database initial inserts !!\n" && exit 1
print_info "Loading initial schema constraints..."
$mysqlcmd ${OTRS_DB_NAME} < ${OTRS_ROOT}scripts/database/otrs-schema-post.mysql.sql
[ $? -gt 0 ] && print_error "\n\e[1;31mERROR:\e[0m Couldn't load otrs-schema-post.mysql.sql schema !!\n" && exit 1
fi
else
print_warning "otrs database already exists, Ok."
fi
}
function set_ticket_counter() {
if [ ! -z "${OTRS_TICKET_COUNTER}" ]; then
print_info "Setting the start of the ticket counter to: \e[${OTRS_ASCII_COLOR_BLUE}m'${OTRS_TICKET_COUNTER}'\e[0m"
echo "${OTRS_TICKET_COUNTER}" > ${OTRS_ROOT}var/log/TicketCounter.log
fi
if [ ! -z $OTRS_NUMBER_GENERATOR ]; then
add_config_value "Ticket::NumberGenerator" "Kernel::System::Ticket::Number::${OTRS_NUMBER_GENERATOR}"
fi
}
function set_skins() {
if [ ! -z ${OTRS_AGENT_SKIN} ]; then
add_config_value "Loader::Agent::DefaultSelectedSkin" ${OTRS_AGENT_SKIN}
print_info "Setting Agent interface custom logo..."
# Remove AgentLogo option to disable default logo so the skin one is picked up
sed -i '/AgentLogo/,/;/d' ${OTRS_CONFIG_DIR}/Config/Files/ZZZAAuto.pm
# Also disable default value of sysconfig so XML/Framework.xml AgentLogo is valid=0
$mysqlcmd -e "UPDATE sysconfig_default SET is_valid = 0 WHERE name = 'AgentLogo'" otrs
fi
[ ! -z ${OTRS_AGENT_SKIN} ] && add_config_value "Loader::Customer::SelectedSkin" ${OTRS_CUSTOMER_SKIN}
}
function set_users_skin() {
print_info "Updating default skin for users in backup..."
$mysqlcmd -e "UPDATE user_preferences SET preferences_value = '${OTRS_AGENT_SKIN}' WHERE preferences_key = 'UserSkin'" otrs
[ $? -gt 0 ] && print_error "Couldn't change default skin for existing users !!\n"
}
function check_host_mount_dir() {
#Copy the configuration from /Kernel (put there by the Dockerfile) to $OTRS_CONFIG_DIR
#to be able to use host-mounted volumes. copy only if ${OTRS_CONFIG_DIR} doesn't exist
if ([ "$(ls -A ${OTRS_CONFIG_MOUNT_DIR})" ] && [ ! "$(ls -A ${OTRS_CONFIG_DIR})" ]) || [ "${OTRS_UPGRADE}" == "yes" ] || [ ${_MINOR_VERSION_UPGRADE} == true ];
then
print_info "Found empty \e[${OTRS_ASCII_COLOR_BLUE}m${OTRS_CONFIG_DIR}\e[0m, copying default configuration to it..."
mkdir -p ${OTRS_CONFIG_DIR}
cp -rfp ${OTRS_CONFIG_MOUNT_DIR}/* ${OTRS_CONFIG_DIR}
if [ $? -eq 0 ];
then
print_info "Done."
else
print_error "Can't move OTRS configuration directory to ${OTRS_CONFIG_DIR}" && exit 1
fi
else
print_info "Found existing configuration directory, Ok."
fi
}
function check_custom_skins_dir() {
#Copy the default skins from /skins (put there by the Dockerfile) to $SKINS_PATH
#to be able to use host-mounted volumes.
print_info "Copying default skins..."
mkdir -p ${SKINS_PATH}
cp -rfp ${OTRS_SKINS_MOUNT_DIR}/* ${SKINS_PATH}
if [ $? -eq 0 ];
then
print_info "Done."
else
print_error "Can't copy default skins to ${SKINS_PATH}" && exit 1
fi
}
ERROR_CODE="ERROR"
OK_CODE="OK"
INFO_CODE="INFO"
WARN_CODE="WARNING"
function write_log () {
message="$1"
code="$2"
echo "$[ 1 + $[ RANDOM % 1000 ]]" >> ${BACKUP_LOG_FILE}
echo "Status=$code,Message=$message" >> ${BACKUP_LOG_FILE}
}
function reinstall_modules () {
if [ "${OTRS_UPGRADE}" != "yes" ]; then
print_info "Reinstalling OTRS addons..."
su -c "$OTRS_ROOT/bin/otrs.Console.pl Admin::Package::ReinstallAll > /dev/null 2>&1" -s /bin/bash otrs
if [ $? -gt 0 ]; then
print_error "Could not reinstall OTRS addons, try to do it manually with the Package Manager in the admin section of the web interface."
else
print_info "Done."
fi
fi
}
function upgrade_modules () {
print_info "Upgrading OTRS addons..."
su -c "$OTRS_ROOT/bin/otrs.Console.pl Admin::Package::UpgradeAll > /dev/null 2>&1" -s /bin/bash otrs
if [ $? -gt 0 ]; then
print_error "Could not upgrade OTRS addons, try to do it manually with the Package Manager in the admin section of the web interface."
else
print_info "Done."
fi
}
function install_modules () {
location=${1}
mkdir -p ${INSTALLED_ADDONS_DIR}
print_info "Installing OTRS addons..."
if [ "${location}" != "" ]; then
packages="$(ls ${location}/*.opm 2> /dev/null)"
if [ "${packages}" != "" ]; then
for i in ${packages}; do
print_info "Installing addon: ${i}"
su -c "$OTRS_ROOT/bin/otrs.Console.pl Admin::Package::Install ${i}> /dev/null 2>&1" -s /bin/bash otrs
if [ $? -gt 0 ]; then
print_error "Could not install OTRS addon: ${i}, try to do it manually with the Package Manager in the admin section of the web interface."
else
mv ${i} ${INSTALLED_ADDONS_DIR}
fi
done
print_info "Done."
else
print_info "No addons found to install."
fi
else
print_info "No directory with addons to install."
fi
}
# SIGTERM-handler
function term_handler () {
systemctl stop supervisord
pkill -SIGTERM anacron
su -c "${OTRS_ROOT}bin/otrs.Daemon.pl stop" -s /bin/bash otrs
exit 143; # 128 + 15 -- SIGTERM
}
function stop_all_services () {
print_info "Stopping all OTRS services..."
supervisorctl stop all
su -c "${OTRS_ROOT}/bin/Cron.sh stop" -s /bin/bash otrs
su -c "${OTRS_ROOT}/bin/otrs.Daemon.pl stop" -s /bin/bash otrs
}
function start_all_services () {
print_info "Starting all OTRS services..."
supervisorctl start all
su -c "${OTRS_ROOT}/bin/otrs.Daemon.pl start" -s /bin/bash otrs
su -c "${OTRS_ROOT}/bin/Cron.sh start" -s /bin/bash otrs
}
function fix_database_upgrade() {
print_info "[*] Running database pre-upgrade scripts..." | tee -a ${upgrade_log}
$mysqlcmd -e "use ${OTRS_DB_NAME}"
if [ $? -eq 0 ]; then
sql_files="$(ls ${OTRS_UPGRADE_SQL_FILES/*.sql})"
#Get all sql files and load them into the database
if [[ "${sql_files}" != "" ]]; then
for i in ${sql_files}; do
print_info "Loading SQL file: ${i}"
$mysqlcmd otrs < ${OTRS_UPGRADE_SQL_FILES}/${i} | tee -a ${upgrade_log}
if [ $? -gt 0 ]; then
print_error "Cannot load sql file: ${OTRS_UPGRADE_SQL_FILES}/${i}" | tee -a ${upgrade_log} && exit 1
fi
print_info "Done"
done
else
print_info "No additional SQL files to load were found."
fi
else
print_error "Database does not exist!" && exit 1
fi
}
function upgrade_minor_version() {
# Upgrade database
print_info "[*] Doing minor version upgrade, running DBUpdate-to-6.pl script..." | tee -a ${upgrade_log}
$mysqlcmd -e "use ${OTRS_DB_NAME}"
if [ $? -eq 0 ]; then
su -c "${OTRS_ROOT}/scripts/DBUpdate-to-6.pl --non-interactive" -s /bin/bash otrs | tee -a ${upgrade_log}
if [ $? -gt 0 ]; then
print_error "Cannot migrate database" | tee -a ${upgrade_log} && exit 1
fi
else
print_error "Database does not exist!" && exit 1
fi
}
function upgrade_database() {
# Upgrade database
print_info "[*] Doing database migration..." | tee -a ${upgrade_log}
$mysqlcmd -e "use ${OTRS_DB_NAME}"
if [ $? -eq 0 ]; then
su -c "/opt/otrs//scripts/DBUpdate-to-6.pl" -s /bin/bash otrs | tee -a ${upgrade_log}
if [ $? -gt 0 ]; then
print_error "Cannot migrate database" | tee -a ${upgrade_log} && exit 1
fi
grep -q "Not possible to complete migration" ${upgrade_log}
if [ $? -eq 0 ]; then
print_error "[2] Cannot migrate database" | tee -a ${upgrade_log}
print_error "Please connect to the databse container and fix the issues\
listed in the previous error message and follow the provided instructions\
to fix them.\n\nWhen you have run the fixes restart the upgrade process.\n\n" | tee -a ${upgrade_log}
exit 1
fi
else
print_error "Database does not exist!" && exit 1
fi
}
function upgrade () {
print_warning "\e[${OTRS_ASCII_COLOR_BLUE}m****************************************************************************\e[0m\n"
print_warning "\t\t\t\t\e[${OTRS_ASCII_COLOR_RED}m OTRS MAJOR VERSION UPGRADE\e[0m\n"
print_warning "\t\tPress ctrl-C if you want to CANCEL !! (you have 10 seconds)\n"
print_warning "\e[${OTRS_ASCII_COLOR_BLUE}m****************************************************************************\e[0m\n"
sleep 10
local version_blacklist="5.0.91\n5.0.92"
local OTRS_PKG_REPO="https://ftp.otrs.org/pub/otrs/packages/"
local upgrade_log="/tmp/upgrade.log"
tmp_dir="/tmp/upgrade/"
mkdir -p ${tmp_dir}
echo -e ${version_blacklist} > ${tmp_dir}/blacklist.txt
print_info "Staring OTRS major version upgrade to version \e[${OTRS_ASCII_COLOR_BLUE}m${OTRS_VERSION}\e[0m...\n" | tee -a ${upgrade_log}
# Update configuration files
check_host_mount_dir
#Setup OTRS configuration
setup_otrs_config
# Backup
if [ "${OTRS_UPGRADE_BACKUP}" == "yes" ]; then
print_info "[*] Backing up container prior to upgrade..." | tee -a ${upgrade_log}
/otrs_backup.sh &> ${upgrade_log}
if [ ! $? -eq 143 ]; then
print_error "Cannot create backup" | tee -a ${upgrade_log} && exit 1
fi
fi
#Update installed packages
print_info "[*] Updating installed packages..." | tee -a ${upgrade_log}
upgrade_modules
if [[ "${OTRS_UPGRADE_XML_FILES}" == "yes" ]]; then
# Upgrade XML config files
print_info "[*] Converting configuration files to new XML format ..." | tee -a ${upgrade_log}
su -c "${OTRS_ROOT}/bin/otrs.Console.pl Dev::Tools::Migrate::ConfigXMLStructure --source-directory ${OTRS_ROOT}/Kernel/Config/Files" -s /bin/bash otrs &> ${upgrade_log}
if [ $? -gt 0 ]; then
print_warning "Cannot convert configuration files" | tee -a ${upgrade_log}
fi
fi
# Run any sql file to fix any issues before starting the update. For ex the
# sql commands that are asked to be run by the db upgrade script bellow,
# which are needed to be be executed before the upgrade to be able to complete
# the uupgrade.
fix_database_upgrade
# Run db upgrade script
upgrade_database
rm -fr ${tmp_dir}
print_info "[*] Major version upgrade finished !!" | tee -a ${upgrade_log}
}
function setup_backup_cron() {
if [ "${OTRS_BACKUP_TIME}" != "" ] && [ "${OTRS_BACKUP_TIME}" != "disable" ]; then
# Store in a file env vars so they can be sourced from the backup cronjob
printenv | sed 's/^\(.*\)$/export \1/g' | grep -E "^export OTRS_" > /.backup.env
# Remove string quotes
OTRS_BACKUP_TIME="${OTRS_BACKUP_TIME%\"}"
OTRS_BACKUP_TIME="${OTRS_BACKUP_TIME#\"}"
# Set cron entry
print_info "Setting backup time to: ${OTRS_BACKUP_TIME}"
if [ ! -f ${OTRS_BACKUP_SCRIPT} ]; then
print_warning "Custom backup script: ${OTRS_BACKUP_SCRIPT} does not exist, using default one: ${DEFAULT_BACKUP_SCRIPT}"
OTRS_BACKUP_SCRIPT=${DEFAULT_BACKUP_SCRIPT}
fi
if [ ! -f ${OTRS_CRON_BACKUP_SCRIPT} ]; then
print_warning "Custom cron script: ${OTRS_CRON_BACKUP_SCRIPT} does not exist, creating default one: ${DEFAULT_OTRS_CRON_BACKUP_SCRIPT}"
OTRS_CRON_BACKUP_SCRIPT=${DEFAULT_OTRS_CRON_BACKUP_SCRIPT}
fi
echo "${OTRS_BACKUP_TIME} root . /.backup.env; ${OTRS_BACKUP_SCRIPT}" > ${OTRS_CRON_BACKUP_SCRIPT}
elif [ "${OTRS_BACKUP_TIME}" == "disable" ]; then
print_warning "Disabling automated backups !!"
rm /etc/cron.d/otrs_backup
fi
}
# Useful while testing or setting up a new instance.
function disable_email_fetch() {
print_info "Disabling Email Accounts fetching..." | tee -a ${upgrade_log}
su -c "${OTRS_ROOT}bin/otrs.Console.pl Admin::Config::Update --setting-name Daemon::SchedulerCronTaskManager::Task###MailAccountFetch --valid 0" -s /bin/bash otrs
}
function not_allowed_pkgs_install() {
local _allow=0
print_info "Setting the installation of \e[${OTRS_ASCII_COLOR_BLUE}mPackage::AllowNotVerifiedPackages\e[0m to: \e[${OTRS_ASCII_COLOR_RED}m${OTRS_ALLOW_NOT_VERIFIED_PACKAGES}\e[0m" | tee -a ${upgrade_log}
if [ "${OTRS_ALLOW_NOT_VERIFIED_PACKAGES}" == "yes" ]; then
_allow=1
fi
su -c "${OTRS_ROOT}bin/otrs.Console.pl Admin::Config::Update --setting-name Package::AllowNotVerifiedPackages --value=${_allow}" -s /bin/bash otrs
if [ $? -gt 0 ]; then
print_warning "Cannot enable Package::AllowNotVerifiedPackages" | tee -a ${upgrade_log}
fi
}
function switch_article_storage_type() {
if [ "${OTRS_ARTICLE_STORAGE_TYPE}" != "ArticleStorageFS" ] && [ "${OTRS_ARTICLE_STORAGE_TYPE}" != "ArticleStorageDB" ]; then
print_warning "Unsupported article storage type."
else
print_info "Swtiching Article Storage Type to: \e[${OTRS_ASCII_COLOR_RED}m${OTRS_ARTICLE_STORAGE_TYPE}\e[0m ..." | tee -a ${upgrade_log}
current_type=$(su -c "${OTRS_ROOT}bin/otrs.Console.pl Admin::Config::Read --setting-name Ticket::Article::Backend::MIMEBase::ArticleStorage" -s /bin/bash otrs|grep Kernel|cut -d':' -f 13)
if [ ${current_type} != ${OTRS_ARTICLE_STORAGE_TYPE} ];then
# First switch Ticket::Article::Backend::MIMEBase::CheckAllStorageBackends setting
su -c "${OTRS_ROOT}bin/otrs.Console.pl Admin::Config::Update --setting-name Ticket::Article::Backend::MIMEBase::ArticleStorage --value Kernel::System::Ticket::Article::Backend::MIMEBase::${OTRS_ARTICLE_STORAGE_TYPE}" -s /bin/bash otrs
if [ $? -eq 0 ]; then
if [ "${OTRS_ARTICLE_STORAGE_TYPE}" == "ArticleStorageFS" ]; then
print_info "Swtiching Article Storage Type: Moving ticket articles from database to filesystem..." | tee -a ${upgrade_log}
#statements
elif [ "${OTRS_ARTICLE_STORAGE_TYPE}" == "ArticleStorageDB" ]; then
print_info "Swtiching Article Storage Type: Moving ticket articles from filesystem to database..." | tee -a ${upgrade_log}
fi
# Then do the switch
su -c "${OTRS_ROOT}bin/otrs.Console.pl Admin::Article::StorageSwitch --target ${OTRS_ARTICLE_STORAGE_TYPE}" -s /bin/bash otrs
fi
else
print_info "Current Article storage type already configured to: \e[${OTRS_ASCII_COLOR_RED}m${OTRS_ARTICLE_STORAGE_TYPE}\e[0m"
fi
fi
}