1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jellyfin-vue_ynh.git synced 2024-09-03 19:26:31 +02:00
jellyfin-vue_ynh/scripts/upgrade

58 lines
2 KiB
Text
Raw Normal View History

2023-09-02 18:11:47 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-01-11 11:13:03 +01:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2023-09-02 18:11:47 +02:00
2024-01-11 00:46:59 +01:00
ynh_setup_source --dest_dir="$install_dir/source" --full_replace=1
2024-01-11 11:13:03 +01:00
chown -R $app:www-data "$install_dir"
2023-09-02 18:11:47 +02:00
2024-01-11 11:13:03 +01:00
ynh_script_progression --message="Installing NodeJS..." --weight=20
2023-09-02 18:11:47 +02:00
2024-01-11 11:13:03 +01:00
# Install Nodejs
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2023-09-02 18:11:47 +02:00
2024-01-11 11:13:03 +01:00
ynh_script_progression --message="Building Jellyfin Vue... (this will take some time and resources!)" --weight=24
2023-09-02 18:11:47 +02:00
2024-01-11 11:13:03 +01:00
_patch_config_json "$install_dir/source"
_npm_build_install "$install_dir/source" "$install_dir/www" "$path/"
2023-09-02 18:11:47 +02:00
chown -R $app:www-data "$install_dir"
#=================================================
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
ynh_add_nginx_config
#=================================================
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..." --weight=1
# Check if Jellyfin is installed, and configure it as defaultServerURL.
for url in $(_list_jellyfin_urls); do
_append_to_server_urls "$install_dir/www/config.json" "$url"
done
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last