159 lines
3.5 KiB
Bash
Executable File
159 lines
3.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
bypass=0
|
|
forceClearCache=0
|
|
while getopts "hbc" option
|
|
do
|
|
case $option in
|
|
h)
|
|
echo -e "Update or install all Monarc modules, frontend views and migrate database."
|
|
echo -e "\t-b\tbypass migrate database"
|
|
echo -e "\t-c\tforce clear cache"
|
|
echo -e "\t-h\tdisplay this message"
|
|
exit 1
|
|
;;
|
|
b)
|
|
bypass=1
|
|
echo "Migrate database don't execute !!!"
|
|
;;
|
|
c)
|
|
forceClearCache=1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
pull_if_exists() {
|
|
if [ -d $1 ]; then
|
|
pushd $1
|
|
git pull
|
|
popd
|
|
fi
|
|
}
|
|
|
|
migrate_module() {
|
|
if [[ -d $2 ]]; then
|
|
$1 ./vendor/robmorgan/phinx/bin/phinx migrate -c ./$2/migrations/phinx.php
|
|
if [[ -d "${2}/hooks" && -f "${2}/.git/hooks/pre-commit.sh" ]]; then
|
|
cd $2/.git/hooks
|
|
ln -s ../../hooks/pre-commit.sh pre-commit 2>/dev/null
|
|
chmod u+x pre-commit
|
|
cd $2
|
|
fi
|
|
fi
|
|
}
|
|
|
|
if [[ ! -f "config/autoload/local.php" && $bypass -eq 0 ]]; then
|
|
echo "Configure Monarc (config/autoload/local.php)"
|
|
exit 1
|
|
fi
|
|
|
|
phpcommand=`command -v php`
|
|
if [[ -z "$phpcommand" ]]; then
|
|
echo "PHP must be installed"
|
|
exit 1
|
|
fi
|
|
|
|
gitcommand=`command -v git`
|
|
if [[ -z "$gitcommand" ]]; then
|
|
echo "Git must be installed"
|
|
exit 1
|
|
fi
|
|
|
|
$gitcommand pull
|
|
|
|
if [ $? != 0 ]; then
|
|
echo "A problem occurred while retrieving remote files from repository."
|
|
exit 1
|
|
fi
|
|
|
|
composercommand=`command -v composer`
|
|
if [[ -z "$composercommand" ]]; then
|
|
if [[ ! -f "composer.phar" ]]; then
|
|
# https://getcomposer.org/download/
|
|
# https://getcomposer.org/doc/faqs/how-to-install-composer-programmatically.md
|
|
EXPECTED_SIGNATURE=$(wget -q -O - https://composer.github.io/installer.sig)
|
|
$phpcommand -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
|
|
ACTUAL_SIGNATURE=$($phpcommand -r "echo hash_file('SHA384', 'composer-setup.php');")
|
|
if [[ "$EXPECTED_SIGNATURE" != "$ACTUAL_SIGNATURE" ]]; then
|
|
echo "Error download composer (different hash)"
|
|
rm composer-setup.php
|
|
exit 1
|
|
fi
|
|
rm composer-setup.php
|
|
$phpcommand composer-setup.php --quiet
|
|
fi
|
|
$phpcommand composer.phar update -o
|
|
else
|
|
$composercommand update -o
|
|
fi
|
|
|
|
currentPath=`pwd`
|
|
pathCore="module/MonarcCore"
|
|
if [ -d $pathCore ]; then
|
|
pull_if_exists $pathCore
|
|
else
|
|
pathCore="vendor/monarc/core"
|
|
fi
|
|
pathBO="module/MonarcBO"
|
|
if [ -d $pathBO ]; then
|
|
pull_if_exists $pathBO
|
|
else
|
|
pathBO="vendor/monarc/backoffice"
|
|
fi
|
|
|
|
if [[ -d node_modules && -d node_modules/ng_anr ]]; then
|
|
if [[ -d node_modules/ng_anr/.git ]]; then
|
|
pull_if_exists node_modules/ng_backoffice
|
|
pull_if_exists node_modules/ng_client
|
|
pull_if_exists node_modules/ng_anr
|
|
else
|
|
npm update
|
|
fi
|
|
else
|
|
npm install
|
|
fi
|
|
|
|
if [[ $bypass -eq 0 ]]; then
|
|
migrate_module $phpcommand $pathCore
|
|
migrate_module $phpcommand $pathBO
|
|
fi
|
|
|
|
if [ -d node_modules/ng_backoffice ]; then
|
|
cd node_modules/ng_backoffice
|
|
npm install
|
|
cd ../..
|
|
fi
|
|
|
|
if [ -d node_modules/ng_client ]; then
|
|
cd node_modules/ng_client
|
|
npm install
|
|
cd ../..
|
|
fi
|
|
|
|
./scripts/link_modules_resources.sh
|
|
./scripts/compile_translations.sh
|
|
|
|
if [[ $forceClearCache -eq 1 ]]; then
|
|
# Clear doctrine cache
|
|
# Move to MonarcCore Module.php
|
|
$phpcommand ./public/index.php orm:clear-cache:metadata
|
|
$phpcommand ./public/index.php orm:clear-cache:query
|
|
$phpcommand ./public/index.php orm:clear-cache:result
|
|
|
|
# Clear ZF2 cache
|
|
if [ -e ./data/cache/upgrade ]
|
|
then
|
|
touch ./data/cache/upgrade && chmod 777 ./data/cache/upgrade
|
|
fi
|
|
fi
|
|
|
|
if [[ $forceClearCache -eq 0 && $bypass -eq 0 ]]; then
|
|
# Clear ZF2 cache
|
|
if [ -e ./data/cache/upgrade ]
|
|
then
|
|
touch ./data/cache/upgrade && chmod 777 ./data/cache/upgrade
|
|
fi
|
|
fi
|
|
|
|
exit 0
|