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

251 lines
8.8 KiB
Text
Raw Normal View History

2022-08-06 19:00:44 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
true
}
2022-08-07 20:38:59 +02:00
2022-08-06 19:00:44 +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
2022-08-07 08:17:05 +02:00
path_url=/ #$YNH_APP_ARG_PATH
2022-08-06 19:00:44 +02:00
is_public=$YNH_APP_ARG_IS_PUBLIC
2022-08-06 23:20:30 +02:00
2022-08-06 19:00:44 +02:00
app=$YNH_APP_INSTANCE_NAME
2022-08-06 23:20:30 +02:00
secretkey=$(ynh_string_random --length=12)
2022-08-09 22:53:41 +02:00
timezone="$(cat /etc/timezone)"
2022-08-06 23:20:30 +02:00
2022-08-06 19:00:44 +02:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
2022-08-06 19:00:44 +02: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 --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
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2022-08-06 19:00:44 +02:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
2022-08-06 23:20:30 +02:00
ynh_app_setting_set --app=$app --key=secretkey --value=$secretkey
2022-08-06 19:00:44 +02:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Finding an available port..." --weight=1
2022-08-06 19:00:44 +02:00
# Find an available port
port=$(ynh_find_port --port=8095)
ynh_app_setting_set --app=$app --key=port --value=$port
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Installing dependencies..." --weight=3
2022-08-06 19:00:44 +02:00
2022-08-09 22:53:41 +02:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
2022-08-06 19:00:44 +02:00
2022-08-06 23:20:30 +02:00
# Install Nodejs
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
# Install Yarn
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
2022-08-06 19:00:44 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Configuring system user..." --weight=1
2022-08-06 19:00:44 +02:00
# Create a system user
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
2022-08-06 23:20:30 +02:00
# CREATE A PostgreSQL DATABASE
2022-08-06 19:00:44 +02:00
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=1
2022-08-06 19:00:44 +02:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
db_user=$db_name
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
2022-08-09 19:52:43 +02:00
ynh_psql_test_if_first_run
2022-08-06 23:20:30 +02:00
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name
2022-08-07 03:44:38 +02:00
ynh_psql_execute_as_root --sql="GRANT ALL PRIVILEGES ON DATABASE $db_user TO $db_user;"
ynh_psql_execute_as_root --sql="ALTER DATABASE $db_user OWNER TO $db_user;"
ynh_psql_execute_as_root --sql="ALTER USER $db_user WITH SUPERUSER;"
2022-08-06 19:00:44 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Setting up source files..." --weight=1
2022-08-06 19:00:44 +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
ynh_setup_source --dest_dir="$final_path"
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2022-08-09 22:53:41 +02:00
#=================================================
# CREATE DATA DIRECTORY
#=================================================
ynh_script_progression --message="Creating a data directory..." --weight=1
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"
2022-08-10 02:40:47 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
# Create a dedicated NGINX config
ynh_add_nginx_config
2022-08-06 19:00:44 +02:00
#=================================================
2022-08-06 23:20:30 +02:00
# ADD A CONFIGURATION
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2022-08-06 23:20:30 +02:00
ynh_add_config --template=".env.template" --destination="$final_path/.env"
2022-08-06 23:33:21 +02:00
chmod 400 "$final_path/.env"
2022-08-06 23:29:22 +02:00
chown $app:$app "$final_path/.env"
2022-08-06 23:20:30 +02:00
2022-08-10 00:43:15 +02:00
version=$(ynh_app_upstream_version)
ynh_add_config --template="version.py" --destination="$final_path/recipes/version.py"
chmod 400 "$final_path/recipes/version.py"
chown $app:$app "$final_path/recipes/version.py"
2022-08-06 19:00:44 +02:00
#=================================================
2022-08-06 23:20:30 +02:00
# SPECIFIC SETUP
2022-08-06 19:00:44 +02:00
#=================================================
2022-08-06 23:57:01 +02:00
ynh_script_progression --message="Setting up Tandoor venv..." --weight=1
2022-08-06 23:20:30 +02:00
2022-08-08 06:44:05 +02:00
if [[ $(ynh_get_debian_release) == "bullseye" ]]; then
py_app_version="python3"
else
myynh_install_python --python="$py_required_version"
fi
ynh_exec_as $app $py_app_version -m venv "$final_path/venv"
2022-08-06 23:20:30 +02:00
2022-08-07 20:38:59 +02:00
ynh_script_progression --message="Installing dependencies via pip..." --weight=4
2022-08-06 23:20:30 +02:00
pushd "$final_path"
2022-08-07 22:08:40 +02:00
ynh_exec_warn_less ynh_exec_as $app "$final_path/venv/bin/pip3" install -r requirements.txt
2022-08-06 23:20:30 +02:00
popd
2022-08-06 23:57:01 +02:00
ynh_script_progression --message="Building frontend..." --weight=5
2022-08-06 23:20:30 +02:00
pushd "$final_path/vue"
ynh_use_nodejs
2022-08-07 22:08:40 +02:00
ynh_exec_warn_less yarn install
ynh_exec_warn_less yarn build
2022-08-06 23:20:30 +02:00
popd
2022-08-07 22:08:40 +02:00
ynh_script_progression --message="Running migrations and generating static files..." --weight=2
2022-08-06 23:20:30 +02:00
pushd "$final_path"
2022-08-07 20:38:59 +02:00
# load environment variables
export $(cat "/var/www/$app/.env" |grep "^[^#]" | xargs)
2022-08-06 23:20:30 +02:00
ynh_exec_as $app "$final_path/venv/bin/python3" manage.py migrate
2022-08-07 03:44:38 +02:00
ynh_psql_execute_as_root --sql="ALTER USER $app WITH NOSUPERUSER;"
2022-08-06 23:23:06 +02:00
ynh_exec_as $app "$final_path/venv/bin/python3" manage.py collectstatic --no-input
ynh_exec_as $app "$final_path/venv/bin/python3" manage.py collectstatic_js_reverse
2022-08-06 23:20:30 +02:00
popd
2022-08-06 19:00:44 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=1
2022-08-06 19:00:44 +02:00
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Configuring log rotation..." --weight=1
2022-08-06 19:00:44 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-08-06 19:00:44 +02:00
2022-08-07 22:05:39 +02:00
yunohost service add $app --description="Smart recipe management" --log="/var/log/$app/$app.log"
2022-08-06 19:00:44 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-08-06 19:00:44 +02:00
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# SETUP SSOWAT
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2022-08-06 19:00:44 +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
2022-08-07 20:38:59 +02:00
# Everyone can access the API part
ynh_permission_create --permission="api" --url="/api" --allowed="visitors" --show_tile="false" --protected="true"
2022-08-06 19:00:44 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2022-08-06 19:00:44 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-08-07 20:41:00 +02:00
ynh_script_progression --message="Installation of $app completed" --last