mirror of
https://github.com/YunoHost-Apps/chatonsinfos_ynh.git
synced 2024-09-03 18:15:58 +02:00
32 lines
1,004 B
Bash
32 lines
1,004 B
Bash
#!/bin/bash
|
|
|
|
source /etc/yunohost/apps/chatonsinfos/scripts/_common.sh
|
|
source /usr/share/yunohost/helpers
|
|
app=$1
|
|
|
|
[ "${app}" == "chatonsinfos" ] && exit 0
|
|
|
|
install_dir=/var/www/chatonsinfos/
|
|
service_path=${install_dir}public/${app}.properties
|
|
groups_added=$4
|
|
app_info="$(yunohost app info $app --full --json)"
|
|
get_info() {
|
|
echo $app_info | jq -r ".$1"
|
|
}
|
|
if [[ "$groups_added" == *"visitors"* ]]
|
|
then
|
|
registration=$(ynh_read_var_in_file --file="$service_path" --key="service.registration")
|
|
ldap="$(get_info 'manifest.integration.ldap')"
|
|
sso="$(get_info 'manifest.integration.sso')"
|
|
if [[ "$registration" != "None" && "$registration" != "Free" ]]
|
|
then
|
|
if [[ "$ldap" == "not_relevant" && "$sso" == "not_relevant" ]]
|
|
then
|
|
registration="None"
|
|
elif [[ "$ldap" == "false" ]]
|
|
then
|
|
registration="Free"
|
|
fi
|
|
ynh_write_var_in_file --file="$service_path" --key="service.registration" --value="$registration"
|
|
fi
|
|
fi
|