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

158 lines
5.5 KiB
Text
Raw Normal View History

2013-12-12 12:12:22 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
2020-04-16 23:33:43 +02:00
#=================================================
source ./_common.sh
source /usr/share/yunohost/helpers
2020-04-16 23:33:43 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2020-04-16 23:33:43 +02:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
domain=$YNH_APP_ARG_DOMAIN
2020-04-16 23:33:43 +02:00
path_url=$YNH_APP_ARG_PATH
secret=$(ynh_string_random)
app=$YNH_APP_INSTANCE_NAME
2020-04-16 23:33:43 +02:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
ynh_script_progression --message="Validating installation parameters..."
2018-08-04 00:35:34 +02:00
final_path="/opt/yunohost/$app"
2020-04-16 23:33:43 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2013-12-12 12:12:22 +01:00
2020-04-16 23:33:43 +02:00
# Register (book) web path
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
# Find available ports
port=$(ynh_find_port --port 6000)
2020-04-16 23:33:43 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
2020-04-16 23:33:43 +02:00
#=================================================
2020-04-16 23:33:43 +02: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=secret --value="$secret"
ynh_app_setting_set --app $app --key web_port --value $port
#=================================================
# STANDARD MODIFICATIONS
2020-04-16 23:33:43 +02:00
#=================================================
# INSTALL DEPENDENCIES
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Installing dependencies..." --weight=7
2023-01-22 10:54:32 +01:00
2020-04-16 23:33:43 +02:00
ynh_install_app_dependencies $pkg_dependencies
2020-04-16 23:33:43 +02:00
#=================================================
# CREATE A MYSQL DATABASE
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Creating a MySQL database..."
db_name=$(ynh_sanitize_dbid --db_name=$app)
db_user=$db_name
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name
2020-04-16 23:33:43 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Installing sources files..." --weight=10
2020-04-16 23:33:43 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
install_sources
# Modify assets to take path into account
# TODO: try to include this as a patch if still needed
# find ../sources/syncserver/page/sync_files/ -type f -exec sed -i -e "s@media\/img@$path_url\/media\/img@g" {} \;
2020-04-16 23:33:43 +02:00
#=================================================
# NGINX CONFIGURATION
2020-04-16 23:33:43 +02:00
#=================================================
2023-01-22 10:54:32 +01:00
ynh_script_progression --message="Configuring NGINX"
if [ "$path_url" == "/" ]
2014-11-15 17:24:32 +01:00
then
# $finalnginxconf comes from ynh_add_nginx_config
# uwsgi_param is only needed for non-root installation
is_subpath="# "
else
is_subpath=" "
2014-11-15 17:24:32 +01:00
fi
ynh_add_nginx_config 'is_subpath'
2014-11-15 17:24:32 +01:00
2020-04-16 23:33:43 +02:00
#=================================================
# CREATE DEDICATED USER
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Configuring system user..."
2023-01-22 10:54:32 +01:00
2020-04-16 23:33:43 +02:00
# Create a system user
ynh_system_user_create --username=$app --home_dir=$final_path
#=================================================
# SPECIFIC SETUP
#=================================================
2023-01-22 10:54:32 +01:00
ynh_script_progression --message="Configuring application..."
# create config file syncserver.ini
ynh_add_config --template="syncserver.ini" --destination="$final_path/syncserver.ini"
# Configure init script
ynh_script_progression --message="Configuring a systemd service..." --weight=2
ynh_add_systemd_config
yunohost service add "$app"
2020-04-16 23:33:43 +02:00
#=================================================
# MODIFY A CONFIG FILE
2020-04-16 23:33:43 +02:00
#=================================================
# TODO: fix this css patch
# ynh_replace_string "media\/img@$path_url\/media\/img@g" $final_path/syncserver/page/sync_files/firefox_sync-bundle.css
# ynh_replace_string "media\/img@$path_url\/media\/img@g" $final_path/syncserver/page/sync_files/responsive-bundle.css
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Protecting directory"
2020-04-16 23:33:43 +02:00
# Set permissions to app files
set_permissions
2020-04-16 23:33:43 +02:00
#=================================================
# SETUP SSOWAT
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Configuring permissions"
2020-04-16 23:33:43 +02:00
2023-01-22 10:54:32 +01:00
# accessible by everyone (authentification is done by firefox accounts)
2021-03-15 12:03:05 +01:00
ynh_permission_update --permission=main --add=visitors --protected=true --show_tile=true
2020-04-16 23:33:43 +02:00
#=================================================
# RELOAD Services
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Restart services..."
2023-01-22 10:54:32 +01:00
2020-04-16 23:33:43 +02:00
ynh_systemd_action --service_name=nginx --action=reload
ynh_script_progression --message="Starting $app services..." --weight=3
ynh_systemd_action --service_name "$app.service" \
--line_match "Booting worker with pid" --log_path "systemd" -t 20
2020-04-16 23:33:43 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed" --last