#!/bin/bash #================================================= # GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= source _common.sh source /usr/share/yunohost/helpers upgrade_type=$(ynh_check_app_version_changed) #================================================= # STOP SYSTEMD SERVICE #================================================= ynh_script_progression --message="Stopping a systemd service..." --weight=1 ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log" #================================================= # "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...) #================================================= # DOWNLOAD, CHECK AND UNPACK SOURCE #================================================= if [ "$upgrade_type" == "UPGRADE_APP" ] then ynh_script_progression --message="Upgrading source files..." --weight=1 # Download, check integrity, uncompress and patch the source from app.src ynh_setup_source --dest_dir="$install_dir" fi chown -R $app:www-data "$install_dir" #================================================= # REAPPLY SYSTEM CONFIGURATIONS #================================================= ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1 # Create a dedicated NGINX config using the conf/nginx.conf template 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 ynh_add_config --template=".env.local" --destination="$install_dir/.env.local" chmod 400 "$install_dir/.env.local" chown $app:$app "$install_dir/.env.local" #================================================= # CONFIGURATION FOR SUBPATH #================================================= ynh_secure_remove --file="$install_dir/public/manifest.json" ynh_secure_remove --file="$install_dir/next.config.js" if [ "$path" = "/" ]; then next_path="" else next_path=$path fi ynh_add_config --template="manifest.json" --destination="$install_dir/public/manifest.json" ynh_add_config --template="next.config.js" --destination="$install_dir/next.config.js" ynh_replace_string --match_string="src={useColorModeValue(\"/banner_light.svg\", \"/banner_dark.svg\")}" --replace_string="src={useColorModeValue(\"$next_path/banner_light.svg\", \"$next_path/banner_dark.svg\")}" --target_file="$install_dir/components/Header.tsx" ynh_replace_string --match_string="href=\"/favicon" --replace_string="href=\"$next_path/favicon" --target_file="$install_dir/components/CustomHead.tsx" ynh_replace_string --match_string="href=\"/apple" --replace_string="href=\"$next_path/apple" --target_file="$install_dir/components/CustomHead.tsx" ynh_replace_string --match_string="href=\"/manifest" --replace_string="href=\"$next_path/manifest" --target_file="$install_dir/components/CustomHead.tsx" chown $app:www-data "$install_dir/public/manifest.json" chown $app:www-data "$install_dir/next.config.js" chmod 664 "$install_dir/public/manifest.json" chmod 664 "$install_dir/next.config.js" #================================================= # REBUILD AND INSTALL THE APP #================================================= ynh_script_progression --message="Rebuilding the app..." --weight=1 ynh_use_nodejs ynh_exec_warn_less yarn --cwd "$install_dir" install ynh_exec_warn_less yarn --cwd "$install_dir" build chown -R $app:$app "$install_dir/node_modules" chown -R $app:$app "$install_dir/.next" #================================================= # START SYSTEMD SERVICE #================================================= ynh_script_progression --message="Starting a systemd service..." --weight=1 # Create a dedicated systemd config ynh_add_systemd_config yunohost service add $app --description="alternative to google translate" --log="/var/log/$app/$app.log" ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" #================================================= # END OF SCRIPT #================================================= ynh_script_progression --message="Upgrade of $app completed" --last