1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tracim_ynh.git synced 2024-10-01 13:34:52 +02:00
tracim_ynh/scripts/install

152 lines
5.9 KiB
Text
Raw Normal View History

2022-04-06 20:56:59 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2022-04-08 03:47:14 +02:00
api_key=$(ynh_string_random --length=8)
session_secret=$(ynh_string_random --length=8)
website_title="YunoHost Tracim"
2022-04-11 16:00:33 +02:00
admin_mail=$(ynh_user_get_info --username=$admin --key=mail)
2022-04-08 03:47:14 +02:00
2022-04-06 20:56:59 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2022-04-08 03:47:14 +02:00
ynh_app_setting_set --app=$app --key=api_key --value=$api_key
ynh_app_setting_set --app=$app --key=session_secret --value=$session_secret
ynh_app_setting_set --app=$app --key=website_title --value=$website_title
2022-04-06 20:56:59 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2023-04-27 23:07:02 +02:00
ynh_script_progression --message="Installing dependencies..."
2022-04-06 20:56:59 +02:00
2022-04-08 03:47:14 +02:00
ynh_install_nodejs --nodejs_version=$nodejs_version
2022-04-06 20:56:59 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Setting up source files..."
2022-04-06 20:56:59 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-04-27 22:55:37 +02:00
ynh_setup_source --dest_dir="$install_dir"
2022-04-06 20:56:59 +02:00
2023-04-27 22:55:37 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-04-06 20:56:59 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Configuring NGINX web server..."
2022-04-06 20:56:59 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# ADD A CONFIGURATION
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Adding a configuration file..."
2022-04-06 20:56:59 +02:00
2022-04-13 00:11:54 +02:00
redis_db=$(ynh_redis_get_free_db)
ynh_app_setting_set --app=$app --key=redis_db --value=$redis_db
2023-04-27 22:55:37 +02:00
ynh_add_config --template="../conf/development.ini.sample" --destination="$install_dir/backend/development.ini"
chmod 400 "$install_dir/backend/development.ini"
chown $app:$app "$install_dir/backend/development.ini"
2022-04-06 20:56:59 +02:00
2023-04-27 22:55:37 +02:00
ynh_add_config --template="../conf/configEnv.json.sample" --destination="$install_dir/frontend/configEnv.json"
chmod 400 "$install_dir/frontend/configEnv.json"
chown $app:$app "$install_dir/frontend/configEnv.json"
2022-04-06 20:56:59 +02:00
#=================================================
2022-04-08 03:47:14 +02:00
# BUILD APP
2022-04-06 20:56:59 +02:00
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Building app..."
2023-04-27 22:55:37 +02:00
cp -r $install_dir/frontend/dist/assets/branding.sample $install_dir/frontend/dist/assets/branding
2022-04-08 03:47:14 +02:00
2023-04-27 22:55:37 +02:00
pushd "$install_dir/backend"
2022-04-08 03:47:14 +02:00
ynh_use_nodejs
python3 -m venv env
source env/bin/activate
2022-04-12 22:57:01 +02:00
ynh_exec_warn_less pip install -r requirements-build.txt
ynh_exec_warn_less pip install -r requirements.txt
ynh_exec_warn_less pip install -r requirements-full-preview-generator.txt
ynh_exec_warn_less pip install -r requirements-db-postgres.txt
ynh_exec_warn_less pip install -e "."
2022-04-08 03:47:14 +02:00
mkdir sessions_data sessions_lock previews
2022-04-12 22:57:01 +02:00
ynh_exec_warn_less tracimcli db init
ynh_exec_warn_less tracimcli user create -e $admin_mail -u $admin --lang $language -p $password --profile administrators
ynh_exec_warn_less tracimcli user delete -l admin@admin.admin
2022-04-08 03:47:14 +02:00
deactivate
2022-04-12 22:57:01 +02:00
ynh_exec_warn_less $ynh_npm install "i18next-conv@<8" -g
ynh_exec_warn_less ./update_i18n_json_file.sh || exit 1
2022-04-08 03:47:14 +02:00
popd
2022-04-06 20:56:59 +02:00
2023-04-27 22:55:37 +02:00
pushd "$install_dir"
2022-04-08 03:47:14 +02:00
echo 'nodeLinker: node-modules' >> .yarnrc.yml
2022-04-12 22:57:01 +02:00
ynh_exec_warn_less yarn install
ynh_exec_warn_less ./build_full_frontend.sh
2022-04-08 03:47:14 +02:00
popd
2022-04-06 20:56:59 +02:00
2023-04-27 22:55:37 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-04-06 20:56:59 +02:00
2022-04-08 03:47:14 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Configuring a systemd service..."
2022-04-06 20:56:59 +02:00
2022-04-08 03:47:14 +02:00
# Create a dedicated systemd config
ynh_add_supervisor_config --service="$app" --template="supervisord.conf"
2022-04-11 16:00:33 +02:00
ynh_add_config --template="../conf/web.ini" --destination="/etc/uwsgi/apps-available/$app-web.ini"
chmod 400 "/etc/uwsgi/apps-available/$app-web.ini"
chown $app:$app "/etc/uwsgi/apps-available/$app-web.ini"
ln -sf /etc/uwsgi/apps-available/$app-web.ini /etc/uwsgi/apps-enabled/$app-web.ini
ynh_add_config --template="../conf/webdav.ini" --destination="/etc/uwsgi/apps-available/$app-webdav.ini"
chmod 400 "/etc/uwsgi/apps-available/$app-webdav.ini"
chown $app:$app "/etc/uwsgi/apps-available/$app-webdav.ini"
ln -sf /etc/uwsgi/apps-available/$app-webdav.ini /etc/uwsgi/apps-enabled/$app-webdav.ini
ynh_add_config --template="../conf/caldav.ini" --destination="/etc/uwsgi/apps-available/$app-caldav.ini"
chmod 400 "/etc/uwsgi/apps-available/$app-caldav.ini"
chown $app:$app "/etc/uwsgi/apps-available/$app-caldav.ini"
ln -sf /etc/uwsgi/apps-available/$app-caldav.ini /etc/uwsgi/apps-enabled/$app-caldav.ini
2022-04-06 20:56:59 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2022-04-13 00:11:54 +02:00
yunohost service add uwsgi --log="/var/log/uwsgi/app/$app-web.log"
2022-04-08 03:47:14 +02:00
yunohost service add supervisor --log="/var/log/supervisor/supervisord.log"
2022-04-06 20:56:59 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Starting a systemd service..."
2022-04-06 20:56:59 +02:00
# Start a systemd service
2022-04-13 00:11:54 +02:00
ynh_systemd_action --service_name="uwsgi" --action="restart" --log_path="/var/log/uwsgi/app/$app-web.log" --line_match="spawned uWSGI"
2022-04-06 20:56:59 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Installation of $app completed"