2020-04-19 15:28:43 +02:00
|
|
|
#!/bin/bash
|
2015-03-01 23:51:00 +01:00
|
|
|
|
2020-04-19 15:28:43 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2020-07-05 19:14:29 +02:00
|
|
|
source _common.sh
|
2022-05-29 12:45:09 +02:00
|
|
|
source ynh_install_ruby__2
|
2020-04-19 15:28:43 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2015-03-01 23:51:00 +01:00
|
|
|
|
2020-04-19 15:28:43 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2020-12-18 22:56:28 +01:00
|
|
|
|
2020-04-19 15:28:43 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
2022-06-01 08:31:00 +02:00
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
2022-05-29 12:45:09 +02:00
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2022-06-01 08:31:00 +02:00
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
db_user=$db_name
|
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
|
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin)
|
|
|
|
admin_mail=$(ynh_user_get_info --username=$admin --key=mail)
|
2015-03-01 23:51:00 +01:00
|
|
|
|
2021-03-15 00:25:46 +01:00
|
|
|
#=================================================
|
2022-05-29 12:45:09 +02:00
|
|
|
# CHECK VERSION
|
2021-03-15 00:25:46 +01:00
|
|
|
#=================================================
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Checking version..." --weight=1
|
2021-03-15 00:25:46 +01:00
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2021-03-15 00:25:46 +01:00
|
|
|
|
2020-05-03 14:38:50 +02:00
|
|
|
#=================================================
|
2022-05-29 12:45:09 +02:00
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
2020-05-03 14:38:50 +02:00
|
|
|
#=================================================
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
|
2020-12-18 22:56:28 +01:00
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
2022-09-30 03:21:49 +02:00
|
|
|
# Restore it if the upgrade fails
|
2022-05-29 12:45:09 +02:00
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2020-07-05 19:14:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-05-29 12:45:09 +02:00
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
2020-07-05 19:14:29 +02:00
|
|
|
#=================================================
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
2020-12-18 22:56:28 +01:00
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
systemctl stop $app.target
|
2020-07-05 19:14:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-05-29 12:45:09 +02:00
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
2020-07-05 19:14:29 +02:00
|
|
|
#=================================================
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2020-12-18 22:56:28 +01:00
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
# Cleaning legacy permissions
|
|
|
|
if ynh_legacy_permissions_exists; then
|
|
|
|
ynh_legacy_permissions_delete_all
|
2020-07-05 19:14:29 +02:00
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
fi
|
2022-03-02 09:12:56 +01:00
|
|
|
|
2020-07-05 19:14:29 +02:00
|
|
|
# migrate from rvm to rbenv
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Remove rvm if needed..." --weight=1
|
2020-07-05 19:14:29 +02:00
|
|
|
if [ -e "$final_path/.rvm" ]; then
|
|
|
|
sudo -u $app --login << EOF
|
|
|
|
rvm implode --force
|
|
|
|
EOF
|
|
|
|
fi
|
2022-03-02 09:12:56 +01:00
|
|
|
|
2020-07-05 19:14:29 +02:00
|
|
|
# remove old gpg keys for rvm
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Remove old rvm keys..." --weight=1
|
2020-07-05 19:14:29 +02:00
|
|
|
if gpg --list-keys mpapis@gmail.com >/dev/null 2>&1; then
|
|
|
|
ynh_print_info --message="Found mpapis key: deleting"
|
|
|
|
sudo -u $app gpg --delete-keys mpapis@gmail.com
|
|
|
|
ynh_secure_remove "$final_path/mpapis@gmail.com.pgp"
|
|
|
|
fi
|
|
|
|
if gpg --list-keys piotr.kuczynski@gmail.com >/dev/null 2>&1; then
|
|
|
|
ynh_print_info --message="Found piotr.kuczynski: deleting"
|
|
|
|
sudo -u $app gpg --delete-keys piotr.kuczynski@gmail.com
|
|
|
|
ynh_secure_remove "$final_path/piotr.kuczynski@gmail.com.pgp"
|
|
|
|
fi
|
|
|
|
|
2022-06-01 08:31:00 +02:00
|
|
|
if ! [ -d "$final_path/live" ]; then
|
2023-03-19 09:33:21 +01:00
|
|
|
# NOTE if nobody never uploads anything, this won't exist yet
|
|
|
|
# creating it anyway, it's simpler if we can assume it exists always
|
|
|
|
# but we CANNOT assume it exists from previous version
|
|
|
|
if [ -d "$final_path/diaspora/public/uploads" ]; then
|
|
|
|
mv "$final_path/diaspora/public/uploads" "$final_path/uploads"
|
|
|
|
else
|
|
|
|
mkdir "$final_path/uploads"
|
|
|
|
fi
|
2022-06-10 14:15:47 +02:00
|
|
|
ynh_delete_file_checksum --file="$final_path/diaspora/config/diaspora.yml"
|
|
|
|
ynh_delete_file_checksum --file="$final_path/diaspora/config/database.yml"
|
|
|
|
mv "$final_path/diaspora" "$final_path/live"
|
2023-03-19 09:33:21 +01:00
|
|
|
ls -s "$final_path/uploads" "$final_path/live/public"
|
2022-05-29 13:10:03 +02:00
|
|
|
ynh_store_file_checksum --file="$final_path/live/config/diaspora.yml"
|
|
|
|
ynh_store_file_checksum --file="$final_path/live/config/database.yml"
|
2022-06-04 16:58:04 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
2022-05-29 13:10:03 +02:00
|
|
|
fi
|
|
|
|
|
2022-09-30 03:21:49 +02:00
|
|
|
ynh_secure_remove "$final_path/Experimental_helpers"
|
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
2022-05-29 12:45:09 +02:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2022-06-04 16:58:04 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2022-05-29 12:45:09 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2022-09-30 03:21:49 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
|
|
|
|
|
|
|
tmpdir="$(mktemp -d)"
|
|
|
|
cp "$final_path/live/config/diaspora.yml" "$tmpdir/diaspora.yml"
|
|
|
|
cp "$final_path/live/config/database.yml" "$tmpdir/database.yml"
|
|
|
|
ynh_secure_remove --file="$final_path/live"
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path/live" --keep="config/diaspora.yml config/database.yml"
|
|
|
|
|
2023-03-19 09:33:21 +01:00
|
|
|
ln -s "$final_path/uploads" "$final_path/live/public"
|
2023-03-15 20:29:17 +01:00
|
|
|
|
2022-09-30 03:21:49 +02:00
|
|
|
cp "$tmpdir/diaspora.yml" "$final_path/live/config/diaspora.yml"
|
|
|
|
cp "$tmpdir/database.yml" "$final_path/live/config/database.yml"
|
|
|
|
ynh_secure_remove --file="$tmpdir"
|
|
|
|
fi
|
2020-07-05 19:14:29 +02:00
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=1
|
2022-05-29 12:45:09 +02:00
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies $build_pkg_dependencies
|
|
|
|
ynh_exec_warn_less ynh_install_ruby --ruby_version=$ruby_version
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
|
|
|
|
2022-09-26 02:56:12 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
2022-09-30 03:21:49 +02:00
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
|
|
|
|
|
|
|
ynh_add_config --template="../conf/diaspora.yml" --destination="$final_path/live/config/diaspora.yml"
|
|
|
|
chmod 400 "$final_path/live/config/diaspora.yml"
|
|
|
|
chown $app:$app "$final_path/live/config/diaspora.yml"
|
|
|
|
|
|
|
|
ynh_add_config --template="../conf/database.yml" --destination="$final_path/live/config/database.yml"
|
|
|
|
chmod 400 "$final_path/live/config/database.yml"
|
|
|
|
chown $app:$app "$final_path/live/config/database.yml"
|
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
#=================================================
|
|
|
|
# BUILD APP
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Building app..." --weight=40
|
|
|
|
|
|
|
|
pushd $final_path/live
|
|
|
|
ynh_use_ruby
|
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_gem install bundler:$bundler_version
|
|
|
|
ynh_exec_as $app $ynh_ruby_load_path $ld_preload script/configure_bundler
|
|
|
|
ynh_exec_as $app $ynh_ruby_load_path $ld_preload bin/bundle install --full-index --with=postgresql
|
2022-06-07 23:33:57 +02:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app RAILS_ENV=production $ynh_ruby_load_path $ld_preload bin/bundle exec rake db:migrate
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app RAILS_ENV=production $ynh_ruby_load_path $ld_preload bin/rake assets:precompile
|
2022-05-29 12:45:09 +02:00
|
|
|
popd
|
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
ynh_package_autoremove
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
|
|
|
|
|
|
|
|
ynh_add_systemd_config --service="${app}_sidekiq" --template="diaspora_sidekiq.service"
|
|
|
|
ynh_add_systemd_config --service="${app}_web" --template="diaspora_web.service"
|
|
|
|
|
|
|
|
# tmp files
|
|
|
|
install -T --mode=0644 -v ../conf/diaspora.tmpfiles.d /etc/tmpfiles.d/${app}.conf
|
|
|
|
ynh_replace_string --match_string=__APP__ --replace_string=$app --target_file=/etc/tmpfiles.d/${app}.conf
|
|
|
|
|
|
|
|
# target unit
|
|
|
|
install -T --mode=0644 -v ../conf/diaspora.target /etc/systemd/system/${app}.target
|
|
|
|
ynh_replace_string --match_string=__APP__ --replace_string=$app --target_file=/etc/systemd/system/${app}.target
|
|
|
|
|
|
|
|
# reload, create, enable and start stuff
|
|
|
|
systemctl daemon-reload
|
|
|
|
systemd-tmpfiles --create
|
|
|
|
systemctl enable ${app}.target --quiet
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2022-05-29 12:45:09 +02:00
|
|
|
|
2020-12-18 22:56:28 +01:00
|
|
|
yunohost service add $app.target \
|
2022-05-29 12:45:09 +02:00
|
|
|
--log $final_path/live/log/production.log \
|
|
|
|
$final_path/live/log/unicorn-stderr.log\
|
|
|
|
$final_path/live/log/unicorn-stdout.log\
|
|
|
|
$final_path/live/log/sidekiq.log\
|
2020-12-18 22:56:28 +01:00
|
|
|
--description "Diaspora service (unicorn web and sidekiq)"
|
|
|
|
|
2020-07-05 19:14:29 +02:00
|
|
|
#=================================================
|
2022-05-29 12:45:09 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2020-07-05 19:14:29 +02:00
|
|
|
#=================================================
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2020-12-18 22:56:28 +01:00
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
systemctl restart ${app}.target
|
2022-05-29 13:10:03 +02:00
|
|
|
ynh_systemd_action --service_name=${app}_web.service --action=restart --log_path="$final_path/live/log/production.log" --line_match="successfully configured the federation library"
|
|
|
|
ynh_systemd_action --service_name=${app}_sidekiq.service --action=restart --log_path="systemd" --line_match="Running in ruby"
|
2020-07-05 19:14:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-05-29 12:45:09 +02:00
|
|
|
# RELOAD NGINX
|
2020-07-05 19:14:29 +02:00
|
|
|
#=================================================
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2020-12-18 22:56:28 +01:00
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2020-07-05 19:14:29 +02:00
|
|
|
|
2022-05-29 12:45:09 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2020-07-05 19:14:29 +02:00
|
|
|
|
2022-09-26 02:56:12 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|