2017-12-14 18:03:01 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2020-03-24 02:27:29 +01:00
|
|
|
source ynh_add_extra_apt_repos
|
|
|
|
source ynh_install_php
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2018-09-01 14:32:40 +02:00
|
|
|
ynh_clean_setup () {
|
|
|
|
### Remove this function if there's nothing to clean before calling the remove script.
|
|
|
|
true
|
|
|
|
}
|
2017-12-14 18:03:01 +01: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
|
2020-03-24 02:27:29 +01:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
|
|
password=$YNH_APP_ARG_PASSWORD
|
2017-12-14 18:03:01 +01:00
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_script_progression --message="Validating installation parameters..." --time --weight=1
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
final_path=/var/www/$app
|
2020-03-24 02:27:29 +01:00
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
|
|
|
data_root=/home/yunohost.app/$app
|
|
|
|
test ! -e "$data_root" || ynh_die --message="This path already contains a folder"
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
# Register (book) web path
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --time --weight=1
|
2017-12-14 18:03:01 +01:00
|
|
|
|
2020-03-24 02:27:29 +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=password --value=$password
|
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
# INSTALL DEPENDENCIES
|
2017-12-14 18:03:01 +01:00
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_script_progression --message="Installing dependencies..." --time --weight=1
|
2019-11-05 17:50:23 +01:00
|
|
|
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
ynh_install_php --phpversion="$YNH_PHP_VERSION" --package="$extra_pkg_dependencies"
|
2019-11-05 17:51:05 +01:00
|
|
|
|
2017-12-14 18:03:01 +01:00
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
# CREATE POSTGRESQL DATABASE
|
2017-12-14 18:03:01 +01:00
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_script_progression --message="Creating a PostgreSQL database..." --time --weight=1
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
ynh_psql_test_if_first_run
|
2020-03-24 02:27:29 +01:00
|
|
|
|
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
|
|
|
ynh_psql_setup_db --db_user=$db_name --db_name=$db_name
|
|
|
|
|
|
|
|
db_pwd=$(ynh_app_setting_get $app psqlpwd)
|
|
|
|
|
2017-12-14 18:03:01 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --time --weight=1
|
2017-12-14 18:03:01 +01:00
|
|
|
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2017-12-14 18:03:01 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_script_progression --message="Configuring nginx web server..." --time --weight=1
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_script_progression --message="Configuring system user..." --time --weight=1
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
# Create a system user
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_system_user_create --username=$app
|
|
|
|
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_script_progression --message="Configuring php-fpm..." --time --weight=1
|
2018-09-01 14:32:40 +02:00
|
|
|
|
2017-12-14 18:03:01 +01:00
|
|
|
# Create a dedicated php-fpm config
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_add_fpm_config --phpversion="7.3"
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
# SECURE FILES AND DIRECTORIES
|
2017-12-14 18:03:01 +01:00
|
|
|
#=================================================
|
|
|
|
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=data_root --value=$data_root
|
|
|
|
mkdir -p $data_root
|
|
|
|
chown -R "$app": "$data_root"
|
|
|
|
chown -R "$app": "$final_path"
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
# SETUP APPLICATION
|
2017-12-14 18:03:01 +01:00
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_script_progression --message="Configuring the application..." --time --weight=1
|
2017-12-14 18:03:01 +01:00
|
|
|
|
2020-03-24 02:27:29 +01:00
|
|
|
email=$(ynh_user_get_info $admin mail)
|
2017-12-14 18:03:01 +01:00
|
|
|
|
2020-03-24 02:27:29 +01:00
|
|
|
exec_as "$app" php$YNH_PHP_VERSION "$final_path/admin/cli/install.php" --wwwroot="https://$domain${path_url%/}" --dataroot=$data_root --dbtype='pgsql' --dbname=$db_name --dbuser=$db_name --dbpass=$db_pwd --adminuser=$admin --adminpass=$password --adminemail=$email --fullname="YunoHost" --shortname="YNH" --non-interactive --agree-license
|
|
|
|
|
|
|
|
# Calculate and store the config file checksum into the app settings
|
|
|
|
ynh_store_file_checksum "$final_path/config.php"
|
2017-12-14 18:03:01 +01:00
|
|
|
|
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
# ADD CRON JOB
|
2017-12-14 18:03:01 +01:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Set up poller
|
2020-03-24 02:27:29 +01:00
|
|
|
sudo cp "../conf/cron" "/etc/cron.d/$app"
|
|
|
|
ynh_replace_string "__FINAL_PATH__" "$final_path" "/etc/cron.d/$app"
|
|
|
|
ynh_replace_string "__YNH_PHP_VERSION__" "$YNH_PHP_VERSION" "/etc/cron.d/$app"
|
2017-12-14 18:03:01 +01:00
|
|
|
|
2020-03-24 02:27:29 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2017-12-14 18:03:01 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Make app public if necessary
|
2020-01-22 16:02:40 +01:00
|
|
|
if [ "$is_public" -eq 1 ]
|
2017-12-14 18:03:01 +01:00
|
|
|
then
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
|
2017-12-14 18:03:01 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_script_progression --message="Reloading nginx web server..." --time --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-12-14 18:03:01 +01:00
|
|
|
|
2020-03-24 02:27:29 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --time --last
|