2014-07-23 15:52:50 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-07-21 12:18:50 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-09-01 08:31:03 +02:00
|
|
|
|
2018-07-21 12:18:50 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2017-02-13 22:30:35 +01:00
|
|
|
|
2018-07-21 12:18:50 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
2017-03-13 20:14:53 +01:00
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2019-02-21 08:05:10 +01:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
|
|
language=$YNH_APP_ARG_LANGUAGE
|
|
|
|
|
|
|
|
### If it's a multi-instance app, meaning it can be installed several times independently
|
|
|
|
### The id of the app as stated in the manifest is available as $YNH_APP_ID
|
|
|
|
### The instance number is available as $YNH_APP_INSTANCE_NUMBER (equals "1", "2", ...)
|
|
|
|
### The app instance name is available as $YNH_APP_INSTANCE_NAME
|
|
|
|
### - the first time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample
|
|
|
|
### - the second time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample__2
|
|
|
|
### - ynhexample__{N} for the subsequent installations, with N=3,4, ...
|
|
|
|
### The app instance name is probably what interests you most, since this is
|
|
|
|
### guaranteed to be unique. This is a good unique identifier to define installation path,
|
|
|
|
### db names, ...
|
2017-03-05 17:17:14 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-07-23 15:52:50 +02:00
|
|
|
|
2019-02-21 08:05:10 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "Validating installation parameters..."
|
2017-03-05 17:27:33 +01:00
|
|
|
|
2019-02-21 08:05:10 +01:00
|
|
|
### If the app uses nginx as web server (written in HTML/PHP in most cases), the final path should be "/var/www/$app".
|
|
|
|
### If the app provides an internal web server (or uses another application server such as uwsgi), the final path should be "/opt/yunohost/$app"
|
|
|
|
final_path=/var/www/$app
|
|
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
2014-09-21 11:52:46 +02:00
|
|
|
|
2019-02-21 08:05:10 +01:00
|
|
|
# Normalize the url path syntax
|
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
2014-09-21 11:52:46 +02:00
|
|
|
|
2018-07-21 12:18:50 +02:00
|
|
|
# Register (book) web path
|
2019-02-21 08:05:10 +01:00
|
|
|
ynh_webpath_register $app $domain $path_url
|
2014-07-23 15:52:50 +02:00
|
|
|
|
2019-02-21 08:05:10 +01:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "Storing installation settings..."
|
2017-02-13 22:20:55 +01:00
|
|
|
|
2018-07-21 12:18:50 +02:00
|
|
|
ynh_app_setting_set $app domain $domain
|
2019-02-21 08:05:10 +01:00
|
|
|
ynh_app_setting_set $app path $path_url
|
|
|
|
ynh_app_setting_set $app admin $admin
|
|
|
|
ynh_app_setting_set $app language $language
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "Installing dependencies..."
|
|
|
|
|
|
|
|
### `ynh_install_app_dependencies` allows you to add any "apt" dependencies to the package.
|
|
|
|
### Those deb packages will be installed as dependencies of this package.
|
|
|
|
### If you're not using this helper:
|
|
|
|
### - Remove the section "REMOVE DEPENDENCIES" in the remove script
|
|
|
|
### - As well as the section "REINSTALL DEPENDENCIES" in the restore script
|
|
|
|
### - And the section "UPGRADE DEPENDENCIES" in the upgrade script
|
|
|
|
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE A MYSQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "Creating a MySQL database..."
|
|
|
|
|
|
|
|
### Use these lines if you need a database for the application.
|
|
|
|
### `ynh_mysql_setup_db` will create a database, an associated user and a ramdom password.
|
|
|
|
### The password will be stored as 'mysqlpwd' into the app settings,
|
|
|
|
### and will be available as $db_pwd
|
|
|
|
### If you're not using these lines:
|
|
|
|
### - Remove the section "BACKUP THE MYSQL DATABASE" in the backup script
|
|
|
|
### - Remove also the section "REMOVE THE MYSQL DATABASE" in the remove script
|
|
|
|
### - As well as the section "RESTORE THE MYSQL DATABASE" in the restore script
|
|
|
|
|
|
|
|
db_name=$(ynh_sanitize_dbid $app)
|
|
|
|
ynh_app_setting_set $app db_name $db_name
|
|
|
|
ynh_mysql_setup_db $db_name $db_name
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "Setting up source files..."
|
|
|
|
|
|
|
|
### `ynh_setup_source` is used to install an app from a zip or tar.gz file,
|
|
|
|
### downloaded from an upstream source, like a git repository.
|
|
|
|
### `ynh_setup_source` use the file conf/app.src
|
|
|
|
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source "$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "Configuring nginx web server..."
|
|
|
|
|
|
|
|
### `ynh_add_nginx_config` will use the file conf/nginx.conf
|
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "Configuring system user..."
|
2018-07-21 12:18:50 +02:00
|
|
|
|
2019-02-21 08:05:10 +01:00
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create $app
|
2014-07-23 15:52:50 +02:00
|
|
|
|
2019-02-21 08:05:10 +01:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "Configuring php-fpm..."
|
|
|
|
|
|
|
|
### `ynh_add_fpm_config` is used to set up a PHP config.
|
|
|
|
### You can remove it if your app doesn't use PHP.
|
|
|
|
### `ynh_add_fpm_config` will use the files conf/php-fpm.conf and conf/php-fpm.ini
|
|
|
|
### If you're not using these lines:
|
|
|
|
### - You can remove these files in conf/.
|
|
|
|
### - Remove the section "BACKUP THE PHP-FPM CONFIGURATION" in the backup script
|
|
|
|
### - Remove also the section "REMOVE PHP-FPM CONFIGURATION" in the remove script
|
|
|
|
### - As well as the section "RESTORE THE PHP-FPM CONFIGURATION" in the restore script
|
|
|
|
### With the reload at the end of the script.
|
|
|
|
### - And the section "PHP-FPM CONFIGURATION" in the upgrade script
|
|
|
|
|
|
|
|
# Create a dedicated php-fpm config
|
|
|
|
ynh_add_fpm_config
|
2017-02-12 11:34:30 +01:00
|
|
|
|
2019-02-21 08:05:10 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "FreshRSS setup script..."
|
|
|
|
$final_path/cli/do-install.php --default_user $admin --auth_type http_auth --environment production --base_url $domain/$path_url --title FreshRSS --api_enabled --db-type mysql --db-host localhost --db-user $db_name --db-password $db_pwd --db-base $db_name
|
2017-01-22 14:50:51 +01:00
|
|
|
|
2014-07-23 15:52:50 +02:00
|
|
|
# Add users
|
2019-02-21 08:05:10 +01:00
|
|
|
ynh_print_info "Creating users..."
|
2017-02-13 22:37:16 +01:00
|
|
|
for myuser in $(ynh_user_list)
|
2014-07-23 15:52:50 +02:00
|
|
|
do
|
2017-01-22 14:50:51 +01:00
|
|
|
user_token=$(ynh_string_random)
|
2019-02-21 08:05:10 +01:00
|
|
|
$final_path/cli/create-user.php --user $myuser --language $language --token $user_token --no-default-feeds
|
2014-07-23 15:52:50 +02:00
|
|
|
done
|
2019-02-21 08:05:10 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CRON SETUP
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "Setting up cron..."
|
2017-02-13 22:20:55 +01:00
|
|
|
cron_path="/etc/cron.d/$app"
|
2019-02-21 08:05:10 +01:00
|
|
|
ynh_replace_string "__FINALPATH__" $final_path ../conf/freshrss.cron
|
|
|
|
cp ../conf/freshrss.cron "$cron_path"
|
|
|
|
chmod 644 "$cron_path"
|
|
|
|
|
|
|
|
#=================================================
|
2017-02-13 22:20:55 +01:00
|
|
|
|
2014-07-23 15:52:50 +02:00
|
|
|
|
2019-02-21 08:05:10 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
### For security reason, any app should set the permissions to root: before anything else.
|
|
|
|
### Then, if write authorization is needed, any access should be given only to directories
|
|
|
|
### that really need such authorization.
|
|
|
|
|
|
|
|
# Set permissions to app files
|
|
|
|
chown -R root: $final_path
|
|
|
|
chown -R $app: $final_path/data/
|
|
|
|
chown -R $app: $final_path/extensions/
|
|
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "Configuring SSOwat..."
|
|
|
|
|
2015-10-03 11:58:14 +02:00
|
|
|
#skip api directory
|
2019-01-04 18:57:21 +01:00
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/api/"
|
2019-02-21 08:05:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info "Reloading nginx web server..."
|
|
|
|
|
|
|
|
systemctl reload nginx
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_print_info "Installation of $app completed"
|