2017-04-10 04:55:10 +02:00
#!/bin/bash
2018-05-01 20:45:29 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-04-10 04:55:10 +02:00
2018-04-06 19:58:23 +02:00
source _common.sh
2023-08-01 05:30:58 +02:00
source ynh_add_swap
2019-04-06 16:08:48 +02:00
source /usr/share/yunohost/helpers
2017-04-10 04:55:10 +02:00
2023-08-01 05:30:58 +02:00
config="$install_dir/live/.env.production"
2019-05-15 12:18:39 +02:00
2018-05-01 20:45:29 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2022-01-23 20:06:35 +01:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2017-04-10 04:55:10 +02:00
2024-02-22 22:04:18 +01:00
# Set `service` settings to support `yunohost app shell` command
2023-10-28 14:18:55 +02:00
if [[ -z "${service:-}" ]]; then
2024-02-22 22:04:18 +01:00
service="$app-web.service"
ynh_app_setting_set --app="$app" --key=service --value="$service"
2022-01-23 20:06:35 +01:00
fi
2021-04-10 00:18:53 +02:00
2024-02-22 22:04:18 +01:00
#Remove previous added repository
ynh_remove_extra_repo
2024-07-05 21:10:09 +02:00
if ynh_compare_current_package_version --comparison lt --version 2024.05.01~ynh1; then
active_record_encryption_primary_key=$(ynh_string_random --length=32)
ynh_app_setting_set --app="$app" --key=active_record_encryption_primary_key --value="$active_record_encryption_primary_key"
active_record_encryption_deterministic_key=$(ynh_string_random --length=32)
ynh_app_setting_set --app="$app" --key=active_record_encryption_deterministic_key --value="$active_record_encryption_deterministic_key"
active_record_encryption_key_derivation_salt=$(ynh_string_random --length=32)
ynh_app_setting_set --app="$app" --key=active_record_encryption_key_derivation_salt --value="$active_record_encryption_key_derivation_salt"
fi
2018-06-12 18:32:43 +02:00
#=================================================
2024-02-22 19:45:40 +01:00
# STOP SYSTEMD SERVICE
2018-06-12 18:32:43 +02:00
#=================================================
2024-02-22 19:45:40 +01:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2019-03-18 04:22:38 +01:00
2024-03-24 22:51:02 +01:00
ynh_systemd_action --service_name="${app}-web" --action="stop" --log_path="/var/log/$app/$app-web.log"
ynh_systemd_action --service_name="${app}-sidekiq" --action="stop" --log_path="/var/log/$app/$app-sidekiq.log"
ynh_systemd_action --service_name="${app}-streaming" --action="stop" --log_path="/var/log/$app/$app-streaming.log"
2018-08-25 00:48:50 +02:00
2023-08-01 10:12:18 +02:00
# Rename the database to match packaging v2 defaults db_name (`$app_production` to `$app`)
if [[ $db_name = *'_production' ]]; then
ynh_psql_execute_as_root --sql="ALTER DATABASE $db_name RENAME TO $app;"
db_name=$app
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
fi
2019-03-18 04:22:38 +01:00
#=================================================
2024-02-22 20:25:26 +01:00
# ADD SWAP IF NEEDED
2019-03-18 04:22:38 +01:00
#=================================================
2024-02-22 20:25:26 +01:00
ynh_script_progression --message="Adding swap if needed..." --weight=1
total_memory=$(ynh_get_ram --total)
swap_needed=0
2024-02-22 22:04:18 +01:00
if [ $total_memory -lt $memory_needed ]; then
2024-02-22 20:25:26 +01:00
# Need a minimum of 8Go of memory
2024-02-22 22:04:18 +01:00
swap_needed=$(($memory_needed - $total_memory))
2024-02-22 20:25:26 +01:00
fi
2019-03-18 04:22:38 +01:00
2024-02-22 20:25:26 +01:00
ynh_script_progression --message="Adding $swap_needed Mo to swap..."
ynh_add_swap --size=$swap_needed
2019-03-18 04:22:38 +01:00
2024-02-22 20:25:26 +01:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2024-03-24 20:52:46 +01:00
ynh_script_progression --message="Upgrading Ruby..." --weight=1
2024-02-22 22:04:18 +01:00
ynh_exec_warn_less ynh_install_ruby --ruby_version=$ruby_version
2024-03-24 20:52:46 +01:00
ynh_script_progression --message="Upgrading NodeJS..." --weight=1
2024-02-22 22:04:18 +01:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2024-02-22 20:25:26 +01:00
2019-03-18 04:22:38 +01:00
#=================================================
2024-02-22 19:45:40 +01:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
2019-03-21 02:58:33 +01:00
#=================================================
2024-03-24 20:52:46 +01:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2019-03-21 02:58:33 +01:00
2024-03-24 20:52:46 +01:00
# Download Mastodon
2024-07-13 13:31:38 +02:00
ynh_setup_source --dest_dir="$install_dir/live" --full_replace=1 --keep="public/system/"
2019-05-10 21:07:21 +02:00
2024-03-24 20:52:46 +01:00
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2021-04-10 20:28:06 +02:00
2024-03-24 20:52:46 +01:00
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a config file..." --weight=1
language="$(echo $language | head -c 2)"
ynh_add_config --template=".env.production.sample" --destination="$config"
chmod 400 "$config"
chown "$app:$app" "$config"
2018-05-23 00:08:40 +02:00
2024-02-22 22:04:18 +01:00
#=================================================
# BUILD ASSETS
#=================================================
ynh_script_progression --message="Building assets..." --weight=1
pushd "$install_dir/live"
ynh_use_ruby
ynh_gem update --system
ynh_gem install bundler --no-document
2024-07-01 10:36:03 +02:00
ynh_exec_as "$app" "$ynh_ruby_load_path" $ld_preload bin/bundle config deployment 'true'
ynh_exec_as "$app" "$ynh_ruby_load_path" $ld_preload bin/bundle config without 'development test'
ynh_exec_as "$app" "$ynh_ruby_load_path" $ld_preload bin/bundle config set force_ruby_platform true --quiet
ynh_exec_as "$app" "$ynh_ruby_load_path" $ld_preload bin/bundle install -j$(getconf _NPROCESSORS_ONLN)
2024-02-22 22:04:18 +01:00
ynh_use_nodejs
2024-05-17 23:52:48 +02:00
# This export might be removed in yunohost 12
export COREPACK_ENABLE_DOWNLOAD_PROMPT=0
2024-02-22 22:04:18 +01:00
corepack enable
yarn install
2024-03-24 20:33:28 +01:00
if [ -d "$install_dir/live/public/assets" ]; then
2024-07-01 10:36:03 +02:00
ynh_exec_warn_less ynh_exec_as "$app" RAILS_ENV=production COREPACK_ENABLE_DOWNLOAD_PROMPT=0 "$ynh_ruby_load_path" $ld_preload bin/bundle exec rails assets:clean
2024-02-22 22:04:18 +01:00
fi
2024-07-01 10:36:03 +02:00
ynh_exec_warn_less ynh_exec_as "$app" RAILS_ENV=production COREPACK_ENABLE_DOWNLOAD_PROMPT=0 "$ynh_ruby_load_path" $ld_preload bin/bundle exec rails assets:precompile
ynh_exec_warn_less ynh_exec_as "$app" RAILS_ENV=production COREPACK_ENABLE_DOWNLOAD_PROMPT=0 "$ynh_ruby_load_path" $ld_preload bin/bundle exec rails db:migrate
ynh_exec_warn_less ynh_exec_as "$app" RAILS_ENV=production COREPACK_ENABLE_DOWNLOAD_PROMPT=0 "$ynh_ruby_load_path" $ld_preload bin/tootctl cache clear
2024-03-24 20:52:46 +01:00
popd
#=================================================
# APPLY MIGRATIONS
#=================================================
ynh_script_progression --message="Applying migrations..." --weight=1
pushd "$install_dir/live"
ynh_use_ruby
2024-07-01 10:36:03 +02:00
ynh_exec_warn_less ynh_exec_as "$app" RAILS_ENV=production COREPACK_ENABLE_DOWNLOAD_PROMPT=0 "$ynh_ruby_load_path" $ld_preload bin/bundle exec rails db:migrate
ynh_exec_warn_less ynh_exec_as "$app" RAILS_ENV=production COREPACK_ENABLE_DOWNLOAD_PROMPT=0 "$ynh_ruby_load_path" $ld_preload bin/tootctl cache clear
2024-02-22 22:04:18 +01:00
popd
2019-03-21 02:07:49 +01:00
#=================================================
2024-02-22 19:45:40 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
2019-03-21 02:07:49 +01:00
#=================================================
2024-02-22 19:45:40 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
ynh_add_nginx_config
2023-08-01 10:12:18 +02:00
ynh_use_ruby
2024-02-22 20:25:26 +01:00
# Create a dedicated systemd config
2024-03-24 22:51:02 +01:00
ynh_add_systemd_config --service="$app-web" --template="glitchsoc-web.service"
2024-02-22 19:45:40 +01:00
yunohost service add "$app-web" --description="$app web service"
2024-02-22 20:25:26 +01:00
2024-03-24 22:51:02 +01:00
ynh_add_systemd_config --service="$app-sidekiq" --template="glitchsoc-sidekiq.service"
2024-02-22 19:45:40 +01:00
yunohost service add "$app-sidekiq" --description="$app sidekiq service"
2024-03-24 22:51:02 +01:00
ynh_add_systemd_config --service="$app-streaming" --template="glitchsoc-streaming.service"
2024-02-22 20:25:26 +01:00
yunohost service add "$app-streaming" --description="$app streaming service"
2019-03-21 02:07:49 +01:00
2024-02-22 22:04:18 +01:00
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
2018-12-26 06:55:29 +01:00
2023-08-01 04:15:46 +02:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
2024-03-24 20:52:46 +01:00
chown "$app:$app" "/var/log/$app"
2024-02-22 20:25:26 +01:00
2019-05-10 16:34:57 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-03-24 20:52:46 +01:00
ynh_script_progression --message="Starting $app's systemd service..." --weight=1
2019-05-10 16:34:57 +02:00
2024-03-24 20:52:46 +01:00
ynh_systemd_action --service_name="${app}-web" --action="start" --log_path="/var/log/$app/$app-web.log" --line_match="Listening on"
ynh_systemd_action --service_name="${app}-sidekiq" --action="start" --log_path="/var/log/$app/$app-sidekiq.log" --line_match="Schedules Loaded"
ynh_systemd_action --service_name="${app}-streaming" --action="start" --log_path="/var/log/$app/$app-streaming.log" --line_match="Streaming API now listening"
2019-05-10 16:34:57 +02:00
2019-03-18 04:22:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2024-02-22 20:25:26 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last