-
Notifications
You must be signed in to change notification settings - Fork 0
/
sfinstall.sh
executable file
·389 lines (315 loc) · 8.77 KB
/
sfinstall.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
#!/bin/bash
if [ "$(uname)" != "Linux" ]; then rpath=`readlink "$0"`; else rpath=`readlink -f "$0"`; fi;
abs_path=$(dirname "$rpath")
function echolor () {
red="\033[31m"
green='\033[32m'
yellow='\033[33m'
std="\033[0m"
case $1 in
r)
color=$red
;;
g)
color=$green
;;
y)
color=$yellow
;;
s)
color=$std
;;
esac
echo -e $color$2$std
}
dir=$1
install_path=$(pwd)/$dir
if [ "$dir" == "" ]; then
echolor r "Validation avant suppression des fichiers de $install_path"
read -p "Vous n'avez pas indiqué de répertoire d'installation, Symfony sera installé ici : "$install_path" ok [Y,n] : " yn
if [[ ! $yn =~ ^[Yy]$ ]]
then
echo "Ok, ok... on arrête tout."
exit 1
fi
else
if [ -d $dir ] || [ -f $dir ]; then echo "Ce répertoire existe déjà, on arrête tout."; exit 1; fi
mkdir -p $dir
cd $dir
fi
setfacl=$(which setfacl)
if [ "$?" -eq 0 ];
then
sudo setfacl -dR -m u:`whoami`:rwx .
fi
sudo_opt=""
read -p "Avez-vous besoin de sudo pour les commandes docker ? [Y,n] : " yn
if [[ $yn =~ ^[Yy]$ ]]
then
sudo_opt="sudo"
fi
cd $install_path;
rm -rf ..?* .[!.]* *
###########################
# INSTALL
###########################
function gitignore () {
echolor y "Mise en place du gitignore dans "$install_path
cat << EOF > $install_path"/.gitignore"
# Cache and logs (Symfony2)
/app/cache/*
/app/logs/*
!app/cache/.gitkeep
!app/logs/.gitkeep
# Email spool folder
/app/spool/*
# Cache, session files and logs (Symfony3)
/var/cache/*
/var/logs/*
/var/sessions/*
!var/cache/.gitkeep
!var/logs/.gitkeep
!var/sessions/.gitkeep
# Parameters
/app/config/parameters.yml
/app/config/parameters.ini
# Managed by Composer
/app/bootstrap.php.cache
/var/bootstrap.php.cache
/bin/*
!bin/console
!bin/symfony_requirements
/vendor/
# Assets and user uploads
/web/bundles/
/web/uploads/
# PHPUnit
/app/phpunit.xml
/phpunit.xml
# Build data
/build/
# Composer PHAR
/composer.phar
# Backup entities generated with doctrine:generate:entities command
**/Entity/*~
# Embedded web-server pid file
/.web-server-pid
EOF
}
function symfony4_install() {
#docker-compose run composer composer create-project symfony/website-skeleton /var/www/website/
$sudo_opt docker run --rm --interactive --tty --volume $PWD:/var/www/website composer create-project symfony/website-skeleton /var/www/website/ $version
}
function symfony_install() {
$sudo_opt docker run --rm --interactive --tty --volume $PWD:/var/www/website composer -n create-project symfony/framework-standard-edition /var/www/website/ $version
echolor y "Mise en place des fichiers de configutations"
cat << EOF > $install_path/app/config/parameters.yml
parameters:
database_host: db
database_port: null
database_name: website
database_user: root
database_password: root
# utilise sendmail dans le container php, sendmail étant en fait un ssmtp utilisant le container "mail"
mailer_transport: mail
mailer_host: ~
mailer_user: ~
mailer_password: ~
# possible d'utiliser le container "mail" directement en smtp :
# mailer_transport: smtp
# mailer_host: mail
# mailer_user: web
# mailer_password: web
secret: ThisTokenIsNotSoSecretChangeIt
EOF
cp $install_path"/app/config/parameters.yml.dist" $install_path"/app/config/parameters.yml-at-prod"
cp $install_path"/app/config/parameters.yml.dist" $install_path"/app/config/parameters.yml-at-preprod"
}
versions=("2.8.*" "3.4.*" "4.1.*")
echo "Liste des versions installables :"
PS3="Choix de la version : "
select opt in ${versions[@]}
do
version=$opt
break
done
echolor y "Récupération de Symfony dans "$install_path
if [[ "$version" =~ ^4 ]]; then
symfony4_install
else
symfony_install
fi
gitignore
function dockerize () {
netstat=$(netstat)
if [ "$?" -ne 0 ];
then
echolor y "netstat n'est pas installé sur votre machine, il est vivement conseillé de l'installer";
fi
port="[0-9]"
if [ -f docker-compose.yml ]; then
read -p "Le fichier docker-compose.yml existe déjà, on l'écrase ? [y,N] " resp
if [ $resp != "y" ]; then echo "Ok..."; return 0; fi
echo "Arrêts des containers de cet environnement..."
$sudo_opt docker-compose stop
fi
docker_compose_write
ports_wanted=$(grep -A3 "ports" docker-compose.yml | grep "[0-9]" | cut -c12-25 | sed 's/"//' | cut -d':' -f1)
for port in $ports_wanted; do
if [ "$(is_used $port)" == "y" ]; then
if [ "$port" == "80" ] || [ "$port" == "443" ]; then
read -p "Voulez-vous stopper les containers des autres projets tournant sur le port 80 ? [y,N] " resp
if [ $resp == "y" ]; then docker stop $(docker ps |grep ":80->" | cut -d " " -f1); fi
fi
fi
if [ "$(is_used $port)" == "y" ]; then
newport=$(get_next_free_port $port)
echo $port" est occupé, on le remplace par : "$newport
perl -pi -e "s/\"$port:/\"$newport:/" docker-compose.yml
fi
done
read -p "Domaine pour le vhost (s'il se finit par dev.acti vous aurez un certificat ssl valide) : "$'\n' domain
perl -pi -e "s/- WEBSITE_HOST=unprojet.dev.acti/- WEBSITE_HOST=$domain/" docker-compose.yml
perl -pi -e "s/- CERTIFICAT_CNAME=unprojet.dev.acti/- CERTIFICAT_CNAME=$domain/" docker-compose.yml
perl -pi -e "s/- maildomain=unprojet.dev.acti/- maildomain=$domain/" docker-compose.yml
read -p "Voulez-vous ajouter la ligne \"127.0.0.1 $domain\" à votre fichier hosts ? [y,N] " resp
if [ $resp != "y" ]; then
echo "Ok, ok, on touche pas au fichier hosts...";
else
host_file="/etc/hosts"
(sudo echo "127.0.0.1 $domain" && sudo cat $host_file) > temp && sudo mv temp $host_file
fi
echo '""""""""""""""""'
echo -e "Démarrage des containers...\n"
$sudo_opt docker-compose up -d
if [ "$?" -ne 0 ]; then return 0; fi
# Symfony 4
if [ -d ./public];
then
docker-compose exec php chown -R www-data /var/www/website/public
fi
# Symfony 3 et 4
if [ -d ./var];
then
docker-compose exec php chown -R www-data /var/www/website/var
fi
# Symfony 2
if [ -d ./app/cache];
then
docker-compose exec php chown -R www-data /var/www/website/app/cache
docker-compose exec php chown -R www-data /var/www/website/app/logs
fi
mysql_container=`basename $(pwd) | sed "s/_//g"`
echo '""""""""""""""""'
echolor g "Maintenant vous pouvez importer un dump mysql, par exemple :"
echo ""
echolor g "docker exec -i "$mysql_container"_db_1 mysql website < ./dump.sql"
}
function is_used() {
if [ "$(uname)" == "Darwin" ]; then
port_used=`$sudo_opt netstat -anv | awk 'NR>2{print $4}' | grep -E '\.'$port | sed 's/.*\.//' | sort -n | uniq`
else
port_used=`$sudo_opt netstat -lnt | awk 'NR>2{print $4}' | grep -E '0.0.0.0:$port' | sed 's/.*://' | sort -n | uniq`
fi
port=$1
res="n"
for i in ${port_used[@]}
do
if [ "$i" == ${port} ]; then
res="y"; break;
fi
done
echo $res
}
function get_next_free_port() {
port=$1
#si le dernier chiffre est 0, on le retire
if [ "${port:(${#port}-1):1}" == "0" ]; then
port=$(echo $port | sed 's/.$//')
fi
limit="10000"
counter=1
while [ $counter -lt $limit ]; do
newport=$port"$counter"
if [ "$(is_used $newport)" == "n" ]; then
break;
fi
let counter=counter+1
done
echo $newport
}
function docker_compose_write () {
cat << EOF > $install_path/docker-compose.yml
application:
image: debian:stretch
volumes:
- ./:/var/www/website
tty: true
db:
image: mysql
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: website
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
php:
image: c2is/ubuntu-php
volumes_from:
- application
links:
- db
- mail
composer:
image: composer
volumes_from:
- application
links:
- db
apache:
image: c2is/debian-apache
environment:
- WEBSITE_HOST=unprojet.dev.acti
- CERTIFICAT_CNAME=unprojet.dev.acti
- VHOST_SUFFIX=web
ports:
- "80:80"
- "443:443"
links:
- php
volumes_from:
- application
mail:
image: catatnight/postfix
environment:
- maildomain=unprojet.dev.acti
- smtp_user=web:web
ports:
- "25"
EOF
}
dockerhere=$(docker)
if [ "$?" -ne 0 ];
then
echolor y "Docker n'est pas installé sur votre machine : ce script ne mettera pas en place l'environnement docker.";
else
echolor y "Docker est installé, mise en place de l'environnement docker du projet";
dockerize
fi
: <<'COMMENT'
TODO
COMMENT
echolor -y "L'installation est terminée"
read -p "Souhaitez-vous cloner un projet ici ? [y,N] " resp
if [ $resp != "y" ]; then
echo "Ok, ok, on oublie...";
else
read -p "Url du repository (format ssh : [email protected]:c2is/XXX.git par exemple) : " giturl
git clone $giturl clonetmp
cd clonetmp
mv .[!.]* ../
mv * ../
rm -rf clonetmp
fi
me=`whoami`
me_group=`id -g`
sudo chown -R $me:$me_group ./