-
Notifications
You must be signed in to change notification settings - Fork 52
/
entrypoint.sh
252 lines (209 loc) · 9.67 KB
/
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
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
#!/bin/bash
set -e
custom_extension_count=`ls -1 /opt/connect/custom-extensions/*.zip 2>/dev/null | wc -l`
if [ $custom_extension_count != 0 ]; then
echo "Found ${custom_extension_count} custom extensions."
for extension in $(ls -1 /opt/connect/custom-extensions/*.zip); do
unzip -o -q $extension -d /opt/connect/extensions
done
fi
# set storepass and keypass to 'changeme' so they aren't overwritten later
KEYSTORE_PASS=changeme
sed -i "s/^keystore\.storepass\s*=\s*.*\$/keystore.storepass = ${KEYSTORE_PASS//\//\\/}/" /opt/connect/conf/mirth.properties
sed -i "s/^keystore\.keypass\s*=\s*.*\$/keystore.keypass = ${KEYSTORE_PASS//\//\\/}/" /opt/connect/conf/mirth.properties
# merge the environment variables into /opt/connect/conf/mirth.properties
# db type
if ! [ -z "${DATABASE+x}" ]; then
sed -i "s/^database\s*=\s*.*\$/database = ${DATABASE//\//\\/}/" /opt/connect/conf/mirth.properties
fi
# db username
if ! [ -z "${DATABASE_USERNAME+x}" ]; then
sed -i "s/^database\.username\s*=\s*.*\$/database.username = ${DATABASE_USERNAME//\//\\/}/" /opt/connect/conf/mirth.properties
fi
# db password
if ! [ -z "${DATABASE_PASSWORD+x}" ]; then
sed -i "s/^database\.password\s*=\s*.*\$/database.password = ${DATABASE_PASSWORD//\//\\/}/" /opt/connect/conf/mirth.properties
fi
# db url
if ! [ -z "${DATABASE_URL+x}" ]; then
sed -i "s/^database\.url\s*=\s*.*\$/database.url = ${DATABASE_URL//\//\\/}/" /opt/connect/conf/mirth.properties
fi
# database max connections
if ! [ -z "${DATABASE_MAX_CONNECTIONS+x}" ]; then
sed -i "s/^database\.max-connections\s*=\s*.*\$/database.max-connections = ${DATABASE_MAX_CONNECTIONS//\//\\/}/" /opt/connect/conf/mirth.properties
fi
# database max retries
if ! [ -z "${DATABASE_MAX_RETRY+x}" ]; then
sed -i "s/^database\.connection\.maxretry\s*=\s*.*\$/database.connection.maxretry = ${DATABASE_MAX_RETRY//\//\\/}/" /opt/connect/conf/mirth.properties
fi
# database retry wait time
if ! [ -z "${DATABASE_RETRY_WAIT+x}" ]; then
sed -i "s/^database\.connection\.retrywaitinmilliseconds\s*=\s*.*\$/database.connection.retrywaitinmilliseconds = ${DATABASE_RETRY_WAIT//\//\\/}/" /opt/connect/conf/mirth.properties
fi
# keystore storepass
if ! [ -z "${KEYSTORE_STOREPASS+x}" ]; then
sed -i "s/^keystore\.storepass\s*=\s*.*\$/keystore.storepass = ${KEYSTORE_STOREPASS//\//\\/}/" /opt/connect/conf/mirth.properties
fi
# keystore keypass
if ! [ -z "${KEYSTORE_KEYPASS+x}" ]; then
sed -i "s/^keystore\.keypass\s*=\s*.*\$/keystore.keypass = ${KEYSTORE_KEYPASS//\//\\/}/" /opt/connect/conf/mirth.properties
fi
if ! [ -z "${KEYSTORE_TYPE+x}" ]; then
sed -i "s/^keystore\.type\s*=\s*.*\$/keystore.type = ${KEYSTORE_TYPE//\//\\/}/" /opt/connect/conf/mirth.properties
fi
# license key
if ! [ -z "${LICENSE_KEY+x}" ]; then
LINE_COUNT=`grep "license.key" /opt/connect/conf/mirth.properties | wc -l`
if [ $LINE_COUNT -lt 1 ]; then
echo -e "\nlicense.key = ${LICENSE_KEY//\//\\/}" >> /opt/connect/conf/mirth.properties
else
sed -i "s/^license\.key\s*=\s*.*\$/license.key = ${LICENSE_KEY//\//\\/}/" /opt/connect/conf/mirth.properties
fi
fi
# session store
if ! [ -z "${SESSION_STORE+x}" ]; then
LINE_COUNT=`grep "server.api.sessionstore" /opt/connect/conf/mirth.properties | wc -l`
if [ $LINE_COUNT -lt 1 ]; then
echo -e "\nserver.api.sessionstore = ${SESSION_STORE//\//\\/}" >> /opt/connect/conf/mirth.properties
else
sed -i "s/^server\.api\.sessionstore\s*=\s*.*\$/server.api.sessionstore = ${SESSION_STORE//\//\\/}/" /opt/connect/conf/mirth.properties
fi
fi
#server ID
if ! [ -z "${SERVER_ID+x}" ]; then
echo -e "server.id = ${SERVER_ID//\//\\/}" > /opt/connect/appdata/server.id
fi
# merge extra environment variables starting with _MP_ into mirth.properties
while read -r keyvalue; do
KEY="${keyvalue%%=*}"
VALUE="${keyvalue#*=}"
VALUE=$(tr -dc '\40-\176' <<< "$VALUE")
if ! [ -z "${KEY}" ] && ! [ -z "${VALUE}" ] && ! [[ ${VALUE} =~ ^\ +$ ]]; then
# filter for variables starting with "_MP_"
if [[ ${KEY} == _MP_* ]]; then
# echo "found mirth property ${KEY}=${VALUE}"
# example: _MP_DATABASE_MAX__CONNECTIONS -> database.max-connections
# remove _MP_
# example: DATABASE_MAX__CONNECTIONS
ACTUAL_KEY=${KEY:4}
# switch '__' to '-'
# example: DATABASE_MAX-CONNECTIONS
ACTUAL_KEY="${ACTUAL_KEY//__/-}"
# switch '_' to '.'
# example: DATABASE.MAX-CONNECTIONS
ACTUAL_KEY="${ACTUAL_KEY//_/.}"
# lower case
# example: database.max-connections
ACTUAL_KEY="${ACTUAL_KEY,,}"
# if key does not exist in mirth.properties append it at bottom
LINE_COUNT=`grep "^${ACTUAL_KEY}" /opt/connect/conf/mirth.properties | wc -l`
if [ $LINE_COUNT -lt 1 ]; then
# echo "key ${ACTUAL_KEY} not found in mirth.properties, appending. Value = ${VALUE}"
echo -e "\n${ACTUAL_KEY} = ${VALUE//\//\\/}" >> /opt/connect/conf/mirth.properties
else # otherwise key exists, overwrite it
# echo "key ${ACTUAL_KEY} exists, overwriting. Value = ${VALUE}"
ESCAPED_KEY="${ACTUAL_KEY//./\\.}"
sed -i "s/^${ESCAPED_KEY}\s*=\s*.*\$/${ACTUAL_KEY} = ${VALUE//\//\\/}/" /opt/connect/conf/mirth.properties
fi
fi
fi
done <<< "`printenv`"
cp mcserver_base.vmoptions mcserver.vmoptions
# Address reflective access by Jackson
echo "--add-opens=java.desktop/java.awt.color=ALL-UNNAMED" >> mcserver.vmoptions
# merge vmoptions into /opt/connect/mcserver.vmoptions
if ! [ -z "${VMOPTIONS+x}" ]; then
PREV_IFS="$IFS"
IFS=","
read -ra vmoptions <<< "$VMOPTIONS"
IFS="$PREV_IFS"
for vmoption in "${vmoptions[@]}"
do
echo "${vmoption}" >> /opt/connect/mcserver.vmoptions
done
fi
# merge the user's secret mirth.properties
# takes a whole mirth.properties file and merges line by line with /opt/connect/conf/mirth.properties
if [ -f /run/secrets/mirth_properties ]; then
# add new line in case /opt/connect/conf/mirth.properties doesn't end with one
echo "" >> /opt/connect/conf/mirth.properties
while read -r keyvalue; do
KEY="${keyvalue%%=*}"
VALUE="${keyvalue#*=}"
# remove leading and trailing white space
KEY="$(echo -e "${KEY}" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')"
VALUE="$(echo -e "${VALUE}" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')"
if ! [ -z "${KEY}" ] && ! [ -z "${VALUE}" ] && ! [[ ${VALUE} =~ ^\ +$ ]]; then
# if key does not exist in mirth.properties append it at bottom
LINE_COUNT=`grep "^${KEY}" /opt/connect/conf/mirth.properties | wc -l`
if [ $LINE_COUNT -lt 1 ]; then
# echo "key ${KEY} not found in mirth.properties, appending. Value = ${VALUE}"
echo -e "${KEY} = ${VALUE//\//\\/}" >> /opt/connect/conf/mirth.properties
else # otherwise key exists, overwrite it
# echo "key ${KEY} exists, overwriting. Value = ${VALUE}"
ESCAPED_KEY="${KEY//./\\.}"
sed -i "s/^${ESCAPED_KEY}\s*=\s*.*\$/${KEY} = ${VALUE//\//\\/}/" /opt/connect/conf/mirth.properties
fi
fi
done <<< "`cat /run/secrets/mirth_properties`"
fi
# merge the user's secret vmoptions
# takes a whole mcserver.vmoptions file and merges line by line with /opt/connect/mcserver.vmoptions
if [ -f /run/secrets/mcserver_vmoptions ]; then
(cat /run/secrets/mcserver_vmoptions ; echo "") >> /opt/connect/mcserver.vmoptions
fi
# download jars from this url "$CUSTOM_JARS_DOWNLOAD", set by user
if ! [ -z "${CUSTOM_JARS_DOWNLOAD+x}" ]; then
echo "Downloading Jars at ${CUSTOM_JARS_DOWNLOAD}"
if ! [ -z "${ALLOW_INSECURE}" ] && [ "${ALLOW_INSECURE}" == "true" ]; then
curl -ksSLf "${CUSTOM_JARS_DOWNLOAD}" -o userJars.zip || echo "problem with custom jars download"
else
curl -sSLf "${CUSTOM_JARS_DOWNLOAD}" -o userJars.zip || echo "problem with custom jars download"
fi
# Unzipping contents of userJars.zip into /opt/connect/server-launcher-lib folder
if [ -e "userJars.zip" ]; then
echo "Unzipping contents of userJars.zip into /opt/connect/server-launcher-lib"
unzip userJars.zip -d /opt/connect/server-launcher-lib
# removing the downloaded zip file
rm userJars.zip
fi
fi
# download extensions from this url "$EXTENSIONS_DOWNLOAD", set by user
if ! [ -z "${EXTENSIONS_DOWNLOAD+x}" ]; then
echo "Downloading extensions at ${EXTENSIONS_DOWNLOAD}"
if ! [ -z "${ALLOW_INSECURE}" ] && [ "${ALLOW_INSECURE}" == "true" ]; then
curl -ksSLf "${EXTENSIONS_DOWNLOAD}" -o userExtensions.zip || echo "problem with extensions download"
else
curl -sSLf "${EXTENSIONS_DOWNLOAD}" -o userExtensions.zip || echo "problem with extensions download"
fi
# Unzipping contents of userExtensions.zip
if [ -e "userExtensions.zip" ]; then
echo "Unzipping contents of userExtensions.zip"
mkdir /tmp/userextensions
unzip userExtensions.zip -d /tmp/userextensions
# removing the downloaded zip file
rm userExtensions.zip
# Unzipping contents of individual extension zip files into /opt/connect/extensions folder
zipFileCount=`ls -1 /tmp/userextensions/*.zip 2>/dev/null | wc -l`
if [ $zipFileCount != 0 ]; then
echo "Unzipping contents of /tmp/userextensions/ zips into /opt/connect/extensions"
for f in /tmp/userextensions/*.zip; do unzip "$f" -d /opt/connect/extensions; done
fi
# removing the tmp folder
rm -rf /tmp/userextensions
fi
fi
# download keystore
if ! [ -z "${KEYSTORE_DOWNLOAD+x}" ]; then
echo "Downloading keystore at ${KEYSTORE_DOWNLOAD}"
if ! [ -z "${ALLOW_INSECURE}" ] && [ "${ALLOW_INSECURE}" == "true" ]; then
curl -ksSLf "${KEYSTORE_DOWNLOAD}" -o "/opt/connect/appdata/keystore.jks" || echo "problem with keystore download"
else
curl -sSLf "${KEYSTORE_DOWNLOAD}" -o "/opt/connect/appdata/keystore.jks" || echo "problem with keystore download"
fi
fi
# if delay is set as an environment variable then wait that long in seconds
if ! [ -z "${DELAY+x}" ]; then
sleep $DELAY
fi
exec "$@"