ninegate/src/ninegate-1.0/scripts/ninegate-postservice-01.sh

91 lines
3.0 KiB
Bash
Raw Normal View History

2019-04-17 17:27:19 +02:00
#!/bin/bash
moderegistration=$(CreoleGet ninegate_moderegistration none)
labelsniveau01=$(CreoleGet ninegate_niveau01labels non)
iconniveau01=$(CreoleGet ninegate_niveau01icon non)
affniveau02=$(CreoleGet ninegate_niveau02view non)
labelsniveau02=$(CreoleGet ninegate_niveau02labels non)
iconniveau02=$(CreoleGet ninegate_niveau02icon non)
2019-07-16 12:10:32 +02:00
weburl=$(CreoleGet web_url non)
2019-07-23 15:32:35 +02:00
ninegate_websocket=$(CreoleGet ninegate_activate_websocket non)
websocket_url=$(CreoleGet adresse_ip_eth0 non)
websocket_portinterne=$(CreoleGet ninegate_websocket_portinterne non)
2019-04-17 17:27:19 +02:00
www_dir="$container_path_web/var/www/html"
2021-02-09 14:38:05 +01:00
# Récuper les composer associés à la version de php installé
2021-02-09 16:14:47 +01:00
version74=`php -r 'echo version_compare(phpversion(), "7.4.0", ">=");'`
if [[ "$version74" == "1" ]]
2021-02-09 14:38:05 +01:00
then
2021-02-09 16:14:47 +01:00
cp -rf /var/www/html/ninegate/scripts/php74/composer.json /var/www/html/ninegate/composer.json
cp -rf /var/www/html/ninegate/scripts/php74/composer.lock /var/www/html/ninegate/composer.lock
2021-02-09 14:38:05 +01:00
else
2021-02-09 16:14:47 +01:00
version72=`php -r 'echo version_compare(phpversion(), "7.2.0", ">=");'`
if [[ "$version72" == "1" ]]
2021-02-09 14:38:05 +01:00
then
2021-02-09 16:14:47 +01:00
cp -rf /var/www/html/ninegate/scripts/php72/composer.json /var/www/html/ninegate/composer.json
cp -rf /var/www/html/ninegate/scripts/php72/composer.lock /var/www/html/ninegate/composer.lock
else
version70=`php -r 'echo version_compare(phpversion(), "7.0.0", ">=");'`
if [[ "$version70" == "1" ]]
then
cp -rf /var/www/html/ninegate/scripts/php70/composer.json /var/www/html/ninegate/composer.json
cp -rf /var/www/html/ninegate/scripts/php70/composer.lock /var/www/html/ninegate/composer.lock
fi
2021-02-09 14:38:05 +01:00
fi
fi
2020-10-19 10:44:16 +02:00
# Suppression des logs trop ancien
find var/logs -mindepth 1 -mtime +7 -delete
2019-04-17 17:27:19 +02:00
# Installation des dépendances composer
echo COMPOSER = Install
composer install --quiet
2020-03-03 11:03:18 +01:00
rm -f /var/www/html/ninegate/var/logs/dev.log
2019-04-17 17:27:19 +02:00
# Permissions
./perm.sh www-data
2020-09-15 16:44:59 +02:00
# Copie des polices du projet dans le rep web
cp -rf src/Cadoles/CoreBundle/Resources/public/fonts web/
# Copie de la commande local de base si elle la commande n'existe pas
if [ ! -f src/Cadoles/CoreBundle/Command/LocalCommand.php ]; then
cp -rf scripts/LocalCommand.php src/Cadoles/CoreBundle/Command/LocalCommand.php
fi
2019-04-17 17:27:19 +02:00
# Nettoyage du cache
echo
echo CACHE = Refresh
rm /var/www/html/ninegate/var/cache -rf > /dev/null
php bin/console cache:clear --env=prod --no-debug --quiet
2019-04-17 17:27:19 +02:00
# Migration si nécessaire du schéma de la base
php bin/console doctrine:schema:update --force --env=prod --no-debug --quiet
2019-04-17 17:27:19 +02:00
# Insertion data de base
2020-03-03 11:03:18 +01:00
php bin/console Core:InitData --env=prod
php bin/console Cron:InitData --env=prod
php bin/console Portal:InitData --env=prod
2019-04-17 17:27:19 +02:00
2020-04-15 10:43:15 +02:00
# Passage des scripts
php bin/console Core:Script --env=prod
# Passage des scripts locaux
php bin/console Core:Local --env=prod
2019-04-17 17:27:19 +02:00
# Generation des assets
echo ASSET = Dump
bin/console assetic:dump --env=prod --quiet
2019-04-17 17:27:19 +02:00
# Permissions
./perm.sh www-data
2019-07-16 12:10:32 +02:00
# Server Websocket
2019-07-23 15:32:35 +02:00
if [[ "$ninegate_websocket" = 'oui' ]]
then
echo
2019-09-19 13:46:25 +02:00
/var/www/html/ninegate/scripts/ninegate-websocket.sh
fi
echo