1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/roundcube_ynh.git synced 2024-09-03 20:16:28 +02:00

Update upgrade

This commit is contained in:
Éric Gaspar 2024-05-21 12:56:43 +02:00
parent 57e8d5c04e
commit e48cd535d2

View file

@ -9,12 +9,6 @@
source _common.sh source _common.sh
source /usr/share/yunohost/helpers source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#================================================= #=================================================
# ENSURE DOWNWARD COMPATIBILITY # ENSURE DOWNWARD COMPATIBILITY
#================================================= #=================================================
@ -64,13 +58,10 @@ fi
# Get the current version of roundcube # Get the current version of roundcube
oldversion=$(grep RCMAIL_VERSION "$install_dir/program/include/iniset.php" | cut -d\' -f4) oldversion=$(grep RCMAIL_VERSION "$install_dir/program/include/iniset.php" | cut -d\' -f4)
if [ "$upgrade_type" == "UPGRADE_APP" ] ynh_script_progression --message="Upgrading source files..." --weight=3
then
ynh_script_progression --message="Upgrading source files..." --weight=3
# Download, check integrity, uncompress and patch the source from app.src # Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" ynh_setup_source --dest_dir="$install_dir"
fi
chmod -R o-rwx "$install_dir" chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir" chown -R $app:www-data "$install_dir"
@ -91,118 +82,114 @@ ynh_add_nginx_config
#================================================= #=================================================
# CONFIGURE ROUNDCUBE # CONFIGURE ROUNDCUBE
#================================================= #=================================================
ynh_script_progression --message="Reconfiguring $app..." --weight=1
if [ "$upgrade_type" == "UPGRADE_APP" ] deskey=$(ynh_string_random --length=24)
ynh_add_config --template="config.inc.php" --destination="$install_dir/config/config.inc.php"
#=================================================
# UPDATE DEPENDENCIES WITH COMPOSER
#=================================================
ynh_script_progression --message="Updating dependencies with Composer..." --weight=30
# Upgrade composer itself
ynh_install_composer
# Check if dependencies need to be updated with Composer
if [ -f "$install_dir/composer.json" ]
then then
ynh_script_progression --message="Reconfiguring Roundcube..." --weight=1 ynh_exec_warn_less ynh_composer_exec --commands="update"
# Update plugin-installer for Composer version 2.0
ynh_exec_warn_less ynh_composer_exec --commands="require roundcube/plugin-installer:>=0.2.0"
else
# Install composer.json
cp "$install_dir/composer.json-dist" "$install_dir/composer.json"
fi
deskey=$(ynh_string_random --length=24) #=================================================
ynh_add_config --template="../conf/config.inc.php" --destination="$install_dir/config/config.inc.php" # UPGRADE ADDITIONAL PLUGINS
#=================================================
ynh_script_progression --message="Upgrading additional plugins..." --weight=30
#================================================= # Create logs and temp directories
# UPDATE DEPENDENCIES WITH COMPOSER mkdir -p "$install_dir/"{logs,temp}
#=================================================
ynh_script_progression --message="Updating dependencies with Composer..." --weight=30
# Upgrade composer itself # Install net_LDAP
ynh_install_composer ynh_composer_exec --commands="require kolab/net_ldap3"
# Check if dependencies need to be updated with Composer # Update or install contextmenu and automatic_addressbook plugins
if [ -f "$install_dir/composer.json" ] # https://plugins.roundcube.net/packages/sblaisot/automatic_addressbook
then # https://plugins.roundcube.net/packages/johndoh/contextmenu
ynh_exec_warn_less ynh_composer_exec --commands="update" ynh_composer_exec --commands="update --no-dev --prefer-dist \
# Update plugin-installer for Composer version 2.0 johndoh/contextmenu $contextmenu_version \
ynh_exec_warn_less ynh_composer_exec --commands="require roundcube/plugin-installer:>=0.2.0" sblaisot/automatic_addressbook $automatic_addressbook_version"
else
# Install composer.json
cp "$install_dir/composer.json-dist" "$install_dir/composer.json"
fi
#================================================= installed_plugins+=" 'contextmenu', 'automatic_addressbook',"
# UPGRADE ADDITIONAL PLUGINS
#=================================================
ynh_script_progression --message="Upgrading additional plugins..." --weight=30
# Create logs and temp directories ynh_add_config --template="enigma.config.inc.php" --destination="$install_dir/plugins/enigma/config.inc.php"
mkdir -p "$install_dir/"{logs,temp} mkdir -p "$install_dir/plugins/enigma/home"
chown -R $app:$app "$install_dir/plugins/enigma/home"
# Install net_LDAP # Update or install CardDAV plugin
ynh_composer_exec --commands="require kolab/net_ldap3" if [ $with_carddav -eq 1 ]
then
ynh_composer_exec --commands="require roundcube/carddav $carddav_version --with-all-dependencies"
# Update or install contextmenu and automatic_addressbook plugins carddav_tmp_config="../conf/carddav.config.inc.php"
# https://plugins.roundcube.net/packages/sblaisot/automatic_addressbook carddav_server=0
# https://plugins.roundcube.net/packages/johndoh/contextmenu
ynh_composer_exec --commands="update --no-dev --prefer-dist \
johndoh/contextmenu $contextmenu_version \
sblaisot/automatic_addressbook $automatic_addressbook_version"
installed_plugins+=" 'contextmenu', 'automatic_addressbook'," # Copy the plugin configuration file
cp $install_dir/plugins/carddav/config.inc.php{.dist,}
ynh_add_config --template="../conf/enigma.config.inc.php" --destination="$install_dir/plugins/enigma/config.inc.php" # Look for installed and supported CardDAV servers
mkdir -p "$install_dir/plugins/enigma/home" for carddav_app in "nextcloud" "baikal"
chown -R $app:$app "$install_dir/plugins/enigma/home" do
carddav_app_ids=$(yunohost app list | grep "id: $carddav_app" | grep -Po 'id: \K(.*)' || echo "")
# Update or install CardDAV plugin for carddav_app_id in $carddav_app_ids
if [ $with_carddav -eq 1 ]
then
ynh_composer_exec --commands="require roundcube/carddav $carddav_version --with-all-dependencies"
carddav_tmp_config="../conf/carddav.config.inc.php"
carddav_server=0
# Copy the plugin configuration file
cp $install_dir/plugins/carddav/config.inc.php{.dist,}
# Look for installed and supported CardDAV servers
for carddav_app in "nextcloud" "baikal"
do do
carddav_app_ids=$(yunohost app list | grep "id: $carddav_app" | grep -Po 'id: \K(.*)' || echo "") carddav_server=1
for carddav_app_id in $carddav_app_ids # Append preset configuration to the config file
do cat "../conf/${carddav_app}.inc.php" >> $install_dir/plugins/carddav/config.inc.php
carddav_server=1 # Retrieve app settings and enable relevant preset
# Append preset configuration to the config file carddav_domain=$(ynh_app_setting_get --app=$carddav_app_id --key=domain)
cat "../conf/${carddav_app}.inc.php" >> $install_dir/plugins/carddav/config.inc.php carddav_path=$(ynh_app_setting_get --app=$carddav_app_id --key=path)
# Retrieve app settings and enable relevant preset carddav_url="https://${carddav_domain}${carddav_path%/}"
carddav_domain=$(ynh_app_setting_get --app=$carddav_app_id --key=domain) ynh_replace_string --match_string="{${carddav_app}_id}" --replace_string="$carddav_app_id" --target_file="$install_dir/plugins/carddav/config.inc.php"
carddav_path=$(ynh_app_setting_get --app=$carddav_app_id --key=path) ynh_replace_string --match_string="{${carddav_app}_url}" --replace_string="$carddav_url" --target_file="$install_dir/plugins/carddav/config.inc.php"
carddav_url="https://${carddav_domain}${carddav_path%/}"
ynh_replace_string --match_string="{${carddav_app}_id}" --replace_string="$carddav_app_id" --target_file="$install_dir/plugins/carddav/config.inc.php"
ynh_replace_string --match_string="{${carddav_app}_url}" --replace_string="$carddav_url" --target_file="$install_dir/plugins/carddav/config.inc.php"
done
done done
done
# Do not actually add the carddav plugin if there's no carddav server available... # Do not actually add the carddav plugin if there's no carddav server available...
if [ $carddav_server -eq 1 ] if [ $carddav_server -eq 1 ]
then then
installed_plugins+=" 'carddav'," installed_plugins+=" 'carddav',"
fi
fi fi
fi
#================================================= #=================================================
# UPDATE ROUNDCUBE CONFIGURATION # UPDATE ROUNDCUBE CONFIGURATION
#================================================= #=================================================
ynh_script_progression --message="Updating $app configuration..." --weight=4 ynh_script_progression --message="Updating $app configuration..." --weight=4
ynh_replace_string --match_string="^\s*// installed plugins" --replace_string="&\n $installed_plugins" --target_file="$install_dir/config/config.inc.php" ynh_replace_string --match_string="^\s*// installed plugins" --replace_string="&\n $installed_plugins" --target_file="$install_dir/config/config.inc.php"
# Update JavaScript dependencies # Update JavaScript dependencies
pushd "$install_dir" pushd "$install_dir"
COMPOSER_ALLOW_SUPERUSER=1 "php$phpversion" ./bin/update.sh --version="?" -y <<< "" COMPOSER_ALLOW_SUPERUSER=1 "php$phpversion" ./bin/update.sh --version="?" -y <<< ""
# Store the config file checksum into the app settings # Store the config file checksum into the app settings
ynh_store_file_checksum --file="$install_dir/config/config.inc.php" ynh_store_file_checksum --file="$install_dir/config/config.inc.php"
chmod 400 "$install_dir/config/config.inc.php" chmod 400 "$install_dir/config/config.inc.php"
chown $app:$app "$install_dir/config/config.inc.php" chown $app:$app "$install_dir/config/config.inc.php"
#================================================= #=================================================
# UPDATE ROUNDCUBE CORE # UPDATE ROUNDCUBE CORE
#================================================= #=================================================
ynh_script_progression --message="Updating $app core..." --weight=4 ynh_script_progression --message="Updating $app core..." --weight=4
COMPOSER_ALLOW_SUPERUSER=1 ynh_exec_warn "php$phpversion" ./bin/update.sh --version=$oldversion -y COMPOSER_ALLOW_SUPERUSER=1 ynh_exec_warn "php$phpversion" ./bin/update.sh --version=$oldversion -y
popd popd
fi
#================================================= #=================================================
# END OF SCRIPT # END OF SCRIPT