1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/noalyss_ynh.git synced 2024-09-03 19:46:20 +02:00
noalyss_ynh/scripts/install

191 lines
6.5 KiB
Text
Raw Normal View History

#!/bin/bash
2015-09-27 00:52:48 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2015-09-27 00:52:48 +02:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
is_public=$YNH_APP_ARG_IS_PUBLIC
2020-11-28 10:57:02 +01:00
admin=$YNH_APP_ARG_ADMIN
2021-03-01 11:36:32 +01:00
password=$YNH_APP_ARG_PASSWORD
2020-11-28 10:09:39 +01:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2020-11-28 10:09:39 +01:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die "This path already contains a folder"
# Register (book) web path
2020-11-28 10:09:39 +01:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2020-11-28 10:09:39 +01:00
ynh_script_progression --message="Storing installation settings..."
2020-11-28 10:09:39 +01:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
2020-11-28 10:57:02 +01:00
ynh_app_setting_set --app=$app --key=admin --value=$admin
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2020-11-28 10:09:39 +01:00
ynh_script_progression --message="Installing dependencies..."
2021-01-11 16:44:58 +01:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
#=================================================
2020-11-28 10:09:39 +01:00
# CREATE A POSTGRESQL DATABASE
#=================================================
2020-11-28 10:09:39 +01:00
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=2
2020-11-28 10:09:39 +01:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
db_user=$db_name
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_psql_test_if_first_run
2021-03-01 11:36:32 +01:00
ynh_psql_setup_db --db_user=$db_name --db_name=$db_name
2021-07-04 10:23:53 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Configuring system user..." --weight=1
# Create a system user
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-11-28 10:09:39 +01:00
ynh_script_progression --message="Setting up source files..."
2015-09-27 00:52:56 +02:00
2020-11-28 12:38:02 +01:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress and patch the source from app.src
2020-11-28 12:38:02 +01:00
ynh_setup_source --dest_dir="$final_path"
2015-09-27 01:21:26 +02:00
2021-07-04 10:23:53 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-11-28 10:09:39 +01:00
ynh_script_progression --message="Configuring NGINX web server..."
2020-11-28 10:09:39 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2015-09-27 01:07:30 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-11-28 10:09:39 +01:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=3
2020-11-28 10:09:39 +01:00
# Create a dedicated PHP-FPM config
2021-11-21 22:02:12 +01:00
ynh_add_fpm_config --usage=low --footprint=low
2020-11-28 10:09:39 +01:00
phpversion=$(ynh_app_setting_get --app="$app" --key=phpversion)
2020-11-28 10:09:39 +01:00
# #=================================================
# # SETUP APPLICATION WITH CURL
# #=================================================
2020-11-28 10:09:39 +01:00
# # Set the app as temporarily public for cURL call
# ynh_permission_update --permission "main" --add "visitors"
2020-11-28 10:09:39 +01:00
# # Reload NGINX
# ynh_systemd_action --service_name=nginx --action=reload
2020-11-28 10:09:39 +01:00
# ynh_script_progression --message="Finalizing installation..." --weight=10
2020-11-28 10:09:39 +01:00
# # Installation with cURL
2020-11-28 11:16:22 +01:00
# installUrl="/install.php?submit"
2020-11-28 11:41:46 +01:00
# ynh_local_curl $installUrl "install=2" "lang=fr_FR.utf8"
2020-11-28 11:16:22 +01:00
# # Remove the `install.php` directory from within the Noalyss installation path.
# # The scripts within this directory should not be accessible on a live Noalyss site
2020-11-28 10:09:39 +01:00
# # or on any installation that is accessible via the Internet.
2020-11-28 12:17:10 +01:00
#ynh_secure_remove "$final_path/html/install.php"
2020-11-28 10:09:39 +01:00
# # Set the user chosen at installation as administrator
# #ynh_mysql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" <<< "UPDATE ${db_name}_user_table SET username = '$admin' WHERE id = 1;"
2015-09-27 01:37:10 +02:00
2021-03-02 10:09:52 +01:00
# =================================================
# MODIFY A CONFIG FILE
2021-03-02 10:09:52 +01:00
# =================================================
ynh_script_progression --message="Modifying $app config file..."
2020-11-28 10:09:39 +01:00
2021-04-03 17:48:35 +02:00
ynh_add_config --template="../conf/noalyss.conf" --destination="$final_path/include/config.inc.php"
2015-09-27 02:54:32 +02:00
#=================================================
# SETUP LOGROTATE
#=================================================
2020-11-28 10:09:39 +01:00
ynh_script_progression --message="Configuring log rotation..."
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# SETUP SSOWAT
#=================================================
2021-03-01 11:36:32 +01:00
ynh_script_progression --message="Configuring permissions..."
2020-11-28 10:09:39 +01:00
# Make app public if necessary or protect it
if [ $is_public -eq 1 ]
then
2021-03-01 11:36:32 +01:00
ynh_permission_update --permission="main" --add="visitors"
fi
2015-09-27 01:47:03 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-11-28 10:09:39 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
2020-11-28 10:09:39 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2015-09-27 22:57:03 +02:00
2021-03-02 09:46:56 +01:00
#=================================================
# SEND A README FOR THE ADMIN
#=================================================
ynh_script_progression --message="Sending a readme for the admin..."
message="Noalyss was successfully installed :)
Please open your $app domain: https://$domain$path_url
Complete the registration process from the setup page displayed.
2021-03-02 10:09:52 +01:00
Details for PostgreSQL database to be enterted while registration process:
2021-03-02 09:46:56 +01:00
Database login: $app
Database name: $app
Database password: $db_pwd
If you are facing any problem or want to improve this app, please open a new issue here: https://github.com/YunoHost-Apps/noalysse_ynh/issues"
ynh_send_readme_to_admin "$message"
#=================================================
# END OF SCRIPT
#=================================================
2015-09-28 01:09:37 +02:00
2020-11-28 10:38:48 +01:00
ynh_script_progression --message="Installation of $app completed" --last