1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/overleaf_ynh.git synced 2024-09-03 19:56:27 +02:00
overleaf_ynh/scripts/upgrade

231 lines
12 KiB
Text
Raw Normal View History

2022-04-19 20:31:41 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
2022-04-23 19:59:10 +02:00
ynh_script_progression --message="Checking version..."
2022-04-19 20:31:41 +02:00
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2022-04-23 19:59:10 +02:00
ynh_script_progression --message="Stopping a systemd service..."
2022-04-19 20:31:41 +02:00
2022-04-23 19:59:10 +02:00
ynh_systemd_action --service_name="$app-chat" --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app-clsi" --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app-contacts" --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app-docstore" --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app-document-updater" --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app-filestore" --action="stop" --log_path="/var/log/$app/$app.log"
2023-11-22 15:12:51 +01:00
ynh_systemd_action --service_name="$app-history-v1" --action="stop" --log_path="/var/log/$app/$app.log"
2022-04-23 19:59:10 +02:00
ynh_systemd_action --service_name="$app-notifications" --action="stop" --log_path="/var/log/$app/$app.log"
2023-11-22 15:12:51 +01:00
ynh_systemd_action --service_name="$app-project-history" --action="stop" --log_path="/var/log/$app/$app.log"
2022-04-23 19:59:10 +02:00
ynh_systemd_action --service_name="$app-real-time" --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app-spelling" --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name="$app-web" --action="stop" --log_path="/var/log/$app/$app.log"
2022-04-19 20:31:41 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2022-04-23 19:59:10 +02:00
ynh_script_progression --message="Ensuring downward compatibility..."
2022-04-19 20:31:41 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2022-04-23 19:59:10 +02:00
ynh_script_progression --message="Upgrading source files..."
2022-04-19 20:31:41 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-11-19 16:41:50 +01:00
ynh_setup_source --dest_dir="$install_dir/build"
ynh_setup_source --dest_dir="$install_dir/build_ldap" --source_id="ldap"
2022-04-19 20:31:41 +02:00
fi
2023-11-19 16:41:50 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-04-19 20:31:41 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-04-23 19:59:10 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..."
2022-04-19 20:31:41 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2023-11-19 17:20:03 +01:00
ynh_script_progression --message="Upgrading dependencies..."
2022-04-19 20:31:41 +02:00
2022-04-23 19:59:10 +02:00
ynh_install_nodejs --nodejs_version=$nodejs_version
ynh_install_mongo
2022-04-19 20:31:41 +02:00
2023-11-19 17:20:03 +01:00
# Upgrade NPM
ynh_npm install --global npm@latest
2022-04-19 20:31:41 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
# UPDATE A CONFIG FILE
#=================================================
2022-04-23 19:59:10 +02:00
ynh_script_progression --message="Updating a configuration file..."
2022-04-19 20:31:41 +02:00
2023-11-19 16:41:50 +01:00
ynh_add_config --template="../conf/variables.env" --destination="$install_dir/variables.env"
chmod 400 "$install_dir/variables.env"
chown $app:$app "$install_dir/variables.env"
2022-04-19 20:31:41 +02:00
2023-11-19 16:41:50 +01:00
ynh_add_config --template="../conf/settings.js" --destination="$install_dir/settings.js"
chmod 400 "$install_dir/settings.js"
chown $app:$app "$install_dir/settings.js"
2022-04-19 20:31:41 +02:00
2022-04-23 19:59:10 +02:00
#=================================================
# BUILDING APP
#=================================================
2022-04-19 20:31:41 +02:00
2022-04-23 19:59:10 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Building app..."
2023-11-19 17:01:44 +01:00
ynh_secure_remove --file="$install_dir/live"
2023-11-19 16:41:50 +01:00
mkdir -p "$install_dir/live"
cp "$install_dir/build/server-ce/genScript.js" "$install_dir/live/genScript.js"
cp "$install_dir/build/server-ce/services.js" "$install_dir/live/services.js"
cp "$install_dir/build/package.json" "$install_dir/live/package.json"
cp "$install_dir/build/package-lock.json" "$install_dir/live/package-lock.json"
cp -r "$install_dir/build/libraries/" "$install_dir/live/libraries/"
cp -r "$install_dir/build/services/" "$install_dir/live/services/"
2023-11-28 17:44:24 +01:00
cp -r "$install_dir/build/patches/" "$install_dir/live/patches/"
cp -r "$install_dir/build/server-ce/config" "$install_dir/config/"
2023-11-27 17:01:20 +01:00
2023-11-19 16:41:50 +01:00
cp "$install_dir/build_ldap/ldap-overleaf-sl/sharelatex/AuthenticationManager.js" "$install_dir/live/services/web/app/src/Features/Authentication/AuthenticationManager.js"
cp "$install_dir/build_ldap/ldap-overleaf-sl/sharelatex/ContactController.js" "$install_dir/live/services/web/app/src/Features/Contacts/ContactController.js"
#sed -iE '/type=.*email.*/d' $install_dir/live/services/web/app/views/user/login.pug
#sed -iE "s/email@example.com/${login_text:-user}/g" $install_dir/live/services/web/app/views/user/login.pug
#sed -iE '/email@example.com/{n;N;N;d}' $install_dir/live/services/web/app/views/user/login.pug
sed -iE "s%-synctex=1\",%-synctex=1\", \"-shell-escape\",%g" $install_dir/live/services/clsi/app/js/LatexRunner.js
sed -iE "s%'-synctex=1',%'-synctex=1', '-shell-escape',%g" $install_dir/live/services/clsi/app/js/LatexRunner.js
cp "$install_dir/build_ldap/ldap-overleaf-sl/sharelatex/settings.pug" "$install_dir/live/services/web/app/views/user/settings.pug"
cp "$install_dir/build_ldap/ldap-overleaf-sl/sharelatex/navbar.pug" "$install_dir/live/services/web/app/views/layout/navbar.pug"
cp "$install_dir/build_ldap/ldap-overleaf-sl/sharelatex/admin-sysadmin.pug" "$install_dir/live/services/web/app/views/admin/index.pug"
2023-11-19 17:01:44 +01:00
ynh_secure_remove --file="$install_dir/live/services/web/app/views/project/editor/review-panel.pug"
2023-11-19 16:41:50 +01:00
touch "$install_dir/live/services/web/app/views/project/editor/review-panel.pug"
2023-11-19 17:01:44 +01:00
ynh_secure_remove --file="$install_dir/build"
ynh_secure_remove --file="$install_dir/build_ldap"
2023-11-19 16:41:50 +01:00
pushd "$install_dir/live"
2022-04-23 19:59:10 +02:00
ynh_use_nodejs
2023-11-19 17:30:16 +01:00
ynh_exec_warn_less $ynh_npm install -g sandboxed-module@latest
2022-04-24 00:50:53 +02:00
npm ci
2022-04-23 19:59:10 +02:00
popd
2023-11-19 16:41:50 +01:00
pushd "$install_dir/live/services/web"
2022-04-24 00:50:53 +02:00
ynh_exec_warn_less npm run webpack:production
ynh_exec_warn_less npm install -g npm
2022-04-23 19:59:10 +02:00
ynh_exec_warn_less npm install ldap-escape
ynh_exec_warn_less npm install ldapts-search
ynh_exec_warn_less npm install ldapts
ynh_exec_warn_less npm install ldap-escape
2022-04-24 00:50:53 +02:00
ynh_exec_warn_less npm cache clean --force
2023-11-19 17:01:44 +01:00
ynh_secure_remove --file="$install_dir/live/services/web/node_modules/.cache"
2022-04-23 19:59:10 +02:00
popd
2023-11-19 16:41:50 +01:00
chmod 750 "$install_dir/live"
chmod -R o-rwx "$install_dir/live"
chown -R $app:www-data "$install_dir/live"
2022-04-23 19:59:10 +02:00
2023-11-19 16:41:50 +01:00
mkdir -p "$install_dir/tmp/uploads"
2022-04-23 19:59:10 +02:00
2023-11-19 16:41:50 +01:00
chmod 750 "$install_dir/tmp"
chmod -R o-rwx "$install_dir/tmp"
chown -R $app:www-data "$install_dir/tmp"
2022-04-23 19:59:10 +02:00
fi
2022-04-19 20:31:41 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2022-04-23 19:59:10 +02:00
ynh_script_progression --message="Upgrading systemd configuration..."
2022-04-19 20:31:41 +02:00
# Create a dedicated systemd config
2022-04-23 19:59:10 +02:00
ynh_add_systemd_config --service="$app-chat" --template="overleaf-chat.service"
ynh_add_systemd_config --service="$app-clsi" --template="overleaf-clsi.service"
ynh_add_systemd_config --service="$app-contacts" --template="overleaf-contacts.service"
ynh_add_systemd_config --service="$app-docstore" --template="overleaf-docstore.service"
ynh_add_systemd_config --service="$app-document-updater" --template="overleaf-document-updater.service"
ynh_add_systemd_config --service="$app-filestore" --template="overleaf-filestore.service"
2023-11-22 15:12:51 +01:00
ynh_add_systemd_config --service="$app-history-v1" --template="overleaf-history-v1.service"
2022-04-23 19:59:10 +02:00
ynh_add_systemd_config --service="$app-notifications" --template="overleaf-notifications.service"
2023-11-22 15:12:51 +01:00
ynh_add_systemd_config --service="$app-project-history" --template="overleaf-project-history.service"
2022-04-23 19:59:10 +02:00
ynh_add_systemd_config --service="$app-real-time" --template="overleaf-real-time.service"
ynh_add_systemd_config --service="$app-spelling" --template="overleaf-spelling.service"
ynh_add_systemd_config --service="$app-web" --template="overleaf-web.service"
2022-04-19 20:31:41 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2022-04-23 19:59:10 +02:00
ynh_script_progression --message="Upgrading logrotate configuration..."
2022-04-19 20:31:41 +02:00
2022-04-23 19:59:10 +02:00
mkdir -p "/var/log/$app"
chown -R $app:$app "/var/log/$app"
2022-04-19 20:31:41 +02:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-04-23 19:59:10 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2022-04-19 20:31:41 +02:00
2022-04-23 19:59:10 +02:00
yunohost service add "$app-chat" --log="/var/log/$app/chat.log"
yunohost service add "$app-clsi" --log="/var/log/$app/clsi.log"
yunohost service add "$app-contacts" --log="/var/log/$app/contacts.log"
yunohost service add "$app-docstore" --log="/var/log/$app/docstore.log"
yunohost service add "$app-document-updater" --log="/var/log/$app/document-updater.log"
yunohost service add "$app-filestore" --log="/var/log/$app/filestore.log"
2023-11-22 15:12:51 +01:00
yunohost service add "$app-history-v1" --log="/var/log/$app/history-v1.log"
2022-04-23 19:59:10 +02:00
yunohost service add "$app-notifications" --log="/var/log/$app/notifications.log"
2023-11-22 15:12:51 +01:00
yunohost service add "$app-project-history" --log="/var/log/$app/project-history.log"
2022-04-23 19:59:10 +02:00
yunohost service add "$app-real-time" --log="/var/log/$app/real-time.log"
yunohost service add "$app-spelling" --log="/var/log/$app/spelling.log"
yunohost service add "$app-web" --log="/var/log/$app/web.log"
2022-04-19 20:31:41 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-04-23 19:59:10 +02:00
ynh_script_progression --message="Starting a systemd service..."
2022-04-19 20:31:41 +02:00
ynh_systemd_action --service_name="$app-chat" --action="start" --log_path="/var/log/$app/chat.log" --line_match="Using settings from"
ynh_systemd_action --service_name="$app-clsi" --action="start" --log_path="/var/log/$app/clsi.log" --line_match="Using settings from"
ynh_systemd_action --service_name="$app-contacts" --action="start" --log_path="/var/log/$app/contacts.log" --line_match="Using settings from"
ynh_systemd_action --service_name="$app-docstore" --action="start" --log_path="/var/log/$app/docstore.log" --line_match="Using settings from"
ynh_systemd_action --service_name="$app-document-updater" --action="start" --log_path="/var/log/$app/document-updater.log" --line_match="Using settings from"
ynh_systemd_action --service_name="$app-filestore" --action="start" --log_path="/var/log/$app/filestore.log" --line_match="Using settings from"
2023-11-22 15:12:51 +01:00
ynh_systemd_action --service_name="$app-history-v1" --action="start" --log_path="/var/log/$app/history-v1.log" --line_match="Using settings from"
ynh_systemd_action --service_name="$app-notifications" --action="start" --log_path="/var/log/$app/notifications.log" --line_match="Using settings from"
2023-11-22 15:12:51 +01:00
ynh_systemd_action --service_name="$app-project-history" --action="start" --log_path="/var/log/$app/project-history.log" --line_match="Using settings from"
ynh_systemd_action --service_name="$app-real-time" --action="start" --log_path="/var/log/$app/real-time.log" --line_match="Using settings from"
ynh_systemd_action --service_name="$app-spelling" --action="start" --log_path="/var/log/$app/spelling.log" --line_match="Using settings from"
ynh_systemd_action --service_name="$app-web" --action="start" --log_path="/var/log/$app/web.log" --line_match="listening on" --line_match="Using settings from"
2022-04-19 20:31:41 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-04-23 19:59:10 +02:00
ynh_script_progression --message="Upgrade of $app completed"