1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lufi_ynh.git synced 2024-09-03 19:36:28 +02:00
lufi_ynh/scripts/upgrade

231 lines
7.6 KiB
Text
Raw Normal View History

2017-04-01 18:16:18 +02:00
#!/bin/bash
2017-04-03 19:21:30 +02:00
#=================================================
2019-03-03 18:04:55 +01:00
# GENERIC START
2017-04-03 19:21:30 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-03-03 18:04:55 +01:00
source _common.sh
2017-04-03 19:21:30 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Loading installation settings..."
2017-04-01 18:16:18 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
2019-03-03 18:04:55 +01:00
path_url=$(ynh_app_setting_get $app path)
2017-04-01 18:16:18 +02:00
is_public=$(ynh_app_setting_get $app is_public)
2017-04-03 19:21:30 +02:00
port=$(ynh_app_setting_get $app port)
final_path=$(ynh_app_setting_get $app final_path)
secret=$(ynh_app_setting_get $app secret)
2019-03-03 18:04:55 +01:00
db_name=$(ynh_app_setting_get $app db_name)
db_user=$db_name
db_pwd=$(ynh_app_setting_get $app psqlpwd)
max_file_size=$(ynh_app_setting_get $app max_file_size)
2019-03-20 00:16:02 +01:00
db_manager=$(ynh_app_setting_get $app db_manager)
2017-04-01 18:16:18 +02:00
2017-04-03 19:21:30 +02:00
#=================================================
# FIX OLD THINGS
#=================================================
if [ "$is_public" = "Yes" ]; then
ynh_app_setting_set $app is_public 1 # Fixe is_public en booléen
is_public=1
elif [ "$is_public" = "No" ]; then
ynh_app_setting_set $app is_public 0
is_public=0
fi
if [ "${#final_path}" -eq 0 ]
then # Si final_path n'est pas renseigné dans la config yunohost, cas d'ancien script, code final_path en dur
final_path=/var/www/$app
fi
if [ -z "$db_pwd" ]; then
2019-03-03 18:04:55 +01:00
# Create postgresql database
ynh_psql_test_if_first_run
db_name=$(ynh_sanitize_dbid "$app")
db_user=$db_name
ynh_app_setting_set "$app" db_name "$db_name"
# Initialize database and store postgres password for upgrade
ynh_psql_setup_db "$db_name" "$db_user"
db_pwd=$(ynh_app_setting_get $app psqlpwd) # Password created in ynh_psql_setup_db function
fi
if [ -z "$max_file_size" ]; then
max_file_size=100 # 100 Mo
fi
# If db_manager is empty, use sqlite for a backward compatibility
if [ -z "$db_manager" ]; then
db_manager="sqlite"
fi
2019-03-03 18:04:55 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_print_info "Backing up the app before upgrading (may take a while)..."
2017-04-01 18:16:18 +02:00
2019-03-03 18:04:55 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
ynh_clean_check_starting
# restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_print_info "Upgrading source files..."
2019-03-03 19:04:08 +01:00
ynh_install_app_dependencies build-essential libssl-dev libio-socket-ssl-perl liblwp-protocol-https-perl libpq-dev postgresql cpanminus
2019-03-03 18:04:55 +01:00
ynh_setup_source "$final_path"
2017-04-01 18:16:18 +02:00
2017-04-03 19:21:30 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Upgrading nginx web server configuration..."
2017-04-03 19:21:30 +02:00
2019-03-03 18:04:55 +01:00
# Create a dedicated nginx config
ynh_add_nginx_config max_file_size
2017-04-03 19:21:30 +02:00
2019-03-03 18:04:55 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_print_info "Making sure dedicated system user exists..."
2017-04-01 18:16:18 +02:00
2019-03-03 18:04:55 +01:00
# Create a dedicated user (if not existing)
ynh_system_user_create $app
2017-04-01 18:16:18 +02:00
2017-04-03 19:21:30 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
2017-04-07 19:55:15 +02:00
# SETUP LUFI
2017-04-03 19:21:30 +02:00
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Configuring lufi..."
2017-04-03 19:21:30 +02:00
2019-03-03 18:04:55 +01:00
cp ../conf/lufi.conf.template "${final_path}/lufi.conf"
ynh_replace_string "__DOMAIN__" "$domain" "${final_path}/lufi.conf"
ynh_replace_string "__PATH__" "$path_url" "${final_path}/lufi.conf"
ynh_replace_string "__PORT__" "$port" "${final_path}/lufi.conf"
ynh_replace_string "__DB_NAME__" "$db_name" "${final_path}/lufi.conf"
ynh_replace_string "__DB_USER__" "$db_user" "${final_path}/lufi.conf"
ynh_replace_string "__DB_PWD__" "$db_pwd" "${final_path}/lufi.conf"
ynh_replace_string "__MAX_FILE_SIZE__" "$max_file_size" "${final_path}/lufi.conf"
2019-03-20 00:16:02 +01:00
ynh_replace_string "__DB_MANAGER__" "$db_manager" "${final_path}/lufi.conf"
2019-03-03 18:52:39 +01:00
if [ $max_file_size -eq 0 ]; then # Comment the limitation line if no limit
ynh_replace_string "max_file_size" "#max_file_size" "${final_path}/lufi.conf"
fi
2019-03-03 18:04:55 +01:00
ynh_replace_string "__SECRET__" "$secret" "${final_path}/lufi.conf"
if [ $is_public -eq 0 ];
then
ynh_replace_string "__IS_PUBLIC__" "" "${final_path}/lufi.conf"
else
ynh_replace_string "__IS_PUBLIC__" "#" "${final_path}/lufi.conf"
fi
ynh_store_file_checksum "${final_path}/lufi.conf"
#=================================================
# SETUP CRON
#=================================================
cp ../conf/cron_lufi /etc/cron.d/$app
ynh_replace_string "__FINALPATH__" "$final_path/" "/etc/cron.d/$app"
chmod +x $final_path/script/lufi
#=================================================
# SECURING FILES AND DIRECTORIES
#=================================================
2019-03-20 00:16:02 +01:00
chown -R $app: "$final_path"
2017-04-03 19:21:30 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Upgrading systemd configuration..."
2017-04-03 19:21:30 +02:00
2019-03-03 18:04:55 +01:00
# Create a dedicated systemd config
ynh_add_systemd_config
2017-04-03 19:21:30 +02:00
#=================================================
2019-03-03 18:04:55 +01:00
# Install lufi's dependencies via carton
2017-04-03 19:21:30 +02:00
#=================================================
2019-03-03 18:04:55 +01:00
pushd $final_path
2019-03-20 00:16:02 +01:00
if [ $db_manager = "postgresql" ]; then
carton install --deployment --without=sqlite --without=mysql
else
carton install --deployment --without=postgresql --without=mysql
fi
2019-03-03 18:04:55 +01:00
popd
2017-04-03 19:21:30 +02:00
#=================================================
2019-03-03 18:04:55 +01:00
# SETUP LOGROTATE
2017-04-03 19:21:30 +02:00
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Upgrading logrotate configuration..."
2017-04-03 19:21:30 +02:00
2019-03-03 18:04:55 +01:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
2017-04-03 19:21:30 +02:00
#=================================================
2019-03-03 18:04:55 +01:00
# ADVERTISE SERVICE IN ADMIN PANEL
2017-04-03 19:21:30 +02:00
#=================================================
2019-03-20 00:16:02 +01:00
# if /var/log/$app/production.log is a symbolic link, then move it to $final_path/log/production.log
if [ ! -L "/var/log/$app/production.log" ]
then
mv "/var/log/$app/production.log" "$final_path/log/production.log"
chown -R $app: "$final_path/log/production.log"
fi
2019-03-03 20:26:09 +01:00
yunohost service add $app --log "$final_path/log/production.log"
2017-04-03 19:21:30 +02:00
#=================================================
2017-04-07 19:55:15 +02:00
# RESTART LUFI
2017-04-03 19:21:30 +02:00
#=================================================
2019-03-03 18:04:55 +01:00
ln -sf "$final_path/log/production.log" "/var/log/$app/production.log"
2019-03-20 00:16:02 +01:00
ynh_systemd_action -n $app -a restart -l "Creating process id file" -p "$final_path/log/production.log"
2017-04-03 19:21:30 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Upgrading SSOwat configuration..."
2017-04-03 19:21:30 +02:00
2019-03-03 18:04:55 +01:00
ynh_app_setting_set $app unprotected_uris "/"
2019-03-08 22:04:09 +01:00
if [ $is_public -eq 0 ]
2019-03-03 18:04:55 +01:00
then
2019-03-08 22:04:09 +01:00
if [ "$path_url" == "/" ]; then
# If the path is /, clear it to prevent any error with the regex.
path_url=""
fi
# Modify the domain to be used in a regex
domain_regex=$(echo "$domain" | sed 's@-@.@g')
ynh_app_setting_set $app protected_regex "$domain_regex$path_url/stats$","$domain_regex$path_url/manifest.webapp$","$domain_regex$path_url/$","$domain_regex$path_url/d/.*$","$domain_regex$path_url/m/.*$"
2017-04-01 18:16:18 +02:00
fi
2017-04-03 19:21:30 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2019-03-03 18:04:55 +01:00
ynh_print_info "Reloading nginx web server..."
systemctl reload nginx
yunohost app ssowatconf
#=================================================
# END OF SCRIPT
#=================================================
2017-04-03 19:21:30 +02:00
2019-03-03 18:04:55 +01:00
ynh_print_info "Upgrade of $app completed"