2019-07-29 19:50:23 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2022-01-29 15:29:42 +01:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
|
|
|
|
2022-02-01 16:43:20 +01:00
|
|
|
# If fpm_footprint doesn't exist, create it
|
2023-02-26 16:31:30 +01:00
|
|
|
if [ -z "${fpm_footprint:-}" ]; then
|
2022-10-14 09:41:18 +02:00
|
|
|
fpm_footprint=low
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If fpm_free_footprint doesn't exist, create it
|
2023-02-26 16:31:30 +01:00
|
|
|
if [ -z "${fpm_free_footprint:-}" ]; then
|
2022-10-14 09:41:18 +02:00
|
|
|
fpm_free_footprint=0
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint
|
2022-02-01 16:43:20 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If fpm_usage doesn't exist, create it
|
2023-02-26 16:31:30 +01:00
|
|
|
if [ -z "${fpm_usage:-}" ]; then
|
2022-10-14 09:41:18 +02:00
|
|
|
fpm_usage=low
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
|
2022-02-01 16:43:20 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If auth_method doesn't exist, create it
|
2023-02-26 16:31:30 +01:00
|
|
|
if [ -z "${auth_method:-}" ]; then
|
2022-02-01 16:43:20 +01:00
|
|
|
auth_method="standard"
|
|
|
|
ynh_app_setting_set --app=$app --key=auth_method --value=$auth_method
|
|
|
|
fi
|
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-02-26 16:31:30 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep=".env public/uploads storage/uploads"
|
2021-02-01 14:42:41 +01:00
|
|
|
fi
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2023-02-26 16:31:30 +01:00
|
|
|
chmod 755 $install_dir
|
|
|
|
chmod -R o-rwx $install_dir
|
|
|
|
chown -R $app:www-data $install_dir
|
2022-01-29 15:29:42 +01:00
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
#=================================================
|
2023-02-26 16:31:30 +01:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2021-02-01 14:42:41 +01:00
|
|
|
#=================================================
|
2023-02-26 16:31:30 +01:00
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
2021-02-01 14:42:41 +01:00
|
|
|
|
|
|
|
# Create a dedicated PHP-FPM config
|
2022-03-02 08:28:16 +01:00
|
|
|
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
|
2022-12-30 12:09:15 +01:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-02-26 16:31:30 +01:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
yunohost service add $app --description="BookStack Queue Worker" --log="/var/log/$app/$app.log"
|
|
|
|
|
2019-07-29 19:50:23 +02:00
|
|
|
#=================================================
|
2021-03-02 22:07:25 +01:00
|
|
|
# INSTALL LYCHEE WITH COMPOSER
|
2019-07-29 19:50:23 +02:00
|
|
|
#=================================================
|
2021-03-02 22:07:25 +01:00
|
|
|
ynh_script_progression --message="Installing BookStack with Composer..." --weight=5
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2021-03-02 22:07:25 +01:00
|
|
|
# Install composer
|
2022-03-02 08:28:16 +01:00
|
|
|
ynh_install_composer
|
2022-02-01 16:43:20 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
2022-06-25 18:57:45 +02:00
|
|
|
#ynh_script_progression --message="Adding a configuration file..." --weight=1
|
2022-02-01 16:43:20 +01:00
|
|
|
|
2023-02-26 16:31:30 +01:00
|
|
|
#timezone="$(cat /etc/timezone)"
|
|
|
|
#app_url_domain="https://$domain${path%/}"
|
2022-02-01 16:43:20 +01:00
|
|
|
|
2023-02-26 16:31:30 +01:00
|
|
|
#ynh_add_config --template=../conf/.env.example --destination=$install_dir/.env
|
2021-02-01 14:42:41 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FINAL BOOKSTACK INSTALL
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Install BookStack" --weight=5
|
|
|
|
|
2023-02-26 16:31:30 +01:00
|
|
|
pushd $install_dir
|
2022-01-29 15:29:42 +01:00
|
|
|
php$phpversion artisan migrate --force
|
|
|
|
php$phpversion artisan key:generate --force
|
|
|
|
php$phpversion artisan cache:clear
|
|
|
|
php$phpversion artisan config:clear
|
|
|
|
php$phpversion artisan view:clear
|
2021-02-01 14:42:41 +01:00
|
|
|
popd
|
|
|
|
|
2022-05-25 18:35:13 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
|
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-07-29 19:50:23 +02:00
|
|
|
|
2021-02-01 14:42:41 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|