2013-11-24 11:35:48 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-05-10 14:21:26 +02:00
|
|
|
|
2019-03-16 09:09:09 +01:00
|
|
|
source _common.sh
|
2017-04-20 21:31:08 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-02-19 13:54:21 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
2013-11-24 11:35:48 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2013-11-24 11:35:48 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
path_url=$YNH_APP_ARG_PATH
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2020-06-18 20:57:12 +02:00
|
|
|
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
2013-11-24 11:35:48 +01:00
|
|
|
|
2016-05-04 14:53:55 +02:00
|
|
|
final_path=/var/www/$app
|
2017-08-27 14:42:28 +02:00
|
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
|
|
|
|
|
|
|
# Register (book) web path
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2017-08-27 14:42:28 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2020-06-18 20:57:12 +02:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --weight=1
|
2017-08-27 14:42:28 +02:00
|
|
|
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
|
|
ynh_app_setting_set --app=$app --key=path --value=$path_url
|
2017-08-27 14:42:28 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# CREATE A MYSQL DATABASE
|
|
|
|
#=================================================
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_script_progression --message="Creating a MySQL database..." --weight=2
|
2017-08-27 14:42:28 +02:00
|
|
|
|
|
|
|
db_name=$(ynh_sanitize_dbid $app)
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
2020-09-14 12:52:01 +02:00
|
|
|
ynh_mysql_setup_db --db_user=$db_name --db_name=$db_name
|
2020-09-14 13:18:09 +02:00
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
|
2017-08-27 14:42:28 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=7
|
2017-08-27 14:42:28 +02:00
|
|
|
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2017-08-27 14:42:28 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2017-08-27 14:42:28 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-08-14 12:29:45 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
|
2017-08-27 14:42:28 +02:00
|
|
|
|
2020-08-14 12:29:45 +02:00
|
|
|
# Create a dedicated NGINX config
|
2017-08-27 14:42:28 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=2
|
2015-01-22 17:56:46 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
# Create a system user
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_system_user_create --username=$app
|
2017-02-19 13:54:21 +01:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-08-14 12:29:45 +02:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=2
|
2017-08-27 14:42:28 +02:00
|
|
|
|
2020-08-14 12:29:45 +02:00
|
|
|
# Create a dedicated PHP-FPM config
|
2020-11-20 12:28:18 +01:00
|
|
|
ynh_add_fpm_config --package="$extra_php_dependencies"
|
2020-09-15 10:37:09 +02:00
|
|
|
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
|
2017-08-27 14:42:28 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE TTRSS
|
|
|
|
#=================================================
|
2020-06-18 20:57:12 +02:00
|
|
|
ynh_script_progression --message="Configuring ttrss..." --weight=1
|
2017-08-27 14:42:28 +02:00
|
|
|
|
|
|
|
cp ../conf/config.php "$final_path/config.php"
|
2013-11-24 11:35:48 +01:00
|
|
|
|
|
|
|
# Change variables in ttrss configuration
|
2021-04-02 23:59:28 +02:00
|
|
|
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$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="__DOMAIN_PATH__" --replace_string="https://$domain$path_url" --target_file="$final_path/config.php"
|
2017-08-27 14:42:28 +02:00
|
|
|
|
|
|
|
# Recalculate and store the config file checksum into the app settings
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_store_file_checksum --file="$final_path/config.php"
|
2017-08-27 14:42:28 +02:00
|
|
|
|
|
|
|
#=================================================
|
2017-08-27 16:42:26 +02:00
|
|
|
# SETUP SYSTEMD
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..." --weight=2
|
2017-08-27 14:42:28 +02:00
|
|
|
|
2017-08-27 16:42:26 +02:00
|
|
|
ynh_add_systemd_config
|
2017-08-27 14:42:28 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Set permissions to app files
|
|
|
|
chown -R root: $final_path
|
|
|
|
chown -R $app $final_path/{cache,feed-icons,lock}
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INITIALIZE DATABASE
|
|
|
|
#=================================================
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_script_progression --message="Initializing database..." --weight=6
|
2017-08-27 14:42:28 +02:00
|
|
|
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_mysql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" \
|
2017-08-27 14:42:28 +02:00
|
|
|
< "$final_path/schema/ttrss_schema_mysql.sql"
|
|
|
|
|
2020-09-15 10:37:09 +02:00
|
|
|
ynh_exec_as $app php"${phpversion}" ${final_path}/update.php --update-schema
|
2017-08-27 14:42:28 +02:00
|
|
|
|
2017-08-27 16:42:26 +02:00
|
|
|
#=================================================
|
|
|
|
# START TTRSS IN BACKGROUND
|
|
|
|
#=================================================
|
2020-06-18 20:57:12 +02:00
|
|
|
ynh_script_progression --message="Starting ttrss..." --weight=1
|
2017-08-27 16:42:26 +02:00
|
|
|
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action=start
|
2017-08-27 16:42:26 +02:00
|
|
|
|
2019-05-01 20:35:48 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2018-05-31 07:32:18 +02:00
|
|
|
#=================================================
|
|
|
|
# ADVERTISE SERVICE IN ADMIN PANEL
|
|
|
|
#=================================================
|
2020-11-20 12:28:18 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2018-05-31 07:32:18 +02:00
|
|
|
|
2020-12-04 14:11:53 +01:00
|
|
|
yunohost service add $app --description="News feed reader and aggregator" --log="/var/log/$app/$app.log"
|
2018-05-31 07:32:18 +02:00
|
|
|
|
2017-08-27 14:42:28 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2020-06-18 20:57:12 +02:00
|
|
|
ynh_script_progression --message="Configuring SSOwat..." --weight=1
|
2017-08-27 14:42:28 +02:00
|
|
|
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=skipped_uris --value="/public.php,/api,/opml.php?op=publish"
|
2017-08-27 14:42:28 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-08-14 12:29:45 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
|
2019-05-01 20:35:48 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-08-27 14:42:28 +02:00
|
|
|
|
2019-05-01 20:35:48 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|