2014-10-20 19:55:53 +03:00
|
|
|
#!/bin/bash
|
2015-10-27 18:03:21 +03:00
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
2017-06-17 18:49:26 +03:00
|
|
|
# GENERIC START
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2017-06-05 14:11:48 +03:00
|
|
|
source _common.sh
|
2017-06-02 19:23:51 +03:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2017-06-17 18:49:26 +03:00
|
|
|
# MANAGE SCRIPT FAILURE
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
|
|
|
|
2018-06-28 23:05:35 +03:00
|
|
|
ynh_clean_setup () {
|
|
|
|
### Remove this function if there's nothing to clean before calling the remove script.
|
|
|
|
true
|
|
|
|
}
|
2017-06-17 18:49:26 +03:00
|
|
|
# Exit if an error occurs during the execution of the script
|
2017-06-02 19:23:51 +03:00
|
|
|
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
|
2018-06-28 23:05:35 +03:00
|
|
|
password=$YNH_APP_ARG_PASSWORD
|
|
|
|
|
2016-03-18 18:31:44 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-10-20 19:55:53 +03:00
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
2017-06-17 18:49:26 +03:00
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_script_progression --message="Validating installation parameters..." --time --weight=1
|
2014-10-20 19:55:53 +03:00
|
|
|
|
2017-08-29 00:55:51 +03:00
|
|
|
final_path=/var/www/$app
|
2019-05-07 13:03:25 +03:00
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
2017-08-29 00:55:51 +03:00
|
|
|
|
2017-06-17 18:49:26 +03:00
|
|
|
# Register (book) web path
|
2019-04-16 01:32:39 +03:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2014-10-20 19:55:53 +03:00
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --time --weight=1
|
2015-10-27 18:03:21 +03:00
|
|
|
|
2019-04-16 01:32:39 +03: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-06-02 19:23:51 +03:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# FIND AND OPEN A PORT
|
|
|
|
#=================================================
|
2021-01-10 00:28:46 +03:00
|
|
|
ynh_script_progression --message="Finding an available port..." --time --weight=1
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2018-06-28 23:05:35 +03:00
|
|
|
|
2019-11-27 21:24:15 +03:00
|
|
|
# Find an available port
|
2019-05-07 13:03:25 +03:00
|
|
|
port=$(ynh_find_port --port=8095)
|
2019-04-16 01:32:39 +03:00
|
|
|
ynh_app_setting_set --app=$app --key=port --value=$port
|
2015-10-27 18:03:21 +03:00
|
|
|
|
2019-11-27 21:24:15 +03:00
|
|
|
# Optional: Expose this port publicly
|
2020-08-02 17:00:17 +03:00
|
|
|
# (N.B.: you only need to do this if the app actually needs to expose the port publicly.
|
2019-11-27 21:24:15 +03:00
|
|
|
# If you do this and the app doesn't actually need you are CREATING SECURITY HOLES IN THE SERVER !)
|
2019-12-06 20:28:44 +03:00
|
|
|
|
|
|
|
# Open the port
|
2021-01-10 00:28:46 +03:00
|
|
|
# ynh_script_progression --message="Configuring firewall..." --time --weight=1
|
2019-11-27 21:24:15 +03:00
|
|
|
# ynh_exec_warn_less yunohost firewall allow --no-upnp TCP $port
|
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_script_progression --message="Installing dependencies..." --time --weight=1
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2018-06-28 23:05:35 +03:00
|
|
|
|
2019-03-06 01:11:52 +03:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2021-03-17 18:32:11 +03:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring system user..." --time --weight=1
|
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
2017-06-17 18:49:26 +03:00
|
|
|
# CREATE A MYSQL DATABASE
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_script_progression --message="Creating a MySQL database..." --time --weight=1
|
2018-06-28 23:05:35 +03:00
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2019-05-07 13:03:25 +03:00
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
2019-05-02 22:04:03 +03:00
|
|
|
db_user=$db_name
|
2019-04-16 01:32:39 +03:00
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
2019-05-02 22:04:03 +03:00
|
|
|
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name
|
2017-06-02 19:23:51 +03:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_script_progression --message="Setting up source files..." --time --weight=1
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2018-06-28 23:05:35 +03:00
|
|
|
|
2019-04-16 01:32:39 +03:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2017-06-02 19:23:51 +03:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2019-04-16 01:32:39 +03:00
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2021-03-17 18:32:11 +03:00
|
|
|
# FIXME: this should be managed by the core in the future
|
|
|
|
# Here, as a packager, you may have to tweak the ownerhsip/permissions
|
|
|
|
# such that the appropriate users (e.g. maybe www-data) can access
|
|
|
|
# files in some cases.
|
|
|
|
# But FOR THE LOVE OF GOD, do not allow r/x for "others" on the entire folder -
|
|
|
|
# this will be treated as a security issue.
|
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
2021-04-23 20:54:08 +03:00
|
|
|
chown -R $app:www-data "$final_path"
|
2021-03-17 18:32:11 +03:00
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-08-02 16:41:28 +03:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --time --weight=1
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2018-06-28 23:05:35 +03:00
|
|
|
|
2020-08-02 16:41:28 +03:00
|
|
|
# Create a dedicated NGINX config
|
2018-05-27 16:44:58 +03:00
|
|
|
ynh_add_nginx_config
|
2017-06-02 19:23:51 +03:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-08-02 16:41:28 +03:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --time --weight=1
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2018-06-28 23:05:35 +03:00
|
|
|
|
2020-08-02 16:41:28 +03:00
|
|
|
# Create a dedicated PHP-FPM config
|
2017-08-29 00:55:51 +03:00
|
|
|
ynh_add_fpm_config
|
2017-06-02 19:23:51 +03:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# ...
|
|
|
|
#=================================================
|
|
|
|
|
2021-04-29 21:58:35 +03:00
|
|
|
#=================================================
|
|
|
|
# CREATE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Creating a data directory..." --time --weight=1
|
|
|
|
|
|
|
|
|
|
|
|
datadir=/home/yunohost.app/$app
|
|
|
|
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
|
|
|
|
|
|
|
|
mkdir -p $datadir
|
|
|
|
|
|
|
|
# FIXME: this should be managed by the core in the future
|
|
|
|
# Here, as a packager, you may have to tweak the ownerhsip/permissions
|
|
|
|
# such that the appropriate users (e.g. maybe www-data) can access
|
|
|
|
# files in some cases.
|
|
|
|
# But FOR THE LOVE OF GOD, do not allow r/x for "others" on the entire folder -
|
|
|
|
# this will be treated as a security issue.
|
|
|
|
chmod 750 "$datadir"
|
|
|
|
chmod -R o-rwx "$datadir"
|
|
|
|
chown -R $app:www-data "$datadir"
|
|
|
|
|
2021-04-23 21:00:41 +03:00
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
2021-04-29 22:08:10 +03:00
|
|
|
ynh_script_progression --message="Adding a configuration file..." --time --weight=1
|
2021-04-23 21:00:41 +03:00
|
|
|
|
|
|
|
|
|
|
|
ynh_add_config --template="some_config_file" --destination="$final_path/some_config_file"
|
|
|
|
|
|
|
|
# FIXME: this should be handled by the core in the future
|
|
|
|
# You may need to use chmod 600 instead of 400,
|
|
|
|
# for example if the app is expected to be able to modify its own config
|
|
|
|
chmod 400 "$final_path/some_config_file"
|
|
|
|
chown $app:$app "$final_path/some_config_file"
|
|
|
|
|
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..." --time --weight=1
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2018-06-28 23:05:35 +03:00
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
# Create a dedicated systemd config
|
2018-06-18 01:58:40 +03:00
|
|
|
ynh_add_systemd_config
|
2017-06-02 19:23:51 +03:00
|
|
|
|
|
|
|
#=================================================
|
2017-06-17 18:49:26 +03:00
|
|
|
# SETUP APPLICATION WITH CURL
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
|
|
|
|
2018-06-28 23:05:35 +03:00
|
|
|
|
2017-06-17 18:49:26 +03:00
|
|
|
# Set the app as temporarily public for curl call
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_script_progression --message="Configuring SSOwat..." --time --weight=1
|
2021-01-06 15:31:32 +03:00
|
|
|
# Making the app public for curl
|
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
2017-06-02 19:23:51 +03:00
|
|
|
|
|
|
|
# Installation with curl
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_script_progression --message="Finalizing installation..." --time --weight=1
|
2017-06-02 19:23:51 +03:00
|
|
|
ynh_local_curl "/INSTALL_PATH" "key1=value1" "key2=value2" "key3=value3"
|
|
|
|
|
2018-06-28 23:05:35 +03:00
|
|
|
# Remove the public access
|
2021-01-06 15:31:32 +03:00
|
|
|
ynh_permission_update --permission="main" --remove="visitors"
|
2018-06-28 23:05:35 +03:00
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
2017-06-17 18:49:26 +03:00
|
|
|
# GENERIC FINALIZATION
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_script_progression --message="Configuring log rotation..." --time --weight=1
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2018-06-28 23:05:35 +03:00
|
|
|
|
2017-06-17 18:49:26 +03:00
|
|
|
# Use logrotate to manage application logfile(s)
|
2017-06-02 19:23:51 +03:00
|
|
|
ynh_use_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
2019-11-27 21:34:37 +03:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
2020-06-04 17:51:14 +03:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --time --weight=1
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2018-06-28 23:05:35 +03:00
|
|
|
|
2020-12-04 11:58:29 +03:00
|
|
|
yunohost service add $app --description="A short description of the app" --log="/var/log/$app/$app.log"
|
2019-11-27 21:34:37 +03:00
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
|
2019-05-02 21:44:22 +03:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --time --weight=1
|
|
|
|
|
|
|
|
|
|
|
|
# Start a systemd service
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
2019-04-18 20:58:47 +03:00
|
|
|
#=================================================
|
|
|
|
# SETUP FAIL2BAN
|
|
|
|
#=================================================
|
2020-09-19 17:26:41 +03:00
|
|
|
ynh_script_progression --message="Configuring Fail2Ban..." --time --weight=1
|
2019-04-18 20:58:47 +03:00
|
|
|
|
2020-09-19 17:26:41 +03:00
|
|
|
# Create a dedicated Fail2Ban config
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="Regex to match into the log for a failed login"
|
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2020-02-08 19:16:25 +03:00
|
|
|
ynh_script_progression --message="Configuring permissions..." --time --weight=1
|
2017-06-02 19:23:51 +03:00
|
|
|
|
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
2020-02-08 19:16:25 +03:00
|
|
|
# Everyone can access the app.
|
|
|
|
# The "main" permission is automatically created before the install script.
|
2021-01-06 15:31:32 +03:00
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
2014-10-20 19:55:53 +03:00
|
|
|
fi
|
|
|
|
|
2021-03-12 18:49:35 +03:00
|
|
|
|
2020-02-08 19:16:25 +03:00
|
|
|
# Only the admin can access the admin panel of the app (if the app has an admin panel)
|
2021-01-06 15:31:32 +03:00
|
|
|
ynh_permission_create --permission="admin" --url="/admin" --allowed=$admin
|
|
|
|
|
2021-09-16 13:40:15 +03:00
|
|
|
# Everyone can access the API part
|
|
|
|
# We don't want to display the tile in the SSO so we put --show_tile="false"
|
|
|
|
# And we don't want the YunoHost admin to be able to remove visitors group to this permission, so we put --protected="true"
|
2021-04-09 22:12:04 +03:00
|
|
|
ynh_permission_create --permission="api" --url="/api" --allowed="visitors" --show_tile="false" --protected="true"
|
2020-02-08 19:16:25 +03:00
|
|
|
|
2017-06-02 19:23:51 +03:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-08-02 16:41:28 +03:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --time --weight=1
|
2019-02-10 17:02:38 +03:00
|
|
|
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-10 17:02:38 +03:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-18 20:58:47 +03:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --time --last
|