1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ulogger_ynh.git synced 2024-10-01 13:34:45 +02:00
ulogger_ynh/scripts/install

202 lines
6.7 KiB
Text
Raw Normal View History

2017-10-22 01:11:59 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2019-04-05 20:58:52 +02:00
ynh_clean_setup () {
true
}
2017-10-22 01:11:59 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
admin=$YNH_APP_ARG_ADMIN
is_public=$YNH_APP_ARG_IS_PUBLIC
language=$YNH_APP_ARG_LANGUAGE
2019-04-05 20:58:52 +02:00
password=$(ynh_string_random 12)
2017-10-22 01:11:59 +02:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2021-01-26 09:03:08 +01:00
ynh_script_progression --message="Validating installation parameters..."
2017-10-22 01:11:59 +02:00
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die "This path already contains a folder"
# Register (book) web path
2021-02-07 12:01:38 +01:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2017-10-22 01:11:59 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2021-01-26 09:03:08 +01:00
ynh_script_progression --message="Storing installation settings..."
2017-10-22 01:11:59 +02:00
2021-02-07 11:01:22 +01:00
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=language --value=$language
2017-10-22 01:11:59 +02:00
#=================================================
# CREATE A MYSQL DATABASE
#=================================================
2021-01-26 09:03:08 +01:00
ynh_script_progression --message="Creating a MySQL database..."
2017-10-22 01:11:59 +02:00
2021-02-07 11:01:22 +01:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
db_user=$db_name
2021-02-07 11:17:07 +01:00
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
2021-02-07 11:01:22 +01:00
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name
2017-10-22 01:11:59 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-01-26 09:03:08 +01:00
ynh_script_progression --message="Setting up source files..."
2017-10-22 01:11:59 +02:00
2021-02-07 11:01:22 +01:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2017-10-22 01:11:59 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2021-02-07 11:01:22 +01:00
ynh_setup_source --dest_dir="$final_path"
2017-10-22 01:11:59 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-01-26 09:41:19 +01:00
ynh_script_progression --message="Configuring NGINX web server..."
2019-04-05 20:58:52 +02:00
2017-10-22 01:11:59 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-01-26 09:03:08 +01:00
ynh_script_progression --message="Configuring system user..."
2017-10-22 01:11:59 +02:00
# Create a system user
ynh_system_user_create $app
2018-06-04 14:51:37 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2021-01-26 09:41:19 +01:00
ynh_script_progression --message="Configuring PHP-FPM..."
2018-06-04 14:51:37 +02:00
# Create a dedicated php-fpm config
ynh_add_fpm_config
2021-02-07 10:25:59 +01:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2018-06-04 14:51:37 +02:00
2017-10-22 01:11:59 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
2021-02-07 21:09:53 +01:00
# Set right permissions for cURL install
2017-10-22 01:11:59 +02:00
chown -R $app: $final_path
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2021-02-07 11:17:07 +01:00
cp "../conf/config.php" "$final_path/config.php"
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$final_path/config.php"
ynh_replace_string --match_string="__DB_USER__" --replace_string="$db_user" --target_file="$final_path/config.php"
2021-02-07 10:41:09 +01:00
2021-02-07 21:09:53 +01:00
ynh_replace_string --match_string="\$enabled = false;" --replace_string="\$enabled = true;" --target_file="$final_path/scripts/setup.php"
2021-02-07 10:41:09 +01:00
2021-02-07 12:01:38 +01:00
admin_pwd=$(openssl passwd -1 -salt xyz $password)
2021-02-07 10:41:09 +01:00
# Replace variables in SQL scripts
2021-02-07 12:01:38 +01:00
ynh_replace_string --match_string="__ADMIN__" --replace_string="$admin" --target_file="../conf/admin.sql"
ynh_replace_string --match_string="__ADMIN_PWD__" --replace_string="$admin_pwd" --target_file="../conf/admin.sql"
2017-10-22 01:11:59 +02:00
2021-01-26 09:17:31 +01:00
#=================================================
# SETUP APPLICATION WITH CURL
#=================================================
2017-10-22 01:11:59 +02:00
2021-01-26 09:17:31 +01:00
# Set the app as temporarily public for cURL call
2021-02-07 10:25:59 +01:00
ynh_permission_update --permission="main" --add="visitors"
2017-10-22 01:11:59 +02:00
2021-01-26 09:17:31 +01:00
# Reload NGINX
ynh_systemd_action --service_name=nginx --action=reload
2019-04-05 20:58:52 +02:00
2021-01-26 09:17:31 +01:00
ynh_script_progression --message="Finalizing installation..."
2019-04-12 20:21:58 +02:00
2021-01-26 09:17:31 +01:00
ynh_local_curl "/scripts/setup.php" "command=setup"
2019-04-12 20:21:58 +02:00
2017-10-22 01:11:59 +02:00
#Add the admin account to the database
ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" < "../conf/admin.sql"
#Disable setup for security
ynh_replace_string "^\$enabled = true;" "\$enabled = false;" "$final_path/scripts/setup.php"
2017-10-22 01:11:59 +02:00
#=================================================
2019-04-05 20:58:52 +02:00
# STORE THE CONFIG FILE CHECKSUM
2017-10-22 01:11:59 +02:00
#=================================================
# Calculate and store the config file checksum into the app settings
ynh_store_file_checksum "$final_path/config.php"
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions to app files
2018-06-04 14:51:37 +02:00
chown -R $app: $final_path
2017-10-22 01:11:59 +02:00
2022-07-15 14:03:07 +02:00
chmod 755 -R $final_path
chmod -R o-rwx $final_path
chown -R $app:www-data $final_path
2017-10-22 01:11:59 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-01-26 09:09:25 +01:00
ynh_script_progression --message="Configuring permissions..."
2017-10-22 01:11:59 +02:00
2021-01-26 09:17:31 +01:00
# Make app public if necessary or protect it
if [ $is_public -eq 0 ]
2017-10-22 01:11:59 +02:00
then
2021-02-07 10:25:59 +01:00
ynh_permission_update --permission="main" --remove="visitors"
2017-10-22 01:11:59 +02:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2021-01-26 09:41:19 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2017-10-22 01:11:59 +02:00
2021-01-26 09:17:31 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2019-04-05 20:58:52 +02:00
#=================================================
# SEND A README FOR THE ADMIN
#=================================================
message=" $app was successfully installed :)
Please open your $app domain: https://$domain$path_url
The admin username is: $admin
2019-04-05 21:07:56 +02:00
The admin password is: $password
2019-04-05 20:58:52 +02:00
If you are facing any problem or want to improve this app, please open a new issue here: https://github.com/YunoHost-Apps/ulogger_ynh/issues"
ynh_send_readme_to_admin "$message"
#=================================================
# END OF SCRIPT
#=================================================
2021-01-26 09:03:08 +01:00
ynh_script_progression --message="Installation of $app completed"