2019-03-12 00:02:09 +01:00
|
|
|
#!/bin/bash
|
2015-09-27 00:52:48 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-09-27 00:52:48 +02:00
|
|
|
|
2019-03-12 00:02:09 +01: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
|
|
|
|
2019-03-12 00:02:09 +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
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
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
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Storing installation settings..."
|
2019-03-12 00:02:09 +01:00
|
|
|
|
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
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Installing dependencies..."
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2021-01-11 16:44:58 +01:00
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
# CREATE A POSTGRESQL DATABASE
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=2
|
2019-03-12 00:02:09 +01:00
|
|
|
|
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
|
2020-11-12 14:37:28 +01:00
|
|
|
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
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
2019-03-12 00:02:09 +01:00
|
|
|
# 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
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..."
|
2015-09-27 00:53:26 +02:00
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
# Create a dedicated NGINX config
|
2019-03-12 00:02:09 +01:00
|
|
|
ynh_add_nginx_config
|
2015-09-27 01:07:30 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=1
|
2015-09-27 01:07:53 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
# Create a system user
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_system_user_create --username=$app
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=3
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2020-11-28 11:41:46 +01:00
|
|
|
ynh_add_fpm_config --usage=low --footprint=low --package="$extra_php_dependencies"
|
2020-11-28 10:09:39 +01:00
|
|
|
phpversion=$(ynh_app_setting_get --app="$app" --key=phpversion)
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
# #=================================================
|
|
|
|
# # SETUP APPLICATION WITH CURL
|
|
|
|
# #=================================================
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
# # Set the app as temporarily public for cURL call
|
|
|
|
# ynh_permission_update --permission "main" --add "visitors"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
# # Reload NGINX
|
|
|
|
# ynh_systemd_action --service_name=nginx --action=reload
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
# ynh_script_progression --message="Finalizing installation..." --weight=10
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
# # Installation with cURL
|
2020-11-28 11:16:22 +01:00
|
|
|
# installUrl="/install.php?submit"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2020-11-28 11:41:46 +01:00
|
|
|
# ynh_local_curl $installUrl "install=2" "lang=fr_FR.utf8"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
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"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
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
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
2021-03-02 09:39:55 +01:00
|
|
|
# ynh_script_progression --message="Modifying $app config file..."
|
2020-11-28 10:09:39 +01:00
|
|
|
|
2021-03-02 09:39:55 +01:00
|
|
|
# cp ../conf/noalyss.conf $final_path/include/config.inc.php
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2021-03-02 09:39:55 +01:00
|
|
|
# ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$final_path/include/config.inc.php"
|
|
|
|
# ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$final_path/include/config.inc.php"
|
|
|
|
# ynh_replace_string --match_string="__ADMIN__" --replace_string="$admin" --target_file="$final_path/include/config.inc.php"
|
|
|
|
# ynh_replace_string --match_string="__PASSWORD__" --replace_string="$password" --target_file="$final_path/include/config.inc.php"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2021-03-02 09:39:55 +01:00
|
|
|
# #=================================================
|
|
|
|
# # STORE THE CONFIG FILE CHECKSUM
|
|
|
|
# #=================================================
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2021-03-02 09:39:55 +01:00
|
|
|
# # Calculate and store the config file checksum into the app settings
|
|
|
|
# ynh_store_file_checksum "$final_path/include/config.inc.php"
|
2015-09-27 02:54:32 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2015-09-27 01:46:52 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
# Set permissions to app files
|
2020-11-28 10:09:39 +01:00
|
|
|
chown -R $app: $final_path
|
2020-11-28 10:38:48 +01:00
|
|
|
chown $app: $final_path/include/constant.php
|
2015-09-27 20:23:58 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Configuring log rotation..."
|
2015-09-28 00:31:48 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ADVERTISE SERVICE IN ADMIN PANEL
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-28 11:58:14 +01:00
|
|
|
#yunohost service add $app --description "Accounting free software" --log "/var/log/$app/$app.log"
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2021-03-01 11:36:32 +01:00
|
|
|
ynh_script_progression --message="Configuring permissions..."
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2020-11-28 10:09:39 +01:00
|
|
|
# Make app public if necessary or protect it
|
2019-03-12 00:02:09 +01:00
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
2021-03-01 11:36:32 +01:00
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
2019-03-12 00:02:09 +01:00
|
|
|
fi
|
2015-09-27 01:47:03 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-11-28 10:09:39 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
|
2015-09-27 01:47:25 +02:00
|
|
|
|
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.
|
|
|
|
Details for MySQL database to be enterted while registration process:
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
|
|
|
# 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
|