1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/piwigo_ynh.git synced 2024-09-03 20:06:03 +02:00
piwigo_ynh/scripts/upgrade

168 lines
6.6 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
2021-05-16 19:41:11 +02:00
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2017-01-03 18:32:00 +01:00
2019-05-18 15:03:55 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2017-09-22 21:21:52 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-05-18 03:42:43 +02:00
# sets extended pattern matching options in the bash shell
shopt -s extglob
2019-05-18 15:03:55 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=3
# Create tmp directory and fetch app inside
2021-05-16 19:41:11 +02:00
tmpdir="$(ynh_smart_mktemp --min_size=300)"
ynh_setup_source --dest_dir="$tmpdir"
2019-02-17 19:28:37 +01:00
2021-05-16 19:41:11 +02:00
# Fetch needed plugins
mkdir -p $tmpdir/plugins/Ldap_Login
ynh_setup_source --dest_dir="$tmpdir/plugins/Ldap_Login" --source_id=ldap_plugin
ynh_setup_source --dest_dir="$tmpdir/plugins" --source_id=log_failed_logins_plugin
2021-05-18 03:42:43 +02:00
# Install files and set permissions
2023-10-05 21:38:07 +02:00
cp -a $tmpdir/!(upload|_data|galleries) $install_dir
2021-05-18 03:42:43 +02:00
# Backward compatibility:
# If the _data subdirectory wasn't already moved to /home/yunohost.app/$app,
# then move it there
2023-10-05 21:38:07 +02:00
if [ ! -h $install_dir/_data ] ; then
mv $install_dir/_data $data_dir
ln -sd $data_dir/_data $install_dir/_data
2021-05-18 03:42:43 +02:00
fi
# Backward compatibility:
# If the galleries subdirectory wasn't already moved to /home/yunohost.app/$app,
# then move it there
2023-10-05 21:38:07 +02:00
if [ ! -h $install_dir/galleries ] ; then
mv $install_dir/galleries $data_dir
ln -sd $data_dir/galleries $install_dir/galleries
2021-05-18 03:42:43 +02:00
fi
ynh_secure_remove --file="$tmpdir"
2019-05-18 15:03:55 +02:00
fi
2023-10-05 21:38:07 +02:00
chmod 750 "$data_dir"
chmod -R o-rwx "$data_dir"
chown -R $app:www-data "$data_dir"
2021-05-18 03:42:43 +02:00
2023-10-05 21:38:07 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-05-18 03:42:43 +02:00
2019-02-17 19:28:37 +01:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=3
2019-02-17 19:28:37 +01:00
# Create a dedicated PHP-FPM config
2023-12-05 01:34:25 +01:00
ynh_add_fpm_config
2022-06-24 05:33:16 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
2019-02-17 19:28:37 +01:00
# SPECIFIC UPGRADE
#=================================================
2019-02-17 19:28:37 +01:00
# UPGRADE APPLICATION WITH CURL
#=================================================
ynh_script_progression --message="Upgrading Piwigo with cURL..." --weight=6
# Reload NGINX
2023-10-05 21:48:46 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-17 19:28:37 +01:00
if [ "$language" = "fr" ] ; then
applanguage="fr_FR"
else
applanguage="en_UK"
fi
# Upgrade Piwigo via cURL
# FIXME : Why Curl ... Why can't we trigger the migration from the command line somehow ...
#ynh_local_curl "/upgrade.php?language=$applanguage&now=true" "language=$applanguage" "username=$admin" "password=$admin_pwd"
2017-09-22 21:21:52 +02:00
#=================================================
# CONFIGURE PIWIGO
#=================================================
ynh_script_progression --message="Configuring Piwigo..."
# Change local config
2023-12-27 13:48:16 +01:00
ynh_add_config --template="config.inc.php" --destination="$install_dir/local/config/config.inc.php"
2019-02-17 19:28:37 +01:00
2021-06-16 00:09:21 +02:00
# Setup database in local/config/database.inc.php
2023-12-27 13:48:16 +01:00
ynh_add_config --template="database.inc.php" --destination="$install_dir/local/config/database.inc.php"
2019-02-17 19:28:37 +01:00
2023-10-05 21:38:07 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2017-09-22 21:21:52 +02:00
#=================================================
# CONFIGURE LDAP PLUGIN
2017-09-22 21:21:52 +02:00
#=================================================
2019-05-18 15:03:55 +02:00
ynh_script_progression --message="Configuring LDAP plugin..."
2017-09-22 21:21:52 +02:00
# Disable LDAP plugin to avoid warning messages during API call
ynh_mysql_connect_as --user=$db_name --password=$db_pwd --database=$db_name <<< "DELETE FROM plugins WHERE id='Ldap_Login';"
# Activate the LDAP plugin using the WS API
# Login with admin account
# FIXME: Is this stuff really needed ... isn't there a way to enable the damn LDAP login plugin from the command line or something ...
#ynh_local_curl "/ws.php?format=json" "method=pwg.session.login" "username=$admin" "password=$admin_pwd"
2021-08-26 23:39:52 +02:00
# Get session token
status=$(ynh_local_curl "/ws.php?format=json" "method=pwg.session.getStatus")
pwg_token=$(jq --raw-output .result.pwg_token <<< $status)
# Activate the Ldap_Login plugin
ynh_local_curl "/ws.php?format=json" "method=pwg.plugins.performAction" "action=activate" "plugin=Ldap_Login" "pwg_token=$pwg_token"
2021-08-26 23:39:52 +02:00
# Log out
ynh_local_curl "/ws.php?format=json" "method=pwg.session.logout"
# Edit Ldap_Login plugin configuration
ynh_mysql_connect_as --user=$db_name --password=$db_pwd --database=$db_name <<< "UPDATE piwigo_ldap_login_config SET value='ou=users,dc=yunohost,dc=org' WHERE param = 'ld_basedn';
UPDATE piwigo_ldap_login_config SET value='uid' WHERE param = 'ld_user_attr';
UPDATE piwigo_ldap_login_config SET value='' WHERE param = 'ld_binddn';
UPDATE piwigo_ldap_login_config SET value='0' WHERE param = 'allow_new_users';
UPDATE piwigo_ldap_login_config SET value='0' WHERE param = 'ld_group_user_active';"
# Remove configuration file for older plugin version
2023-10-05 21:38:07 +02:00
if [ -f $install_dir/plugins/Ldap_Login/data.dat ] ; then
2023-10-05 21:48:46 +02:00
ynh_secure_remove --file=$install_dir/plugins/Ldap_Login/data.dat
fi
2021-05-16 19:41:11 +02:00
#=================================================
# GENERIC FINALIZATION
2019-02-17 19:28:37 +01:00
#=================================================
# UPGRADE FAIL2BAN
#=================================================
ynh_script_progression --message="Reconfiguring Fail2Ban..." --weight=8
2019-02-17 19:28:37 +01:00
# Configure and activate log_failed_logins plugin
2019-05-18 15:03:55 +02:00
ynh_mysql_connect_as --user=$db_name --password=$db_pwd --database=$db_name <<< "INSERT INTO plugins (id,state,version) VALUES ('log_failed_logins','active','1.2');" 2>&1 > /dev/null || ynh_mysql_connect_as --user=$db_name --password=$db_pwd --database=$db_name <<< "UPDATE plugins SET state='active' WHERE id='log_failed_logins';"
ynh_mysql_connect_as --user=$db_name --password=$db_pwd --database=$db_name <<< "INSERT INTO config (param, value) VALUES ('logFailedLoginsFilename','/var/log/${app}FailedLogins.log');" 2>&1 > /dev/null || ynh_mysql_connect_as --user=$db_name --password=$db_pwd --database=$db_name <<< "UPDATE config SET value='/var/log/${app}FailedLogins.log' WHERE param='logFailedLoginsFilename';"
2019-02-17 19:28:37 +01:00
touch "/var/log/${app}FailedLogins.log"
chown $app: "/var/log/${app}FailedLogins.log"
2019-02-17 19:28:37 +01:00
ynh_add_fail2ban_config --logpath="/var/log/${app}FailedLogins.log" --failregex="ip=<HOST>" --max_retry=6
2019-02-17 20:58:31 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-05-16 19:41:11 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last