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

126 lines
3.9 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
path_url=$(ynh_app_setting_get $app path)
final_path=$(ynh_app_setting_get $app final_path)
db_name=$(ynh_app_setting_get $app db_name)
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
admin_mail=$(ynh_app_setting_get $app email)
#=================================================
# 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
2018-09-28 18:25:44 +02:00
#=================================================
# CHECK THE PATH
#=================================================
2018-09-28 17:53:46 +02:00
2018-09-28 18:25:44 +02:00
# Normalize the URL path syntax
path_url=$(ynh_normalize_url_path $path_url)
2018-09-28 17:53:46 +02:00
# Add Dependencies
ynh_install_app_dependencies 'php-mbstring|base-files(<<9.0)' php5-cli 'php5-imagick|php-imagick' php5-gd php5-mcrypt 'php-xml|base-files(<<9.0)'
# 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
2018-09-28 18:10:58 +02:00
if [ -f $final_path/.htconfig.php ]; then
rm "$final_path/.htconfig.php"
fi
# Download, check integrity, uncompress and patch the source from app.src
2018-09-28 17:53:46 +02:00
ynh_setup_source "$final_path"
2018-09-28 18:25:44 +02:00
# Copy config file for correct place
2018-09-28 17:53:46 +02:00
cp -f "/var/www/$app/config/local-sample.ini.php" "/var/www/$app/config/local.ini.php"
2018-09-28 18:25:44 +02:00
# Replace strings in config file
2018-09-28 17:53:46 +02:00
ynh_replace_string "your.mysqlhost.com" "localhost" "$final_path/config/local.ini.php"
ynh_replace_string "mysqlusername" "$db_name" "$final_path/config/local.ini.php"
ynh_replace_string "mysqldatabasename" "$db_name" "$final_path/config/local.ini.php"
ynh_replace_string "mysqlpassword" "$db_pwd" "$final_path/config/local.ini.php"
ynh_replace_string "admin_email =" "admin_email = $admin_mail" "$final_path/config/local.ini.php"
ynh_replace_string "register_policy = REGISTER_OPEN" "register_policy = REGISTER_CLOSED" "$final_path/config/local.ini.php"
#Copy Addons
2018-09-28 18:10:58 +02:00
rm -Rf "$final_path/addon"
ynh_setup_source "$final_path/addon" "addons"
# 3 - some extra folders
sudo chmod -R 775 $final_path/view/smarty3
#=================================================
# CREATE DEDICATED USER
#=================================================
# Create a system user
ynh_system_user_create $app
# Set app as owner
chown -R $app: $final_path
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
# Create a dedicated php-fpm config
ynh_add_fpm_config
# Verify the checksum and backup the file if it's different
ynh_backup_if_checksum_is_different "$final_path/config/local.ini.php"
# Recalculate and store the config file checksum into the app settings
ynh_store_file_checksum "$final_path/config/local.ini.php"
2018-09-28 18:25:44 +02:00
# Set up cron job
2018-06-11 12:37:15 +02:00
ynh_replace_string "__YNH_WWW_PATH__" "$final_path" ../conf/poller-cron
ynh_replace_string "__USER__" "$app" ../conf/poller-cron
sudo cp ../conf/poller-cron /etc/cron.d/$app
2018-06-06 03:28:30 +02:00
# Run composer
2018-06-08 10:53:10 +02:00
(cd $final_path && sudo php bin/composer.phar install)
2018-06-06 03:28:30 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
# unprotected_uris allows SSO credentials to be passed anyway.
ynh_app_setting_set $app skipped_uris "/"
# Reload services
sudo service php5-fpm reload || true
sudo service nginx reload || true
sudo yunohost app ssowatconf