2017-07-01 19:54:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-08-01 11:29:01 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2017-07-05 12:28:42 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-08-01 11:29:01 +02:00
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
2017-07-05 12:28:42 +02:00
|
|
|
|
2023-07-30 16:49:26 +02:00
|
|
|
admin_password=$(ynh_string_random 24)
|
|
|
|
admin_password_hashed=$(mkpasswd -m md5crypt --stdin <<< "$admin_password")
|
2017-07-01 19:54:37 +02:00
|
|
|
admin_username=$YNH_APP_ARG_USERNAME
|
|
|
|
admin_name=$YNH_APP_ARG_NAME
|
|
|
|
admin_email=$YNH_APP_ARG_EMAIL
|
2018-09-01 18:12:10 +02:00
|
|
|
|
2023-06-07 22:28:49 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=admin_username --value=$admin_username
|
|
|
|
ynh_app_setting_set --app=$app --key=admin_name --value=$admin_name
|
|
|
|
ynh_app_setting_set --app=$app --key=admin_email --value=$admin_email
|
2023-07-30 16:49:26 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=admin_password --value=$admin_password
|
2017-07-01 19:54:37 +02:00
|
|
|
|
2019-04-06 20:29:15 +02:00
|
|
|
#=================================================
|
2019-04-18 04:57:31 +02:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2019-04-06 20:29:15 +02:00
|
|
|
#=================================================
|
2020-07-30 18:54:44 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..."
|
2019-04-06 20:29:15 +02:00
|
|
|
|
2019-04-18 04:57:31 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-06-07 22:28:49 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2017-07-01 19:54:37 +02:00
|
|
|
|
2023-06-07 22:28:49 +02:00
|
|
|
chmod -R 700 $install_dir/data
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-08-22 12:42:38 +02:00
|
|
|
|
2018-09-01 18:12:10 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-16 11:21:00 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..."
|
2018-09-01 18:12:10 +02:00
|
|
|
|
2020-11-12 15:31:49 +01:00
|
|
|
# Create a dedicated NGINX config
|
2017-08-01 11:29:01 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2020-11-12 15:31:49 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2023-06-07 22:28:49 +02:00
|
|
|
ynh_add_fpm_config --usage=low --footprint=low
|
2018-09-01 18:12:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-04-18 04:58:41 +02:00
|
|
|
# MODIFY A CONFIG FILE
|
2018-09-01 18:12:10 +02:00
|
|
|
#=================================================
|
2017-07-01 19:54:37 +02:00
|
|
|
|
2019-04-18 04:58:41 +02:00
|
|
|
# Adding the details of the database to the config file
|
2023-06-07 22:28:49 +02:00
|
|
|
ynh_add_config --template="../conf/config.ini.php" --destination="$install_dir/data/config.ini.php"
|
2019-04-18 04:58:41 +02:00
|
|
|
|
|
|
|
# Load initial SQL into the new database
|
|
|
|
ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" < "../conf/sql/webtrees.sql"
|
|
|
|
|
|
|
|
# Replace variables in sql scripts
|
2023-08-14 21:56:01 +02:00
|
|
|
ynh_replace_string --match_string="__USER_NAME__" --replace_string="$admin_username" --target_file="../conf/sql/admin.sql"
|
|
|
|
ynh_replace_string --match_string="__NAME__" --replace_string="$admin_name" --target_file="../conf/sql/admin.sql"
|
|
|
|
ynh_replace_string --match_string="__USER_EMAIL__" --replace_string="$admin_email" --target_file="../conf/sql/admin.sql"
|
|
|
|
ynh_replace_string --match_string="__ADMIN_PASSWORD_HASHED__" --replace_string="$admin_password_hashed" --target_file="../conf/sql/admin.sql"
|
2019-04-18 04:58:41 +02:00
|
|
|
|
|
|
|
ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" < "../conf/sql/admin.sql"
|
2017-07-01 19:54:37 +02:00
|
|
|
|
2019-04-06 20:29:15 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-12 15:31:49 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed"
|