mirror of
https://github.com/YunoHost-Apps/moncycle_ynh.git
synced 2024-09-03 19:46:16 +02:00
112 lines
3.6 KiB
Bash
112 lines
3.6 KiB
Bash
#!/bin/bash
|
|
# In simple cases, you don't need a config script.
|
|
|
|
# With a simple config_panel.toml, you can write in the app settings, in the
|
|
# upstream config file or replace complete files (logo ...) and restart services.
|
|
|
|
# The config scripts allows you to go further, to handle specific cases
|
|
# (validation of several interdependent fields, specific getter/setter for a value,
|
|
# display dynamic informations or choices, pre-loading of config type .cube... ).
|
|
|
|
#=================================================
|
|
# GENERIC STARTING
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
ynh_abort_if_errors
|
|
|
|
#=================================================
|
|
# RETRIEVE ARGUMENTS
|
|
#=================================================
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
pushd "$install_dir/script"
|
|
statistiques="$(/usr/bin/php8.3 --define apc.enable_cli=1 stat.php)"
|
|
popd
|
|
|
|
get__csv_sep(){
|
|
separateur="$(grep -oPi 'define\("CSV_SEP",[\s"]*\K[^\")]+' "$install_dir/config.php")"
|
|
if [ "$separateur" == " " ]; then
|
|
echo "Utiliser un espace"
|
|
else
|
|
echo "Utiliser le séparateur ""$separateur"
|
|
fi
|
|
}
|
|
|
|
set__csv_sep(){
|
|
if [ "$csv_sep" == "Utiliser le séparateur ," ]; then
|
|
sed -i "s/define(\"CSV_SEP\",.*);/define(\"CSV_SEP\", \",\");/" "$install_dir/config.php"
|
|
elif [ "$csv_sep" == "Utiliser un espace" ]; then
|
|
sed -i "s/define(\"CSV_SEP\",.*);/define(\"CSV_SEP\", \" \");/" "$install_dir/config.php"
|
|
else
|
|
sed -i "s/define(\"CSV_SEP\",.*);/define(\"CSV_SEP\", \";\");/" "$install_dir/config.php"
|
|
fi
|
|
ynh_app_setting_set --app=$app --key=csv_sep --value="$csv_sep"
|
|
}
|
|
|
|
get__creation_compte(){
|
|
grep -oPi 'define\("CREATION_COMPTE",[\s"]*\K[^\")]+' "$install_dir/config.php"
|
|
}
|
|
|
|
set__creation_compte(){
|
|
sed -i "s/define(\"CREATION_COMPTE\",.*);/define(\"CREATION_COMPTE\", $creation_compte);/" "$install_dir/config.php"
|
|
ynh_app_setting_set --app=$app --key=creation_compte --value="$creation_compte"
|
|
}
|
|
|
|
get__connexion_compte(){
|
|
grep -oPi 'define\("CONNEXION_COMPTE",[\s"]*\K[^\")]+' "$install_dir/config.php"
|
|
}
|
|
|
|
set__connexion_compte(){
|
|
sed -i "s/define(\"CONNEXION_COMPTE\",.*);/define(\"CONNEXION_COMPTE\", $connexion_compte);/" "$install_dir/config.php"
|
|
ynh_app_setting_set --app=$app --key=connexion_compte --value="$connexion_compte"
|
|
}
|
|
|
|
get__moncycle_app_nb_compte(){
|
|
echo "$statistiques" | grep -Poi 'moncycle_app_nb_compte \K.*'
|
|
}
|
|
|
|
get__moncycle_app_nb_session(){
|
|
echo "$statistiques" | grep -Poi 'moncycle_app_nb_session \K.*'
|
|
}
|
|
|
|
get__moncycle_app_visite_mensuel(){
|
|
echo "$statistiques" | grep -Poi 'moncycle_app_visite_mensuel \K.*'
|
|
}
|
|
|
|
get__moncycle_app_visite_hebdo(){
|
|
echo "$statistiques" | grep -Poi 'moncycle_app_visite_hebdo \K.*'
|
|
}
|
|
|
|
get__moncycle_app_visite_jour(){
|
|
echo "$statistiques" | grep -Poi 'moncycle_app_visite_jour \K.*'
|
|
}
|
|
|
|
get__moncycle_app_nb_compte_actif(){
|
|
echo "$statistiques" | grep -Poi 'moncycle_app_nb_compte_actif \K.*'
|
|
}
|
|
|
|
get__moncycle_app_pc_compte_actif(){
|
|
echo $(echo "$statistiques" | grep -Poi 'moncycle_app_pc_compte_actif \K.*')"%"
|
|
}
|
|
|
|
get__moncycle_app_nb_compte_avec_totp(){
|
|
echo "$statistiques" | grep -Poi 'moncycle_app_nb_compte_avec_totp \K.*'
|
|
}
|
|
|
|
get__moncycle_app_nb_compte_actif_billings(){
|
|
echo "$statistiques" | grep -Poi 'moncycle_app_nb_compte_actif_billings \K.*'
|
|
}
|
|
|
|
get__moncycle_app_pc_compte_actif_billings(){
|
|
echo $(echo "$statistiques" | grep -Poi 'app_pc_compte_actif_billings \K.*')"%"
|
|
}
|
|
|
|
#=================================================
|
|
# GENERIC FINALIZATION
|
|
#=================================================
|
|
ynh_app_config_run $1
|