1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gitlab_ynh.git synced 2024-09-03 18:36:35 +02:00
gitlab_ynh/scripts/config

79 lines
2.5 KiB
Text
Raw Normal View History

2019-04-11 01:12:07 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS
#=================================================
app=${YNH_APP_INSTANCE_NAME:-$YNH_APP_ID}
#=================================================
# LOAD VALUES
#=================================================
# Load the real value from the app config or elsewhere.
# Then get the value from the form.
# If the form has a value for a variable, take the value from the form,
# Otherwise, keep the value from the app config.
# is_public
2019-05-09 01:13:48 +02:00
old_is_public="$(ynh_app_setting_get --app=$app --key=is_public)"
2019-04-11 01:12:07 +02:00
is_public="${YNH_CONFIG_MAIN_IS_PUBLIC_IS_PUBLIC:-$old_is_public}"
# Overwrite nginx configuration
2019-05-09 01:13:48 +02:00
old_overwrite_nginx="$(ynh_app_setting_get --app=$app --key=overwrite_nginx)"
2019-04-11 01:12:07 +02:00
overwrite_nginx="${YNH_CONFIG_MAIN_OVERWRITE_FILES_OVERWRITE_NGINX:-$old_overwrite_nginx}"
# use_web_account
2019-05-09 01:13:48 +02:00
old_use_web_account="$(ynh_app_setting_get --app=$app --key=use_web_account)"
2019-04-12 23:55:10 +02:00
use_web_account="${YNH_CONFIG_MAIN_USERS_USE_WEB_ACCOUNT:-$old_use_web_account}"
2019-04-11 01:12:07 +02:00
#=================================================
# SHOW_CONFIG FUNCTION FOR 'SHOW' COMMAND
#=================================================
show_config() {
# here you are supposed to read some config file/database/other then print the values
# echo "YNH_CONFIG_${PANEL_ID}_${SECTION_ID}_${OPTION_ID}=value"
2019-08-18 19:52:02 +02:00
ynh_return "YNH_CONFIG_MAIN_IS_PUBLIC_IS_PUBLIC=$is_public"
2019-04-11 01:12:07 +02:00
2019-08-18 19:52:02 +02:00
ynh_return "YNH_CONFIG_MAIN_OVERWRITE_FILES_OVERWRITE_NGINX=$overwrite_nginx"
2019-04-11 01:12:07 +02:00
2019-08-18 19:52:02 +02:00
ynh_return "YNH_CONFIG_MAIN_USERS_USE_WEB_ACCOUNT=$use_web_account"
2019-04-11 01:12:07 +02:00
}
#=================================================
# MODIFY THE CONFIGURATION
#=================================================
apply_config() {
# Change public accessibility
2019-08-18 20:27:59 +02:00
yunohost app action run $app public_private --args is_public=$is_public
2019-04-11 01:12:07 +02:00
# Change use_web_account
2019-08-18 20:27:59 +02:00
yunohost app action run $app web_account --args use_web_account=$use_web_account
2019-04-11 01:12:07 +02:00
# Set overwrite_nginx
2019-05-09 01:13:48 +02:00
ynh_app_setting_set --app=$app --key=overwrite_nginx --value="$overwrite_nginx"
2019-04-11 01:12:07 +02:00
}
#=================================================
# GENERIC FINALIZATION
#=================================================
# SELECT THE ACTION FOLLOWING THE GIVEN ARGUMENT
#=================================================
case $1 in
2019-04-12 23:55:10 +02:00
show) show_config;;
apply) apply_config;;
esac