1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/leed_ynh.git synced 2024-09-03 19:26:32 +02:00
leed_ynh/scripts/actions/public_private

78 lines
2.2 KiB
Text
Raw Normal View History

2018-09-30 11:51:17 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-01-19 12:00:42 +01:00
source scripts/_common.sh
2018-09-30 11:51:17 +02:00
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS
#=================================================
2019-01-30 16:15:24 +01:00
ynh_script_progression --message="Retrieve arguments from the manifest"
2018-09-30 11:51:17 +02:00
# Get is_public
is_public=${YNH_ACTION_IS_PUBLIC}
app=${YNH_APP_INSTANCE_NAME:-$YNH_APP_ID}
#=================================================
# CHECK IF ARGUMENTS ARE CORRECT
#=================================================
#=================================================
# CHECK IF AN ACTION HAS TO BE DONE
#=================================================
is_public_old=$(ynh_app_setting_get $app is_public)
if [ $is_public -eq $is_public_old ]
then
ynh_die "is_public is already set as $is_public." 0
fi
#=================================================
# SPECIFIC ACTION
#=================================================
# MOVE TO PUBLIC OR PRIVATE
#=================================================
2019-01-30 16:15:24 +01:00
if [ $is_public -eq 0 ]; then
public_private="private"
else
public_private="public"
fi
ynh_script_progression --message="Move the application to $public_private" --weight=3
2018-09-30 11:51:17 +02:00
if [ $is_public -eq 0 ]
then
ynh_app_setting_delete $app unprotected_uris
2019-01-19 12:13:45 +01:00
# Set the action.php script public for the cron task
2018-09-30 11:51:17 +02:00
ynh_app_setting_set $app skipped_uris "/action.php"
else
ynh_app_setting_delete $app skipped_uris
ynh_app_setting_set $app unprotected_uris "/"
fi
2019-01-30 16:15:24 +01:00
ynh_script_progression --message="Reconfigure SSOwat"
2018-09-30 11:51:17 +02:00
# Regen ssowat configuration
yunohost app ssowatconf
# Update the config of the app
ynh_app_setting_set $app is_public $is_public
#=================================================
# RELOAD NGINX
#=================================================
2019-01-30 16:15:24 +01:00
ynh_script_progression --message="Reload nginx"
2018-09-30 11:51:17 +02:00
2019-01-19 12:00:42 +01:00
ynh_systemd_action --action=reload --service_name=nginx
2019-01-30 16:15:24 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Execution completed" --last