2017-11-14 16:05:26 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-01-31 16:08:58 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-17 23:51:51 +01:00
|
|
|
# Import common cmd
|
|
|
|
source ./experimental_helper.sh
|
|
|
|
source ./_common.sh
|
|
|
|
|
2017-11-14 16:05:26 +01:00
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_script_progression --message="Validating installation parameters..."
|
|
|
|
|
2017-11-14 16:05:26 +01:00
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2020-12-12 15:02:45 +01:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2017-11-14 16:05:26 +01:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
2017-11-16 21:10:21 +01:00
|
|
|
db_user="pgadmin"
|
2019-06-06 22:39:49 +02:00
|
|
|
admin_pwd=$YNH_APP_ARG_ADMIN_PASSWORD
|
2020-11-28 17:31:42 +01:00
|
|
|
app_version=$(ynh_app_upstream_version)
|
|
|
|
app_main_version=$(echo $app_version | cut -d'-' -f1)
|
|
|
|
app_sub_version=$(echo $app_version | cut -d'-' -f2)
|
2017-11-14 16:05:26 +01:00
|
|
|
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
2019-06-06 22:39:49 +02:00
|
|
|
test ! -e "$final_path" || ynh_die --message "This path already contains a folder"
|
2017-11-14 16:05:26 +01:00
|
|
|
|
|
|
|
# Register (book) web path
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_webpath_register --app $app --domain $domain --path_url $path_url
|
2017-11-14 16:05:26 +01:00
|
|
|
|
2018-06-02 12:51:49 +02:00
|
|
|
# Get user email and check that the user exist
|
2019-06-06 22:39:49 +02:00
|
|
|
email=$(ynh_user_get_info --username $admin --key 'mail')
|
2018-06-02 12:51:49 +02:00
|
|
|
if [[ -z $email ]]
|
|
|
|
then
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_die --message "Can't get user email, check that the user exist or that the user have an email"
|
2018-06-02 12:51:49 +02:00
|
|
|
fi
|
|
|
|
|
2017-11-14 16:05:26 +01:00
|
|
|
# Build user password
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_script_progression --message="Defining db password..."
|
|
|
|
db_pwd=$(ynh_string_random --length 30)
|
2017-11-16 21:10:21 +01:00
|
|
|
|
2017-11-14 16:05:26 +01:00
|
|
|
# STORE SETTINGS FROM MANIFEST
|
2019-06-06 22:39:49 +02:00
|
|
|
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 admin --value $admin
|
|
|
|
ynh_app_setting_set --app $app --key db_user --value "$db_user"
|
|
|
|
ynh_app_setting_set --app $app --key final_path --value $final_path
|
|
|
|
ynh_app_setting_set --app $app --key admin_pwd --value "$admin_pwd"
|
|
|
|
ynh_app_setting_set --app $app --key db_pwd --value "$db_pwd"
|
2017-11-14 16:05:26 +01:00
|
|
|
|
2018-01-31 16:08:58 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
|
2017-11-14 16:05:26 +01:00
|
|
|
# Install dependance
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=7
|
|
|
|
ynh_install_app_dependencies $dependances
|
2017-11-14 16:05:26 +01:00
|
|
|
|
2017-11-16 21:10:21 +01:00
|
|
|
# Create user
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_script_progression --message="Configuring system user..."
|
|
|
|
ynh_system_user_create --username $pgadmin_user --home_dir /var/lib/$app
|
2017-11-14 16:05:26 +01:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_script_progression --message="Installing sources files..." --weight=10
|
2017-11-16 21:10:21 +01:00
|
|
|
setup_dir
|
|
|
|
install_source
|
|
|
|
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_script_progression --message="Configuring application..."
|
|
|
|
|
2017-11-16 21:10:21 +01:00
|
|
|
# CONFIGURE PGADMIN
|
|
|
|
config_pgadmin
|
|
|
|
|
|
|
|
# Config uwsgi
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_add_uwsgi_service 'pgadmin_user python_version'
|
2017-11-14 16:05:26 +01:00
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_script_progression --message="Configuring sqlite database..."
|
|
|
|
|
2017-11-16 21:10:21 +01:00
|
|
|
# initialisation sqlite database for pgadmin
|
|
|
|
chmod +x ../conf/setup.exp
|
2020-07-29 23:14:43 +02:00
|
|
|
set +u;
|
2017-11-16 21:10:21 +01:00
|
|
|
source $final_path/bin/activate
|
2020-07-29 23:14:43 +02:00
|
|
|
set -u;
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_replace_special_string --match_string "__ADMIN_PASSWORD__" --replace_string "$admin_pwd" --target_file "../conf/setup.exp"
|
2018-11-07 19:30:34 +01:00
|
|
|
../conf/setup.exp "$final_path/bin/python3" "$final_path/lib/python$python_version/site-packages/pgadmin4/setup.py" "$email"
|
2017-11-14 16:05:26 +01:00
|
|
|
|
|
|
|
# POPULATE THE DATABASE
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_script_progression --message="Configuring Postgresql database..."
|
2017-11-14 16:05:26 +01:00
|
|
|
ynh_psql_test_if_first_run
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_psql_execute_as_root \
|
|
|
|
--sql "CREATE USER ${db_user} WITH PASSWORD '${db_pwd}' SUPERUSER CREATEDB CREATEROLE REPLICATION"
|
2017-11-14 16:05:26 +01:00
|
|
|
|
2017-11-16 21:10:21 +01:00
|
|
|
# Add Server In PGadmin database
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_replace_string --match_string "__PYTHON_VERSION__" --replace_string "$python_version" --target_file config_database.py
|
2018-11-07 19:30:34 +01:00
|
|
|
$final_path/bin/python3 config_database.py "$db_user" "$db_pwd"
|
2020-07-29 23:14:43 +02:00
|
|
|
set +u;
|
2017-11-16 21:10:21 +01:00
|
|
|
deactivate
|
2020-07-29 23:14:43 +02:00
|
|
|
set -u;
|
2017-11-14 16:05:26 +01:00
|
|
|
|
2018-01-31 16:08:58 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
|
2017-11-16 21:10:21 +01:00
|
|
|
# Set permission after initialisation
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_script_progression --message="Protecting directory"
|
2017-11-16 21:10:21 +01:00
|
|
|
set_permission
|
2017-11-14 16:05:26 +01:00
|
|
|
|
|
|
|
# Restrict access to admin only
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_script_progression --message="Configuring permissions"
|
2020-03-26 22:31:17 +01:00
|
|
|
ynh_permission_update --permission="main" --remove="all_users" --add=$admin
|
2017-11-14 16:05:26 +01:00
|
|
|
|
2017-11-16 21:10:21 +01:00
|
|
|
# Configuration de logrotate
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_script_progression --message="Configuring log rotation..."
|
2019-10-01 21:31:45 +02:00
|
|
|
ynh_use_logrotate --logfile /var/log/pgadmin
|
2017-11-16 21:10:21 +01:00
|
|
|
|
2018-03-15 23:33:57 +01:00
|
|
|
# reload uwsgi
|
2020-12-07 16:29:43 +01:00
|
|
|
ynh_script_progression --message="Starting $app services..." --weight=3
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_systemd_action --service_name "uwsgi-app@$app.service" \
|
2020-12-07 16:29:43 +01:00
|
|
|
--line_match "WSGI app 0 \(mountpoint='[/[:alnum:]_-]*'\) ready in [[:digit:]]* seconds on interpreter" --log_path "/var/log/uwsgi/$app/$app.log"
|
2020-07-30 22:55:35 +02:00
|
|
|
sleep 10
|
2019-06-06 22:39:49 +02:00
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|