1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ffsync_ynh.git synced 2024-09-03 18:26:38 +02:00
ffsync_ynh/scripts/upgrade

183 lines
5.3 KiB
Text
Raw Normal View History

2015-02-13 18:10:02 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
app=$YNH_APP_INSTANCE_NAME
2015-02-13 18:10:02 +01:00
# Retrieve arguments
domain=$(ynh_app_setting_get "$app" domain)
path_url=$(ynh_app_setting_get "$app" path)
db_name=$(ynh_app_setting_get "$app" db_name)
2017-11-16 23:23:51 +01:00
db_pwd=$(ynh_app_setting_get "$app" mysqlpwd)
db_user=$app
final_path=$(ynh_app_setting_get "$app" final_path)
secret=$(ynh_app_setting_get "$app" secret)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
# If db_name doesn't exist, create it
if [ -z "$db_name" ]; then
db_name=$(ynh_sanitize_dbid "$app")
ynh_app_setting_set $app db_name "$db_name"
fi
2015-02-13 18:10:02 +01:00
# If final_path doesn't exist, create it
if [ -z "$final_path" ]; then
2018-08-04 00:35:34 +02:00
final_path=/opt/yunohost/$app
ynh_app_setting_set "$app" final_path "$final_path"
2015-02-13 18:10:02 +01:00
fi
# If path_url doesn't exist, create it
if [ -z "$path_url" ]; then
path_url=$(ynh_app_setting_get "$app" path)
ynh_app_setting_set "$app" path "$path_url"
ynh_app_setting_delete "$app" path
fi
2017-11-16 23:23:51 +01:00
# Detect old installation style
2018-08-04 00:35:34 +02:00
if [ -e /etc/init.d/ffsync ]; then
2017-11-16 23:23:51 +01:00
service ffsync stop
update-rc.d -f ffsync remove
ynh_secure_remove /etc/init.d/ffsync
ynh_secure_remove /var/log/ffsync.log
ynh_secure_remove /opt/yunohost/ffsync
2018-07-05 23:21:03 +02:00
yunohost service remove "$app"
2017-11-16 23:23:51 +01:00
fi
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
# 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
#=================================================
# INSTALL DEPENDENCIES
#=================================================
# Check depends installation
2018-06-28 23:09:33 +02:00
ynh_install_app_dependencies python-dev python-virtualenv \
2018-08-03 23:42:47 +02:00
uwsgi uwsgi-plugin-python \
`# ARM support: ` \
build-essential libssl-dev libffi-dev
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source "$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
# Create a dedicated nginx config
ynh_add_nginx_config
if [ "$path_url" == "/" ]
2015-02-13 18:10:02 +01:00
then
# $finalnginxconf comes from ynh_add_nginx_config
# uwsgi_param is only needed for non-root installation
ynh_replace_string "uwsgi_param " "#uwsgi_param " "$finalnginxconf"
ynh_replace_string "uwsgi_modifier1 " "#uwsgi_modifier1 " "$finalnginxconf"
2015-02-13 18:10:02 +01:00
fi
2018-09-06 14:57:35 +02:00
ynh_store_file_checksum "$finalnginxconf"
systemctl reload nginx
#=================================================
# CREATE DEDICATED USER
#=================================================
# Create a system user
ynh_system_user_create "$app"
2018-07-05 23:21:03 +02:00
#=================================================
# pip installation
#=================================================
2019-02-12 20:15:04 +01:00
virtualenv --python=$(which python2 python | head -n 1) "$final_path/local"
2018-07-05 23:21:03 +02:00
# Init virtualenv
(
set +o nounset
source "$final_path/local/bin/activate"
set -o nounset
cd "$final_path"
pip install --upgrade pip
2019-02-12 20:15:04 +01:00
pip install --upgrade pyramid_chameleon
2018-07-05 23:21:03 +02:00
CFLAGS="-Wno-error -Wno-error=format-security" \
ARCHFLAGS="-Wno-error=unused-command-line-argument-hard-error-in-future" \
2019-02-12 20:15:04 +01:00
pip install --upgrade --requirement "$final_path/requirements.txt"
2018-07-05 23:21:03 +02:00
python "$final_path/setup.py" develop
touch "$final_path/local/COMPLETE"
)
2018-08-20 23:55:00 +02:00
# Add nice homepage
cp -r ../sources/page $final_path/syncserver/
(cd "$final_path/syncserver" && patch -p1 < $YNH_CWD/../sources/homepage.patch) || echo "Unable to apply patches"
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2018-08-22 20:49:19 +02:00
chown $app -R $final_path
chmod u=rwX,g=rX,o= -R $final_path
#=================================================
# SETUP UWSGI
#=================================================
# create config file syncserver.ini
rm "$final_path/syncserver.ini"
ln -s "/etc/uwsgi/apps-available/$app.ini" "$final_path/syncserver.ini"
# configure uwsgi
ynh_add_uwsgi_service 'domain secret db_user db_pwd db_name'
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP SSOWAT
#=================================================
ynh_app_setting_set "$app" skipped_uris "/"