blob: 4bdafd12290bc40a07714a00909826c0be8ce077 (
plain)
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
|
#!/bin/bash
set -e
cecho() {
local code="\033["
case "$1" in
black | bk) color="${code}0;30m";;
red | r) color="${code}1;31m";;
green | g) color="${code}1;32m";;
yellow | y) color="${code}1;33m";;
blue | b) color="${code}1;34m";;
purple | p) color="${code}1;35m";;
cyan | c) color="${code}1;36m";;
gray | gr) color="${code}0;37m";;
*) local text="$1"
esac
[ -z "$text" ] && local text="$color$2${code}0m"
echo -e "$text"
}
do_install_instance() {
NGINX_PORT=${NGINX_PORT-80}
NGINX_AVAILABLE_PATH='/etc/nginx/sites-available'
NGINX_ENABLE_PATH='/etc/nginx/sites-enabled'
UWSGI_AVAILABLE_PATH='/etc/uwsgi/apps-available'
UWSGI_ENABLE_PATH='/etc/uwsgi/apps-enabled'
PG_VERSION=9.6
POSTGIS_VERSION=2.3.1
echo ""
cecho g "*******************************************************************************"
cecho g "++++++ Ishtar instance preparation script ++++++"
cecho g "*******************************************************************************"
echo ""
# check user
user="$(id -un 2>/dev/null || true)"
sh_c='sh -c'
if [ "$user" != 'root' ]; then
if command_exists sudo; then
sh_c='sudo -E sh -c'
elif command_exists su; then
sh_c='su -c'
else
cecho r " Error: this installer needs the ability to run commands as root."
cecho r " We are unable to find either "sudo" or "su" available to make this happen."
exit 1
fi
fi
if [ ! -z '$CONFIG_PATH' ]; then
CONFIG_PATH="/etc/ishtar/"
fi
if [ ! -f $CONFIG_PATH/config ]; then
echo "";
cecho r ""$CONFIG_PATH" is not a valid config file."
echo "Have you properly install Ishtar sources?"
echo "Run ishtar-install before this script.";
echo "";
exit 1;
fi
source $CONFIG_PATH/config
export LANG=$ISHTAR_LOCALE.UTF-8
if [ "$(locale 2>&1 >/dev/null|wc -l)" != 0 ]; then
cecho r "Unable to set LANG=$LANG properly"
cecho "Try: 'dpkg-reconfigure locales' or install the 'locales-all' package"
exit 1
fi
cd $ISHTAR_PATH
INSTANCES_FILE=$CONFIG_PATH/instances
if [ ! -f $INSTANCES_FILE ]; then
touch $INSTANCES_FILE
fi
if [ -z '$INSTANCE' ]; then
if [ -d "$INSTANCE" ]; then
cecho r "Sorry, $INSTANCE already exists."
echo "Give another code name."
exit 1
fi
else
INSTANCE=''
cat >&2 <<-'EOF'
-------------------------------------------------------------------------------
You should select a code name for this instance. This code name should have
only lower alphanumeric characters, with no spaces, no accents and should not
begin with an alphabetical character. The only special character allowed is
"_".
EOF
while [ "$INSTANCE" == '' ]
do
cecho y "* Which instance code name? [my_ishtar_instance] "
read choice
if [ -z "$choice" ]; then
INSTANCE='my_ishtar_instance'
else
INSTANCE=$choice
fi
if [ -d "$INSTANCE" ]; then
echo "Sorry, $INSTANCE already exists. Give another name."
INSTANCE=''
fi
done
fi
if [ ! -z '$URL' ]; then
URL=''
cat >&2 <<-'EOF'
-------------------------------------------------------------------------------
You should select an url to join your instance. Only a full domain is
accepted. Don't forget to set up your DNS to point this url name to this
server. Only put the url not the protocol part (no http://).
For instance: ishtar.mydomain.org
EOF
while [ "$URL" == '' ]
do
cecho y "* Which url? "
read choice
URL=$choice
done
fi
if [ ! -z '$MAX_UPLOAD_SIZE' ]; then
MAX_UPLOAD_SIZE=''
cat >&2 <<-'EOF'
-------------------------------------------------------------------------------
A maximum size for file upload is set. By default, the limit is set to 100
Mo. Consider raising or lowering this value to fit to your needs.
Note: to change this value after the installation change client_max_body_size
it in the nginx configuration file and MAX_UPLOAD_SIZE in local_settings.
EOF
re_number='^[0-9]+$'
while ! [[ "$MAX_UPLOAD_SIZE" =~ $re_number ]]
do
cecho y "* Max upload size in Mo (default: 100)? "
read choice
MAX_UPLOAD_SIZE=$choice
if [ "$MAX_UPLOAD_SIZE" == '' ]; then
MAX_UPLOAD_SIZE=100
fi
done
fi
DEST=$ISHTAR_PATH
cat >&2 <<-'EOF'
-------------------------------------------------------------------------------
EOF
echo "Preparing ishtar instance: $INSTANCE under $DEST"
echo ""
# register instance
echo "$INSTANCE" >> $INSTANCES_FILE
mkdir -p /var/log/django
chown root:www-data /var/log/django
touch "/var/log/django/ishtar-$INSTANCE.log"
chown root:www-data "/var/log/django/ishtar-$INSTANCE.log"
chmod g+w "/var/log/django/ishtar-$INSTANCE.log"
cecho y " * duplicate example_project into our instance"
# Duplicate example_project into our instance:
cd $ISHTAR_PATH
cp -ra example_project $INSTANCE
rm $INSTANCE/settings.py
ln -s $DEST/example_project/settings.py $DEST/$INSTANCE/settings.py
rm $INSTANCE/urls.py
ln -s $DEST/example_project/urls.py $DEST/$INSTANCE/urls.py
# Permissions:
mkdir -p -m 755 "$INSTANCE/media"
mkdir -p -m 755 "$INSTANCE/media/imported"
mkdir -p -m 755 "$INSTANCE/media/upload"
mkdir -p -m 755 "$INSTANCE/static/CACHE"
chown -R www-data:www-data "$INSTANCE/media"
chown -R www-data:www-data "$INSTANCE/static/CACHE"
# Preparing DB:
DB_HOST=${ISHTAR_DB-127.0.0.1}
DB_PORT=${ISHTAR_DB_PORT-5432}
DB_PASSWORD=${DB_PASSWORD-''}
DB_NAME="ishtar-$INSTANCE"
# Generate a password on the fly if none was specified:
if [ -z "$DB_PASSWORD" ]; then
DB_PASSWORD=$(apg -a 0 -M ncl -n 1 -x 10 -m 10)
fi
# dnsmasq
echo "* adding domain to local dnsmasq entry"
echo "address=/"$URL"/127.0.0.1" >> /etc/dnsmasq.d/ishtar
systemctl restart dnsmasq
export PG_VERSION DB_HOST DB_PORT DB_PASSWORD DB_NAME POSTGIS_VERSION
su postgres <<'EOF'
echo " * Checking template_postgis"
if ! psql -l | grep -qs template_postgis; then
echo " - not present, creating"
createdb -E UTF8 template_postgis
psql -d postgres -c "UPDATE pg_database SET datistemplate='true' WHERE datname='template_postgis'"
psql -q -d template_postgis -f /usr/share/postgresql/$PG_VERSION/extension/postgis--$POSTGIS_VERSION.sql
psql -d template_postgis -c "GRANT ALL ON geometry_columns TO PUBLIC;"
psql -d template_postgis -c "GRANT ALL ON geography_columns TO PUBLIC;"
psql -d template_postgis -c "GRANT ALL ON spatial_ref_sys TO PUBLIC;"
else
echo " - already present"
fi
echo " * Checking database $DB_NAME"
if ! psql -l | grep -qs "$DB_NAME"; then
echo " - not present, creating"
createuser --echo --adduser --createdb --encrypted $DB_NAME
psql --command "ALTER USER \""$DB_NAME"\" with password '"$DB_PASSWORD"';"
createdb -T template_postgis --echo --owner $DB_NAME --encoding UNICODE $DB_NAME
psql -d $DB_NAME -c "CREATE EXTENSION postgis;"
else
echo " - already present"
fi
EOF
### LOCAL SETTINGS
cecho y " * creating config files"
# Set some variables to avoid changing sed calls too much compared to
# the initial install/install.sh script:
INSTALL_PATH=$DEST
INSTALL_PREFIX=$DEST
APP_DIR="$DEST/$INSTANCE"
DATE=`date +%F`
SECRET_KEY=$(apg -a 0 -M ncl -n 1 -x 10 -m 40)
PORT_FILE=$CONFIG_PATH/last_uswgi_port
if [ -f $PORT_FILE ]; then
UWSGI_PORT=`cat $PORT_FILE`
UWSGI_PORT=`expr $UWSGI_PORT + 1`
else
UWSGI_PORT=8889
fi
echo $UWSGI_PORT > $PORT_FILE
### local_settings.py
sed -s "s|#APP_NAME#|$INSTANCE|g;\
s|#INSTALL_PATH#|$INSTALL_PATH|g;\
s|#DB_HOST#|$DB_HOST|g;\
s|#DB_NAME#|$DB_NAME|g;\
s|#DB_PORT#|$DB_PORT|g;\
s|#DB_PASSWORD#|$DB_PASSWORD|g;\
s|#MAX_UPLOAD_SIZE#|$MAX_UPLOAD_SIZE|g;\
s|#URL#|$URL|g;\
s|#APP_DIR#|$APP_DIR|g;\
s|#SECRET_KEY#|$SECRET_KEY|g;" \
"install/local_settings.py.sample" > \
"$INSTANCE/local_settings.py"
if [ -f $CONFIG_PATH"extra_settings.py" ]; then
cat $CONFIG_PATH"extra_settings.py" >> "$INSTANCE/local_settings.py"
fi
### UWSGI
sed -s "s|#APP_NAME#|$INSTANCE|g;\
s|#INSTALL_PREFIX#|$INSTALL_PREFIX|g;\
s|#URL#|$URL|g;\
s|#UWSGI_PORT#|$UWSGI_PORT|g;" \
"install/uwsgi.ini.template" > \
"$INSTANCE/uwsgi.ini"
ln -sf "$DEST/$INSTANCE/uwsgi.ini" \
"$UWSGI_AVAILABLE_PATH/ishtar-$INSTANCE.ini"
ln -sf "$UWSGI_AVAILABLE_PATH/ishtar-$INSTANCE.ini" \
"$UWSGI_ENABLE_PATH/ishtar-$INSTANCE.ini"
### NGINX
sed -s "s|#APP_NAME#|$INSTANCE|g;\
s|#UWSGI_PORT#|$UWSGI_PORT|g;\
s|#NGINX_PORT#|$NGINX_PORT|g;\
s|#INSTALL_PATH#|$INSTALL_PATH|g;\
s|#MAX_UPLOAD_SIZE#|$MAX_UPLOAD_SIZE|g;\
s|#URL#|$URL|g;" \
"install/nginx.conf.template" > \
"$INSTANCE/nginx.conf"
ln -sf "$DEST/$INSTANCE/nginx.conf" \
"$NGINX_AVAILABLE_PATH/ishtar-$INSTANCE.conf"
ln -sf "$NGINX_AVAILABLE_PATH/ishtar-$INSTANCE.conf" \
"$NGINX_ENABLE_PATH/ishtar-$INSTANCE.conf"
cecho y " * collect static data"
cd $INSTANCE
./manage.py collectstatic --noinput > /dev/null
cd -
# only language available
LOCALE=fr
cecho y " * compile translations"
for d in archaeological_* ishtar_common; do
cd $d
../$INSTANCE/manage.py compilemessages -l $LOCALE
cd -
done
### DB feeding
cd $INSTANCE
cecho y " * db feeding"
cecho y " - migrations"
./manage.py migrate
cecho y " - loading fixtures"
FIXTURES="$DEST/fixtures/initial_data-auth-fr.json $DEST/ishtar_common/fixtures/initial_data-fr.json $DEST/ishtar_common/fixtures/initial_importtypes-fr.json $DEST/archaeological_operations/fixtures/initial_data-fr.json $DEST/archaeological_operations/fixtures/initial_data_relation_type_norel-fr.json $DEST/archaeological_operations/fixtures/initial_data_relation_type-fr.json $DEST/archaeological_context_records/fixtures/initial_data-fr.json $DEST/archaeological_context_records/fixtures/initial_data_relation_type_norel-fr.json $DEST/archaeological_context_records/fixtures/initial_data_relation_type-fr.json $DEST/archaeological_files/fixtures/initial_data-fr.json $DEST/archaeological_finds/fixtures/initial_data-fr.json $DEST/archaeological_warehouse/fixtures/initial_data-fr.json"
for data in $FIXTURES; do
echo $data;
./manage.py loaddata $data;
done
cecho y " - create superuser"
./manage.py createsuperuser
cecho y " - post install script"
cd ..
python ./install/post_install_script.py $INSTANCE $URL
cat >&2 <<-'EOF'
-------------------------------------------------------------------------------
EOF
cecho g " Your instance has been configured."
echo ""
cecho g " * instance name: "$INSTANCE
cecho g " * url: http://"$URL
cat >&2 <<-'EOF'
You should restart uwsgi and nginx:
EOF
cecho y "systemctl restart uwsgi nginx"
echo ""
echo " And then enjoy ishtar!"
echo ""
}
do_install_instance
|