1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ssbroom_ynh.git synced 2024-09-03 20:26:29 +02:00
ssbroom_ynh/scripts/install

198 lines
6.6 KiB
Text
Raw Normal View History

2021-09-08 10:52:58 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
2022-07-02 19:06:02 +02:00
ynh_clean_check_starting
2021-09-08 10:52:58 +02: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
2021-09-15 08:17:28 +02:00
path_url="/"
2021-10-08 11:22:36 +02:00
is_public=$YNH_APP_ARG_IS_PUBLIC
2021-10-11 09:59:18 +02:00
ssb_admin_id=$YNH_APP_ARG_SSB_ADMIN_ID
2021-09-08 10:52:58 +02:00
password=$YNH_APP_ARG_PASSWORD
2022-07-02 19:06:02 +02:00
2021-09-08 10:52:58 +02:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
2021-09-08 10:52:58 +02:00
2021-09-15 08:17:28 +02:00
final_path=/opt/yunohost/$app
2021-09-08 10:52:58 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
# Register (book) web path
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2021-09-08 10:52:58 +02:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
2021-09-15 08:17:28 +02:00
ynh_app_setting_set --app=$app --key=admin --value=$ssb_admin_id
2021-09-08 10:52:58 +02:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Finding an available port..." --weight=1
2021-09-08 10:52:58 +02:00
2021-09-15 08:17:28 +02:00
# Find an available port for web interface
2021-09-10 14:41:29 +02:00
port=$(ynh_find_port --port=8899)
2021-09-08 10:52:58 +02:00
ynh_app_setting_set --app=$app --key=port --value=$port
2021-09-15 08:17:28 +02:00
# Find an available port for ssb tunnels
ssbport=$(ynh_find_port --port=8008)
ynh_app_setting_set --app=$app --key=ssbport --value=$ssbport
2021-09-08 10:52:58 +02:00
2021-09-15 08:17:28 +02:00
# Open the ssbport to the public
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Configuring firewall..." --weight=1
2021-09-15 08:17:28 +02:00
ynh_exec_warn_less yunohost firewall allow --no-upnp TCP $ssbport
2021-09-08 10:52:58 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Installing dependencies..." --weight=1
2021-09-08 10:52:58 +02:00
ynh_install_app_dependencies $pkg_dependencies
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Configuring system user..." --weight=1
2021-09-08 10:52:58 +02:00
# Create a system user
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-09-10 14:41:29 +02:00
ynh_script_progression --message="Setting up source files..." --weight=1
2021-09-08 10:52:58 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress and patch the source from app.src
2022-07-02 19:06:02 +02:00
ynh_setup_source --dest_dir="$final_path" --source_id="$YNH_ARCH"
2021-09-08 10:52:58 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2021-09-08 10:52:58 +02:00
2022-07-02 19:06:02 +02:00
# Create a dedicated NGINX config
2021-10-06 12:35:46 +02:00
ynh_add_nginx_config
2021-09-08 10:52:58 +02:00
#=================================================
# CREATE DATA DIRECTORY
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Creating a data directory..." --weight=1
2021-09-08 10:52:58 +02:00
datadir=/home/yunohost.app/$app
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
mkdir -p $datadir
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:www-data "$datadir"
2021-09-15 08:17:28 +02:00
#=================================================
# CREATE FIRST ADMIN USER
#=================================================
ynh_script_progression --message="Creating first ssbroom admin user" --weight=1
2022-07-02 19:06:02 +02:00
2021-09-16 17:18:00 +02:00
ynh_exec_as $app /usr/bin/expect<<EOF
set force_conservative 0 ;
set timeout -1
spawn sh -c "$final_path/insert-user -repo $datadir $ssb_admin_id"
match_max 100000
expect "*?assword: "
send -- "$password\r"
expect "*?assword: "
send -- "$password\r"
expect eof
EOF
2021-09-15 08:17:28 +02:00
2021-09-08 10:52:58 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=1
2021-09-08 10:52:58 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Configuring log rotation..." --weight=1
2021-09-08 10:52:58 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-09-08 10:52:58 +02:00
2023-08-17 20:43:44 +02:00
yunohost service add $app --description="Secure Scuttlebutt room server" --log="/var/log/$app/$app.log" --needs_exposed_ports $ssbport
2021-09-08 10:52:58 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-09-08 10:52:58 +02:00
# Start a systemd service
2022-07-02 19:06:02 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" --line_match="event=serving"
2021-09-08 10:52:58 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2021-09-08 10:52:58 +02:00
2021-10-08 10:44:14 +02:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# Everyone can access the app.
# The "main" permission is automatically created before the install script.
ynh_permission_update --permission="main" --add="visitors"
fi
2021-09-08 10:52:58 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-09-08 10:52:58 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-10-08 13:13:32 +02:00
ynh_script_progression --message="Installation of $app completed" --last