2017-06-08 13:32:01 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-15 18:45:18 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-06-11 03:13:15 +02:00
|
|
|
|
2023-03-27 21:53:20 +02:00
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
2023-01-31 16:53:24 +01:00
|
|
|
|
2017-09-15 18:45:18 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-05-10 18:32:31 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2018-06-19 03:40:50 +02:00
|
|
|
|
2024-05-10 18:32:31 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep=".env"
|
2018-08-02 07:47:27 +02:00
|
|
|
|
2023-03-27 21:45:01 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-01-23 23:07:14 +01:00
|
|
|
|
2020-06-11 03:13:15 +02:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2023-03-27 21:53:20 +02:00
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=1
|
2020-06-11 03:13:15 +02:00
|
|
|
|
2022-01-30 02:32:04 +01:00
|
|
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
2020-06-11 03:13:15 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2024-05-11 12:01:28 +02:00
|
|
|
ynh_script_progression --message="Updating $app's configuration files..." --weight=1
|
2020-06-11 03:13:15 +02:00
|
|
|
|
2022-08-15 15:18:03 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2017-09-15 18:45:18 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
2020-06-11 03:13:15 +02:00
|
|
|
# UPDATE PHP DEPENDENCIES
|
2020-04-29 19:58:50 +02:00
|
|
|
#=================================================
|
2023-03-27 21:53:20 +02:00
|
|
|
ynh_script_progression --message="Updating php dependencies..."
|
2017-06-13 22:19:11 +02:00
|
|
|
|
2023-03-27 21:53:20 +02:00
|
|
|
ynh_secure_remove --file="$install_dir/vendor"
|
2023-03-27 21:45:01 +02:00
|
|
|
ynh_exec_warn_less ynh_install_composer --phpversion="$phpversion" --workdir="$install_dir"
|
2018-06-19 03:40:50 +02:00
|
|
|
|
2023-03-27 21:45:01 +02:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-01-30 02:32:04 +01:00
|
|
|
|
2020-06-11 03:13:15 +02:00
|
|
|
#=================================================
|
2022-01-23 23:07:14 +01:00
|
|
|
# UPDATE A CONFIG FILE
|
2020-06-11 03:13:15 +02:00
|
|
|
#=================================================
|
2022-08-15 15:18:03 +02:00
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
2020-06-11 03:13:15 +02:00
|
|
|
|
2023-03-27 21:45:01 +02:00
|
|
|
ynh_backup_if_checksum_is_different --file="$install_dir/.env"
|
2018-06-19 03:40:50 +02:00
|
|
|
|
2023-11-08 17:34:24 +01:00
|
|
|
ynh_add_config --template=".env" --destination="$install_dir/.env"
|
2020-06-11 03:13:15 +02:00
|
|
|
|
2024-05-03 22:55:08 +02:00
|
|
|
#==================================================
|
|
|
|
# FIX PHP VERSION
|
|
|
|
#==================================================
|
|
|
|
ynh_script_progression --message="Fixing php version in package.json..." --weight=1
|
|
|
|
|
|
|
|
ynh_replace_string --target_file="$install_dir/package.json" --match_string="php artisan lang:generate -vvv" --replace_string="php$phpversion artisan lang:generate -vvv"
|
|
|
|
|
2020-06-11 03:13:15 +02:00
|
|
|
#=================================================
|
|
|
|
# DEPLOYMENT
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Deploying..."
|
2018-06-21 20:45:07 +02:00
|
|
|
|
2023-03-27 21:45:01 +02:00
|
|
|
pushd "$install_dir"
|
2022-01-30 02:32:04 +01:00
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH yarn install
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH yarn run production
|
2022-08-30 22:57:33 +02:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app php$phpversion artisan monica:update --force
|
2020-06-11 03:13:15 +02:00
|
|
|
popd
|
2017-09-15 18:45:18 +02:00
|
|
|
|
2023-03-27 21:45:01 +02:00
|
|
|
if [ -f $install_dir/storage/oauth-private.key ]; then
|
2023-03-27 21:53:20 +02:00
|
|
|
mobile_id=$(ynh_app_setting_get --app=$app --key=mobile_id)
|
|
|
|
mobile_key=$(ynh_app_setting_get --app=$app --key=mobile_key)
|
2023-03-27 21:45:01 +02:00
|
|
|
ynh_replace_string --match_string="mobile_id" --replace_string="$mobile_id" --target_file="$install_dir/.env"
|
|
|
|
ynh_replace_string --match_string="mobile_key" --replace_string="$mobile_key" --target_file="$install_dir/.env"
|
2018-10-09 06:21:40 +02:00
|
|
|
else
|
2023-03-27 21:45:01 +02:00
|
|
|
pushd "$install_dir"
|
2022-01-30 02:32:04 +01:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app php$phpversion artisan passport:keys
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app php$phpversion artisan passport:client --password -n > key.txt
|
2020-06-11 03:13:15 +02:00
|
|
|
mobile_id=$( tail -2 key.txt | head -1 | cut -c 12- )
|
|
|
|
mobile_key=$( tail -1 key.txt | cut -c 16- )
|
2023-03-27 21:45:01 +02:00
|
|
|
ynh_replace_string --match_string="mobile_id" --replace_string="$mobile_id" --target_file="$install_dir/.env"
|
|
|
|
ynh_replace_string --match_string="mobile_key" --replace_string="$mobile_key" --target_file="$install_dir/.env"
|
2020-06-11 03:13:15 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=mobile_id --value=$mobile_id
|
|
|
|
ynh_app_setting_set --app=$app --key=mobile_key --value=$mobile_key
|
2023-03-27 21:53:20 +02:00
|
|
|
ynh_secure_remove --file="$install_dir/key.txt"
|
2020-06-11 03:13:15 +02:00
|
|
|
popd
|
2018-10-09 06:21:40 +02:00
|
|
|
fi
|
2023-03-27 21:45:01 +02:00
|
|
|
pushd "$install_dir"
|
2022-01-30 02:32:04 +01:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app php$phpversion artisan config:cache
|
|
|
|
popd
|
2020-04-29 19:58:50 +02:00
|
|
|
|
2020-06-11 03:13:15 +02:00
|
|
|
# Calculate and store the config file checksum into the app settings
|
2023-03-27 21:45:01 +02:00
|
|
|
ynh_store_file_checksum --file="$install_dir/.env"
|
2020-06-11 03:13:15 +02:00
|
|
|
|
2023-03-27 21:45:01 +02:00
|
|
|
chmod 400 "$install_dir/.env"
|
|
|
|
chown $app:$app "$install_dir/.env"
|
2017-09-15 18:45:18 +02:00
|
|
|
|
2023-04-08 13:34:00 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL THE CRON FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setuping a cron..." --weight=1
|
|
|
|
|
2024-05-10 18:32:31 +02:00
|
|
|
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
|
2023-04-08 13:34:00 +02:00
|
|
|
|
|
|
|
chown root: "/etc/cron.d/$app"
|
|
|
|
chmod 644 "/etc/cron.d/$app"
|
|
|
|
|
2020-04-29 19:58:50 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-08-15 15:18:03 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|