-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-entrypoint.sh
202 lines (169 loc) · 6.91 KB
/
docker-entrypoint.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
#!/bin/bash
set -eu
cd /var/www/html
# usage: file_env VAR [DEFAULT]
# ie: file_env 'XYZ_DB_PASSWORD' 'example'
# (will allow for "$XYZ_DB_PASSWORD_FILE" to fill in the value of
# "$XYZ_DB_PASSWORD" from a file, especially for Docker's secrets feature)
file_env() {
local var="$1"
local fileVar="${var}_FILE"
local def="${2:-}"
if [ "${!var:-}" ] && [ "${!fileVar:-}" ]; then
echo >&2 "error: both $var and $fileVar are set (but are exclusive)"
exit 1
fi
local val="$def"
if [ "${!var:-}" ]; then
val="${!var}"
elif [ "${!fileVar:-}" ]; then
val="$(< "${!fileVar}")"
fi
export "$var"="$val"
unset "$fileVar"
}
if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
file_env 'LIMESURVEY_DB_HOST' 'mysql'
file_env 'LIMESURVEY_TABLE_PREFIX' ''
file_env 'LIMESURVEY_ADMIN_NAME' 'Lime Administrator'
file_env 'LIMESURVEY_ADMIN_EMAIL' '[email protected]'
file_env 'LIMESURVEY_ADMIN_USER' ''
file_env 'LIMESURVEY_ADMIN_PASSWORD' ''
file_env 'LIMESURVEY_DEBUG' '0'
file_env 'LIMESURVEY_SQL_DEBUG' '0'
file_env 'MYSQL_SSL_CA' ''
file_env 'LIMESURVEY_USE_INNODB' ''
# if we're linked to MySQL and thus have credentials already, let's use them
file_env 'LIMESURVEY_DB_USER' "${MYSQL_ENV_MYSQL_USER:-root}"
if [ "$LIMESURVEY_DB_USER" = 'root' ]; then
file_env 'LIMESURVEY_DB_PASSWORD' "${MYSQL_ENV_MYSQL_ROOT_PASSWORD:-}"
else
file_env 'LIMESURVEY_DB_PASSWORD' "${MYSQL_ENV_MYSQL_PASSWORD:-}"
fi
file_env 'LIMESURVEY_DB_NAME' "${MYSQL_ENV_MYSQL_DATABASE:-limesurvey}"
if [ -z "$LIMESURVEY_DB_PASSWORD" ]; then
echo >&2 'error: missing required LIMESURVEY_DB_PASSWORD environment variable'
echo >&2 ' Did you forget to -e LIMESURVEY_DB_PASSWORD=... ?'
echo >&2
echo >&2 ' (Also of interest might be LIMESURVEY_DB_USER and LIMESURVEY_DB_NAME.)'
exit 1
fi
if ! [ -e application/config/config-defaults.php ]; then
echo >&2 "No config-defaults.php file in $(pwd) Copying defaults..."
cp -dR /var/lime/application/config/* application/config
fi
if ! [ -e plugins/index.html ]; then
echo >&2 "No index.html file in plugins dir in $(pwd) Copying defaults..."
cp -dR /var/lime/plugins/* plugins
fi
if ! [ -e upload/index.html ]; then
echo >&2 "No index.html file upload dir in $(pwd) Copying defaults..."
cp -dR /var/lime/upload/* upload
fi
if ! [ -e application/config/config.php ]; then
echo >&2 "No config file in $(pwd) Copying default config file..."
#Copy default config file but also allow for the addition of attributes
awk '/lime_/ && c == 0 { c = 1; system("cat") } { print }' application/config/config-sample-mysql.php > application/config/config.php <<'EOPHP'
'attributes' => array(),
EOPHP
fi
# Install BaltimoreCyberTrustRoot.crt.pem
if ! [ -e BaltimoreCyberTrustRoot.crt.pem ]; then
echo "Downloading BaltimoreCyberTrustroot.crt.pem"
if curl -o BaltimoreCyberTrustRoot.crt.pem -fsL "https://www.digicert.com/CACerts/BaltimoreCyberTrustRoot.crt.pem"; then
echo "Downloaded successfully"
else
echo "Failed to download certificate - continuing anyway"
fi
fi
# see http://stackoverflow.com/a/2705678/433558
sed_escape_lhs() {
echo "$@" | sed -e 's/[]\/$*.^|[]/\\&/g'
}
sed_escape_rhs() {
echo "$@" | sed -e 's/[\/&]/\\&/g'
}
php_escape() {
php -r 'var_export(('$2') $argv[1]);' -- "$1"
}
set_config() {
key="$1"
value="$2"
sed -i "/'$key'/s/>\(.*\)/>$value,/1" application/config/config.php
}
set_config 'connectionString' "'mysql:host=$LIMESURVEY_DB_HOST;port=3306;dbname=$LIMESURVEY_DB_NAME;'"
set_config 'tablePrefix' "'$LIMESURVEY_TABLE_PREFIX'"
set_config 'username' "'$LIMESURVEY_DB_USER'"
set_config 'password' "'$LIMESURVEY_DB_PASSWORD'"
set_config 'urlFormat' "'path'"
set_config 'debug' "$LIMESURVEY_DEBUG"
set_config 'debugsql' "$LIMESURVEY_SQL_DEBUG"
if [ -n "$MYSQL_SSL_CA" ]; then
set_config 'attributes' "array(PDO::MYSQL_ATTR_SSL_CA => '\/var\/www\/html\/$MYSQL_SSL_CA', PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT => false)"
fi
if [ -n "$LIMESURVEY_USE_INNODB" ]; then
#If you want to use INNODB - remove MyISAM specification from LimeSurvey code
sed -i "/ENGINE=MyISAM/s/\(ENGINE=MyISAM \)//1" application/core/db/MysqlSchema.php
#Also set mysqlEngine in config file
sed -i "/\/\/ Update default LimeSurvey config here/s//'mysqlEngine'=>'InnoDB',/" application/config/config.php
DBENGINE='InnoDB'
fi
chown www-data:www-data -R tmp
chown www-data:www-data -R plugins
mkdir -p upload/surveys
chown www-data:www-data -R upload
chown www-data:www-data -R application/config
DBSTATUS=$(TERM=dumb php -- "$LIMESURVEY_DB_HOST" "$LIMESURVEY_DB_USER" "$LIMESURVEY_DB_PASSWORD" "$LIMESURVEY_DB_NAME" "$LIMESURVEY_TABLE_PREFIX" "$MYSQL_SSL_CA" <<'EOPHP'
<?php
// database might not exist, so let's try creating it (just to be safe)
error_reporting(E_ERROR | E_PARSE);
$stderr = fopen('php://stderr', 'w');
list($host, $socket) = explode(':', $argv[1], 2);
$port = 0;
if (is_numeric($socket)) {
$port = (int) $socket;
$socket = null;
}
$maxTries = 10;
do {
$con = mysqli_init();
if (isset($argv[6]) && !empty($argv[6])) {
mysqli_ssl_set($con,NULL,NULL,"/var/www/html/" . $argv[6],NULL,NULL);
}
$mysql = mysqli_real_connect($con,$host, $argv[2], $argv[3], '', $port, $socket, MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT);
if (!$mysql) {
fwrite($stderr, "\n" . 'MySQL Connection Error: (' . $mysql->connect_errno . ') ' . $mysql->connect_error . "\n");
--$maxTries;
if ($maxTries <= 0) {
exit(1);
}
sleep(3);
}
} while (!$mysql);
if (!$con->query('CREATE DATABASE IF NOT EXISTS `' . $con->real_escape_string($argv[4]) . '`')) {
fwrite($stderr, "\n" . 'MySQL "CREATE DATABASE" Error: ' . $con->error . "\n");
$con->close();
exit(1);
}
$con->select_db($con->real_escape_string($argv[4]));
$inst = $con->query("SELECT * FROM `" . $con->real_escape_string($argv[5]) . "users" . "`");
$con->close();
if ($inst->num_rows > 0) {
exit("DBEXISTS");
} else {
exit(0);
}
EOPHP
)
if [ "$DBSTATUS" != "DBEXISTS" ] && [ -n "$LIMESURVEY_ADMIN_USER" ] && [ -n "$LIMESURVEY_ADMIN_PASSWORD" ]; then
echo >&2 'Database not yet populated - installing Limesurvey database'
php application/commands/console.php install "$LIMESURVEY_ADMIN_USER" "$LIMESURVEY_ADMIN_PASSWORD" "$LIMESURVEY_ADMIN_NAME" "$LIMESURVEY_ADMIN_EMAIL" verbose
fi
if [ -n "$LIMESURVEY_ADMIN_USER" ] && [ -n "$LIMESURVEY_ADMIN_PASSWORD" ]; then
echo >&2 'Updating password for admin user'
php application/commands/console.php resetpassword "$LIMESURVEY_ADMIN_USER" "$LIMESURVEY_ADMIN_PASSWORD"
fi
#flush asssets (clear cache on restart)
php application/commands/console.php flushassets
fi
exec "$@"