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

260 lines
9.5 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2019-04-12 16:58:46 +02:00
ynh_clean_setup () {
ynh_clean_check_starting
}
# 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
path_url="/"
is_public=$YNH_APP_ARG_IS_PUBLIC
admin=$YNH_APP_ARG_ADMIN
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Validating installation parameters..."
final_path="/var/www/$app"
2019-05-14 22:55:26 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
# Register (book) web path
2019-05-14 22:55:26 +02:00
ynh_webpath_register --app="$app" --domain="$domain" --path_url="$path_url"
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Storing installation settings..."
2019-05-14 22:55:26 +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=admin --value="$admin"
#=================================================
# STANDARD MODIFICATIONS
#=================================================
2018-05-10 23:20:19 +02:00
# FIND AND OPEN A PORT
#=================================================
2021-01-09 22:43:04 +01:00
ynh_script_progression --message="Finding an available port..."
2018-05-10 23:20:19 +02:00
# Find a free port
2019-05-14 22:55:26 +02:00
port=$(ynh_find_port --port=5000)
2018-05-10 23:20:19 +02:00
# Open this port
2019-05-14 22:55:26 +02:00
ynh_app_setting_set --app="$app" --key=port --value="$port"
2018-05-10 23:20:19 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Installing dependencies..."
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
#=================================================
2019-04-03 14:35:09 +02:00
# CREATE A POSTGRESQL DATABASE
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Creating a PostgreSQL database..."
ynh_psql_test_if_first_run
db_name=$(ynh_sanitize_dbid "$app")
2019-05-14 22:55:26 +02:00
db_user="$db_name"
2018-05-11 23:36:43 +02:00
db_pwd=$(ynh_string_random)
2019-05-14 22:55:26 +02:00
ynh_app_setting_set --app="$app" --key=db_name --value="$db_name"
ynh_app_setting_set --app="$app" --key=psqlpwd --value="$db_pwd"
# Initialize database and store postgres password for upgrade
2019-04-12 01:46:28 +02:00
ynh_psql_setup_db --db_name="$db_name" --db_user="$db_user" --db_pwd="$db_pwd"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Setting up source files..."
2019-05-14 22:55:26 +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
2019-05-14 22:55:26 +02:00
ynh_setup_source --dest_dir="$final_path/code"
ynh_setup_source --dest_dir="$final_path/code" --source_id="app-frontend"
(
cd "$final_path"
mkdir -p code/config code/api code/data/static media import code/front
)
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Configuring nginx web server..."
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# CREATE DEDICATED USER
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Configuring system user..."
# Create a system user
2019-05-14 22:55:26 +02:00
ynh_system_user_create --username="$app" --home_dir="$final_path"
#=================================================
# SPECIFIC SETUP
#=================================================
# PYTHON DEPENDENCIES
#=================================================
virtualenv -p python3 "$final_path/code/virtualenv"
(
set +o nounset
source "${final_path}/code/virtualenv/bin/activate"
set -o nounset
pip install --upgrade pip
pip install --upgrade setuptools
pip install wheel
pip install -r "${final_path}/code/api/requirements.txt"
)
#=================================================
# MODIFY THE CONFIG FILE
#=================================================
configfile="$final_path/code/config/.env"
cp ../conf/env.prod "$configfile"
2018-05-10 14:45:13 +02:00
key=$(ynh_string_random)
2018-05-12 23:57:20 +02:00
redis_db=$(ynh_redis_get_free_db)
2019-05-14 22:55:26 +02:00
ynh_app_setting_set --app="$app" --key=key --value="$key"
ynh_app_setting_set --app="$app" --key=redis_db --value="$redis_db"
2019-05-14 22:55:26 +02:00
ynh_replace_string --match_string="__REDIS_DB__" --replace_string="$redis_db" --target_file="$configfile"
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="$configfile"
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$configfile"
ynh_replace_string --match_string="__DBUSER__" --replace_string="$db_name" --target_file="$configfile"
ynh_replace_string --match_string="__DBPWD__" --replace_string="$db_pwd" --target_file="$configfile"
ynh_replace_string --match_string="__DBNAME__" --replace_string="$app" --target_file="$configfile"
ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file="$configfile"
ynh_replace_string --match_string="__KEY__" --replace_string="$key" --target_file="$configfile"
#=================================================
2019-04-03 14:35:09 +02:00
# CONFIGURE ADMIN USER
#=================================================
2019-05-14 22:55:26 +02:00
admin_mail=$(ynh_user_get_info --username="$admin" --key="mail")
(
set +o nounset
source "${final_path}/code/virtualenv/bin/activate"
set -o nounset
cd "$final_path/code/"
2018-05-10 18:54:23 +02:00
# needed for enabling the 'unaccent' extension
2019-04-12 01:46:28 +02:00
ynh_psql_execute_as_root --sql="ALTER USER $db_user WITH SUPERUSER;" --database="$db_name"
python api/manage.py migrate
2019-04-12 01:46:28 +02:00
ynh_psql_execute_as_root --sql="ALTER USER $db_user WITH NOSUPERUSER;" --database="$db_name"
2018-05-10 23:20:19 +02:00
echo "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.create_superuser('$admin', '$admin_mail', 'funkwhale') " | python api/manage.py shell
python api/manage.py collectstatic
)
#=================================================
# SETUP SYSTEMD
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Configuring a systemd service..."
2019-05-14 22:55:26 +02:00
2018-05-10 18:54:23 +02:00
cp ../conf/funkwhale.target "/etc/systemd/system/$app.target"
2019-05-14 22:55:26 +02:00
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="/etc/systemd/system/$app.target"
2018-05-10 23:20:19 +02:00
# Create a dedicated systemd config
2019-05-14 22:55:26 +02:00
ynh_add_systemd_config --service="$app-server" --template="funkwhale-server.service"
ynh_add_systemd_config --service="$app-worker" --template="funkwhale-worker.service"
ynh_add_systemd_config --service="$app-beat" --template="funkwhale-beat.service"
2019-06-01 07:05:15 +02:00
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
# Calculate and store the config file checksum into the app settings
ynh_store_file_checksum --file="$configfile"
#=================================================
2018-05-10 18:54:23 +02:00
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2018-05-10 18:54:23 +02:00
chown -R "$app": "$final_path"
chmod -R 755 "$final_path/code/front/dist/"
2018-05-10 18:54:23 +02:00
2019-01-14 21:30:46 +01:00
mkdir -p "/var/log/$app"
chown -R "$app": "/var/log/$app"
#=================================================
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
2020-12-04 16:56:37 +01:00
yunohost service add "$app-server" --log="/var/log/$app/server.log"
yunohost service add "$app-worker" --log="/var/log/$app/worker.log"
yunohost service add "$app-beat" --log="/var/log/$app/beat.log"
2019-05-14 22:55:26 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Starting a systemd service..."
2019-05-14 22:55:26 +02:00
2019-11-02 14:38:47 +01:00
ynh_systemd_action --action="start" --service_name="${app}-beat"
ynh_systemd_action --action="start" --service_name="${app}-server"
ynh_systemd_action --action="start" --service_name="${app}-worker"
2019-05-14 22:55:26 +02:00
#=================================================
# SETUP FAIL2BAN
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Configuring Fail2Ban..."
2019-05-14 22:55:26 +02:00
# Create a dedicated fail2ban config
ynh_add_fail2ban_config --logpath="/var/log/nginx/$domain-access.log" --failregex="<HOST>.* \"POST /api/v1/token/ HTTP/1.1\" 400 68.*$" --max_retry=5
2018-05-10 18:54:23 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
ynh_script_progression --message="Configuring permissions..."
2018-05-10 18:54:23 +02:00
2020-12-04 18:25:18 +01:00
# Make app public if necessary or protect it
if [ $is_public -eq 1 ]
2018-05-10 18:54:23 +02:00
then
2020-12-04 18:25:18 +01:00
# Everyone can access the app.
# The "main" permission is automatically created before the install script.
ynh_permission_update --permission="main" --add="visitors"
2018-05-10 18:54:23 +02:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2019-04-03 14:35:09 +02:00
2019-05-14 22:55:26 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-04-03 14:35:09 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-12-04 17:08:43 +01:00
ynh_script_progression --message="Installation of $app completed"