2023-01-17 17:45:54 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2023-02-01 03:07:38 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2023-09-28 21:12:31 +02:00
|
|
|
|
2023-02-01 03:07:38 +01:00
|
|
|
# Move config.php to temp folder
|
|
|
|
# Can't use the --keep="config.php" option
|
2023-09-28 21:02:20 +02:00
|
|
|
pushd "$install_dir"
|
2023-02-01 03:07:38 +01:00
|
|
|
ynh_exec_warn_less mv ./config.php /tmp/
|
|
|
|
popd
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-09-28 21:02:20 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace=1
|
2023-01-17 17:45:54 +01:00
|
|
|
|
2023-12-04 17:13:59 +01:00
|
|
|
ynh_exec_warn_less mkdir "$install_dir/soap_cache"
|
|
|
|
ynh_exec_warn_less mkdir "$install_dir/composer"
|
2023-09-28 21:12:31 +02:00
|
|
|
|
|
|
|
chmod 750 "$install_dir"
|
2023-09-28 21:02:20 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2023-01-17 17:45:54 +01:00
|
|
|
|
2023-09-28 21:02:20 +02:00
|
|
|
pushd "$install_dir"
|
2023-01-23 12:23:11 +01:00
|
|
|
ynh_exec_warn_less mv ./www_data/* .
|
2023-02-01 03:01:15 +01:00
|
|
|
ynh_exec_warn_less mv /tmp/config.php .
|
2023-12-04 17:07:21 +01:00
|
|
|
|
2024-02-20 02:50:31 +01:00
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < db/demo.sql
|
|
|
|
|
2023-12-04 17:07:21 +01:00
|
|
|
ynh_script_progression --message="Checking if a database migration is needed"
|
|
|
|
if ynh_compare_current_package_version --comparison le --version 7.0~ynh5
|
|
|
|
then
|
2024-01-22 18:05:41 +01:00
|
|
|
ynh_script_progression --message="7.0.5 to 8.0 database migration required, migrating"
|
|
|
|
ynh_add_config --template="../conf/migrate_7.0.5.sql" --destination="$install_dir/migrate_7.0.5.sql"
|
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < migrate_7.0.5.sql
|
|
|
|
ynh_add_config --template="../conf/migrate_7.0.6.sql" --destination="$install_dir/migrate_7.0.6.sql"
|
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < migrate_7.0.6.sql
|
2024-02-19 18:36:47 +01:00
|
|
|
ynh_add_config --template="../conf/migrate_9.0.3.sql" --destination="$install_dir/migrate_9.0.3.sql"
|
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < migrate_9.0.3.sql
|
2023-12-04 17:07:21 +01:00
|
|
|
else
|
2024-01-29 19:24:46 +01:00
|
|
|
if ynh_compare_current_package_version --comparison le --version 7.0~ynh6
|
2024-01-22 18:05:41 +01:00
|
|
|
then
|
|
|
|
ynh_script_progression --message="7.0.6 to 8.0 database migration required, migrating"
|
|
|
|
ynh_add_config --template="../conf/migrate_7.0.6.sql" --destination="$install_dir/migrate_7.0.6.sql"
|
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < migrate_7.0.6.sql
|
2024-02-19 18:36:47 +01:00
|
|
|
ynh_add_config --template="../conf/migrate_9.0.3.sql" --destination="$install_dir/migrate_9.0.3.sql"
|
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < migrate_9.0.3.sql
|
2024-01-22 18:05:41 +01:00
|
|
|
else
|
2024-02-19 18:36:47 +01:00
|
|
|
if ynh_compare_current_package_version --comparison le --version 9.0~ynh3
|
|
|
|
then
|
|
|
|
ynh_add_config --template="../conf/migrate_9.0.3.sql" --destination="$install_dir/migrate_9.0.3.sql"
|
|
|
|
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < migrate_9.0.3.sql
|
|
|
|
else
|
|
|
|
ynh_script_progression --message="7.0.6 to 8.0 database migration not required since package > 7.0.6"
|
|
|
|
fi
|
2024-01-22 18:05:41 +01:00
|
|
|
fi
|
2023-12-04 17:07:21 +01:00
|
|
|
fi
|
2024-01-29 19:24:46 +01:00
|
|
|
ynh_script_progression --message="You shouldn't see this"
|
2023-12-04 17:07:21 +01:00
|
|
|
|
2024-03-08 05:42:32 +01:00
|
|
|
ynh_script_progression --message="Checking if a config panel migration is needed"
|
|
|
|
if ynh_compare_current_package_version --comparison le --version 10.0~ynh1
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Creating config panel variables"
|
|
|
|
csv_sep=";"
|
|
|
|
creation_compte=true
|
|
|
|
connexion_compte=true
|
|
|
|
ynh_app_setting_set --app=$app --key=csv_sep --value="$csv_sep"
|
|
|
|
ynh_app_setting_set --app=$app --key=creation_compte --value="$creation_compte"
|
|
|
|
ynh_app_setting_set --app=$app --key=connexion_compte --value="$connexion_compte"
|
|
|
|
else
|
|
|
|
ynh_script_progression --message="No config panel migration required"
|
|
|
|
fi
|
2023-01-20 17:06:13 +01:00
|
|
|
popd
|
|
|
|
|
2023-12-04 17:13:59 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# INSTALL COMPOSER DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installing composer dependencies..." --weight=1
|
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_install_composer --phpversion="$phpversion" --composerversion="$YNH_COMPOSER_VERSION" --workdir="$install_dir"
|
|
|
|
|
|
|
|
# worckaround while https://github.com/chartjs/Chart.js/issues/11478 is not fixed
|
|
|
|
ynh_exec_warn_less mkdir "$install_dir/vendor/chartjs"
|
2024-01-31 07:21:16 +01:00
|
|
|
ynh_exec_warn_less curl -o "$install_dir/vendor/chartjs"/chart.js https://cdn.jsdelivr.net/npm/chart.js
|
2024-01-29 19:19:37 +01:00
|
|
|
ynh_exec_warn_less curl -o "$install_dir/vendor/chartjs"/chart.umd.js.map https://cdn.jsdelivr.net/npm/chart.js@4.4.1/dist/chart.umd.js.map
|
2023-12-04 17:13:59 +01:00
|
|
|
|
2023-01-17 17:45:54 +01:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated PHP-FPM config
|
2023-09-28 21:12:31 +02:00
|
|
|
ynh_add_fpm_config
|
2023-01-17 17:45:54 +01:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-09-28 21:12:31 +02:00
|
|
|
ynh_add_config --template="../conf/moncycleapp.cron" --destination="/etc/cron.d/$app"
|
|
|
|
chown root: "/etc/cron.d/$app"
|
|
|
|
chmod 644 "/etc/cron.d/$app"
|
2023-01-17 17:45:54 +01:00
|
|
|
|
2024-01-31 09:37:25 +01:00
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
|
|
|
|
|
|
|
ynh_add_config --template="../conf/config.php" --destination="$install_dir/config.php"
|
|
|
|
|
|
|
|
chmod 400 "$install_dir/config.php"
|
|
|
|
chown $app:$app "$install_dir/config.php"
|
|
|
|
|
2024-02-21 06:10:19 +01:00
|
|
|
# Remove old version file and replace it
|
|
|
|
ynh_secure_remove --file="$install_dir/api/version.json"
|
2024-02-20 16:23:05 +01:00
|
|
|
ynh_add_config --template="../conf/version.json" --destination="$install_dir/api/version.json"
|
2024-02-20 18:21:23 +01:00
|
|
|
chmod 655 "$install_dir/api/version.json"
|
2024-02-20 17:13:42 +01:00
|
|
|
chown $app:www-data "$install_dir/api/version.json"
|
|
|
|
|
2023-01-17 17:45:54 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|