2015-02-16 23:19:37 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-02-16 23:19:37 +01:00
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2015-02-16 23:27:29 +01:00
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
2015-02-16 23:19:37 +01:00
|
|
|
|
2024-02-11 21:27:41 +01:00
|
|
|
email=$(ynh_user_get_info --username="$admin" --key=mail)
|
2022-06-11 10:34:59 +02:00
|
|
|
timezone=$(cat /etc/timezone)
|
2018-06-05 23:17:03 +02:00
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2023-08-20 15:51:37 +02:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --weight=1
|
2017-07-18 12:21:08 +02:00
|
|
|
|
2024-02-11 21:27:41 +01:00
|
|
|
ynh_app_setting_set --app="$app" --key=email --value="$email"
|
2017-07-18 12:28:52 +02:00
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2021-07-19 08:38:46 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=5
|
2019-03-12 11:37:22 +01:00
|
|
|
|
2023-08-21 09:55:30 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
ynh_setup_source --dest_dir="$install_dir/addon" --source_id="addons"
|
2020-04-09 10:42:49 +02:00
|
|
|
|
2023-08-21 14:03:11 +02:00
|
|
|
mkdir -p "$install_dir/view/smarty3"
|
|
|
|
|
|
|
|
chmod -R 775 "$install_dir/view/smarty3"
|
2023-08-20 15:36:10 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-02-11 21:27:41 +01:00
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2021-07-17 16:48:02 +02:00
|
|
|
|
2024-02-12 00:03:37 +01:00
|
|
|
ynh_add_config --template="local-sample.config.php" --destination="$install_dir/config/local.config.php"
|
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
#=================================================
|
2023-08-21 12:34:53 +02:00
|
|
|
# SYSTEM CONFIGURATION
|
2017-07-18 12:21:08 +02:00
|
|
|
#=================================================
|
2023-08-21 12:34:53 +02:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2018-06-05 23:17:03 +02:00
|
|
|
|
2023-08-21 10:05:52 +02:00
|
|
|
# Create a dedicated PHP-FPM configy
|
2023-09-11 18:06:52 +02:00
|
|
|
ynh_add_fpm_config
|
2023-08-21 10:05:52 +02:00
|
|
|
|
2024-02-22 05:04:11 +01:00
|
|
|
ynh_add_systemd_config --service="$app-daemon"
|
|
|
|
|
2023-08-21 12:34:53 +02:00
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2024-02-22 05:04:11 +01:00
|
|
|
yunohost service add "$app-daemon" --description="Friendica daemon" --log="/var/log/$app/daemon.log"
|
2023-08-21 12:34:53 +02:00
|
|
|
|
2023-08-21 12:23:35 +02:00
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
2023-08-21 12:34:53 +02:00
|
|
|
# Create a dedicated Fail2Ban config
|
|
|
|
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="^.*authenticate\: failed login attempt.*\"ip\"\:\"<HOST>\".*$"
|
2023-08-21 10:05:52 +02:00
|
|
|
|
2021-07-17 17:18:53 +02:00
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
2023-08-20 14:03:12 +02:00
|
|
|
ynh_script_progression --message="Adding the LDAP Auth addon configuration file..." --weight=1
|
2018-06-05 23:17:03 +02:00
|
|
|
|
2021-07-17 16:48:02 +02:00
|
|
|
# LDAP addon config
|
2024-02-11 21:27:41 +01:00
|
|
|
ynh_add_config --template="addon.config.php" --destination="$install_dir/config/addon.config.php"
|
2018-06-05 23:17:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-07-19 08:47:47 +02:00
|
|
|
# INSTALL FRIENDICA
|
2018-06-05 23:17:03 +02:00
|
|
|
#=================================================
|
2023-08-20 14:03:12 +02:00
|
|
|
ynh_script_progression --message="Install Friendica..." --weight=1
|
2018-06-05 23:17:03 +02:00
|
|
|
|
2023-08-20 15:36:10 +02:00
|
|
|
pushd "$install_dir"
|
2023-08-20 14:03:12 +02:00
|
|
|
# Import Composer dependencies
|
2024-02-11 21:27:41 +01:00
|
|
|
ynh_exec_as "$app" "php$phpversion" bin/composer.phar install --no-dev --quiet
|
2021-02-10 09:00:00 +01:00
|
|
|
|
2023-08-20 14:03:12 +02:00
|
|
|
# Install application
|
2024-02-22 05:04:11 +01:00
|
|
|
ynh_exec_as "$app" "php$phpversion" bin/console.php -f "$install_dir/config/local.config.php"
|
2023-08-20 14:03:12 +02:00
|
|
|
|
|
|
|
# Enable LDAP Auth addon
|
2024-02-11 21:27:41 +01:00
|
|
|
ynh_exec_as "$app" "php$phpversion" bin/console.php addon enable ldapauth
|
2023-08-20 14:03:12 +02:00
|
|
|
popd
|
2020-10-15 21:09:24 +02:00
|
|
|
|
2024-02-22 05:04:11 +01:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name="$app-daemon" --action="start" --log_path="/var/log/$app/daemon.log"
|
|
|
|
|
2019-03-12 11:37:22 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-19 08:38:46 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|