From e70cec25e9b2d1a23b812cbefb4f3cbbb5b1d148 Mon Sep 17 00:00:00 2001 From: Yunohost-Bot <> Date: Mon, 15 Mar 2021 00:27:44 +0100 Subject: [PATCH] [autopatch] Autopatch to migrate to new permission system --- scripts/install | 18 ++++++++++-------- scripts/upgrade | 10 ++++++++++ 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/scripts/install b/scripts/install index 2461006..a4e79d1 100755 --- a/scripts/install +++ b/scripts/install @@ -44,7 +44,6 @@ ynh_script_progression --message="Storing installation settings..." ynh_app_setting_set --app=$app --key=domain --value=$domain ynh_app_setting_set --app=$app --key=path --value=$path_url -ynh_app_setting_set --app=$app --key=is_public --value=$is_public #================================================= # STANDARD MODIFICATIONS @@ -88,15 +87,18 @@ chown -R $app: $final_path #================================================= ynh_script_progression --message="Configuring SSOwat..." -if [ $is_public -eq 0 ] -then # Remove the public access - ynh_app_setting_delete $app skipped_uris -fi + # Make app public if necessary -if [ $is_public -eq 1 ] +if [ "$is_public" -eq 1 ] then - # unprotected_uris allows SSO credentials to be passed anyway. - ynh_app_setting_set --app=$app --key=unprotected_uris --value="/" + ynh_permission_update --permission="main" --add="visitors" +fi + + +# Make app public if necessary +if [ "$is_public" -eq 1 ] +then + ynh_permission_update --permission="main" --add="visitors" fi #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 9f98635..8856abf 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -62,6 +62,16 @@ ynh_clean_setup () { # Exit if an error occurs during the execution of the script ynh_abort_if_errors +#================================================= +# Migrate legacy permissions to new system +#================================================= +if ynh_legacy_permissions_exists +then + ynh_legacy_permissions_delete_all + + ynh_app_setting_delete --app=$app --key=is_public +fi + #================================================= # CHECK THE PATH #=================================================