1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/scripts/upgrade
Jean-Baptiste Holcroft f0da3da5dc Use php and fpm helpers
2018-08-12 01:11:09 +02:00

185 lines
5.4 KiB
Bash

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
path_url=$(ynh_app_setting_get "$app" path)
port=$(ynh_app_setting_get "$app" port)
ssoenabled=$(ynh_app_setting_get "$app" ssoenabled)
public_site=$(ynh_app_setting_get "$app" public_site)
timezone=$(cat /etc/timezone)
final_path=$(ynh_app_setting_get "$app" final_path)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
# If final_path doesn't exist, create it
if [ -z "$final_path" ]; then
final_path="/var/www/$app"
ynh_app_setting_set "$app" final_path "$final_path"
fi
#=================================================
# ACTIVE TRAP
#=================================================
# TODO: activate backup
# Backup the current version of the app
# ynh_backup_before_upgrade
# ynh_clean_setup () {
# restore it if the upgrade fails
# ynh_restore_upgradebackup
# }
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
path_url=$(ynh_normalize_url_path $path_url)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
# Since Movim 0.13, zmq is required
ynh_install_app_dependencies php-gd php-curl php-imagick php-cli php-zmq
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_setup_source "$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# CREATE DEDICATED USER
#=================================================
# Create movim user if not exists and set permissions
ynh_system_user_exists movim \
|| useradd -d /var/www/movim -s /bin/sh movim
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
# Create a dedicated php-fpm config
ynh_add_fpm_config
chown -R movim:www-data "$final_path"
## TODO: consider installation in a subpath
ynh_replace_string "'/ws/'" "'${path_url%/}/ws/'" \
"${final_path}/app/assets/js/movim_websocket.js"
#=================================================
# SET PERMISSIONS
#=================================================
chown -R movim:www-data "$final_path"
find "${final_path}/" -type f -print0 | xargs -0 chmod 0644
find "${final_path}/" -type d -print0 | xargs -0 chmod 0755
chmod 400 "${final_path}/config/db.inc.php"
#=================================================
# install PHP dependencies
#=================================================
curl -sS https://getcomposer.org/installer \
| exec_cmd php -- --install-dir="$final_path"
# Update PHP dependencies using composer
(exec_cmd php composer.phar config --global discard-changes true \
&& exec_cmd php composer.phar install --no-interaction) \
|| ynh_die "Unable to update Movim dependencies."
#=================================================
# Upgrade Movim Databas
#=================================================
# Upgrade Movim database as needed
exec_cmd php mud.php db --set
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
# Reset SSO parameters
ynh_app_setting_delete "$app" protected_uris
ynh_app_setting_delete "$app" skipped_uris
yunohost app clearaccess movim
# Replace old public_site variable (if exists) by ssoenabled
if [ ! -z "$public_site" ]; then
[[ $public_site = "Yes" ]] \
&& ssoenabled="No" \
|| ssoenabled="Yes"
ynh_app_setting_delete "$app" public_site
ynh_app_setting_set "$app" ssoenabled "$ssoenabled"
fi
#=================================================
# SETUP SSOWAT
#=================================================
# SSOwat configuration
if [[ "$ssoenabled" = "No" ]]; then
ynh_app_setting_set "$app" skipped_uris "/"
exec_cmd php mud.php config --xmppwhitelist=$domain
yunohost app ssowatconf
undo_sso_patch
else
ynh_app_setting_set "$app" unprotected_uris "/"
fi
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_replace_string "YHURL" "${domain}${path_url}" ../conf/movim.service
ynh_replace_string "YHDIR" "${final_path}" ../conf/movim.service
ynh_replace_string "YHPORT" "${port}" ../conf/movim.service
ynh_secure_remove /lib/systemd/system/movim.service
cp ../conf/movim.service /etc/systemd/system/
systemctl daemon-reload
#=================================================
# RELOAD SERVICES
#=================================================
# Reload services
service movim restart
service php5-fpm restart
service nginx reload