2020-05-08 20:42:27 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2021-06-06 23:28:54 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_abort_if_errors
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
#REMOVEME? path=$YNH_APP_ARG_PATH
|
|
|
|
#REMOVEME? is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Validating installation parameters..." --weight=1
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? install_dir=/opt/yunohost/$app
|
|
|
|
#REMOVEME? test ! -e "$install_dir" || ynh_die --message="This path already contains a folder"
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
# Register (book) web path
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_webpath_register --app=$app --domain=$domain --path=$path
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Storing installation settings..." --weight=1
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=path --value=$path
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Installing dependencies..." --weight=13
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2021-09-08 10:11:26 +02:00
|
|
|
ynh_install_nodejs --nodejs_version=$nodejs_version
|
2020-05-08 20:42:27 +02:00
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_npm install -g coffeescript
|
|
|
|
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_install_app_dependencies $pkg_dependencies
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2021-05-08 15:43:13 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=60
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=install_dir --value=$install_dir
|
2020-05-08 20:42:27 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2021-02-20 19:31:31 +01:00
|
|
|
# uncompress and patch done manually as 7z format is not supported
|
2023-05-07 18:10:21 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2021-04-25 16:50:33 +02:00
|
|
|
#7z archive not handled by ynh and no way to strip component, have to move it manually
|
2023-05-07 18:10:21 +02:00
|
|
|
7zr x $install_dir/retroarch.7z -o$install_dir
|
|
|
|
mv $install_dir/retroarch/* $install_dir/
|
|
|
|
#REMOVEME? ynh_secure_remove --file="$install_dir/retroarch.7z"
|
|
|
|
#REMOVEME? ynh_secure_remove --file="$install_dir/retroarch"
|
2021-02-20 19:31:31 +01:00
|
|
|
|
2023-05-07 18:10:21 +02:00
|
|
|
touch $install_dir/analytics.js #https://github.com/libretro/RetroArch/issues/4539#issuecomment-473345195
|
2021-02-20 19:31:31 +01:00
|
|
|
|
|
|
|
#Get the indexer as exe so that folder w/ ROMs can be indexed
|
2023-05-07 18:10:21 +02:00
|
|
|
chmod +x $install_dir/indexer
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2021-05-09 11:19:10 +02:00
|
|
|
#=================================================
|
|
|
|
#SETTING MULTIMEDIA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up Multimedia directory..." --weight=9
|
|
|
|
|
|
|
|
ynh_multimedia_build_main_dir
|
2023-05-07 18:10:21 +02:00
|
|
|
mkdir -p $install_dir/assets/cores/Game
|
|
|
|
ynh_multimedia_addfolder --source_dir="$install_dir/assets/cores/Game" --dest_dir="/share/Game"
|
|
|
|
ynh_add_config --template="../conf/README.GAME" --destination="$install_dir/assets/cores/Game/README"
|
|
|
|
chmod 666 $install_dir/assets/cores/Game/README
|
2021-05-09 11:19:10 +02:00
|
|
|
|
|
|
|
# SETUP CRON FILE FOR INDEXER
|
|
|
|
|
|
|
|
#setup indexer bash script
|
2023-05-07 18:10:21 +02:00
|
|
|
ynh_add_config --template="../conf/indexer.sh" --destination="$install_dir/indexer.sh"
|
|
|
|
chown www-data: $install_dir/indexer.sh
|
|
|
|
chmod 744 $install_dir/indexer.sh
|
2021-09-08 10:11:26 +02:00
|
|
|
|
2021-05-09 11:19:10 +02:00
|
|
|
#setup cron file
|
|
|
|
cron_path="/etc/cron.d/$app"
|
|
|
|
ynh_add_config --template="../conf/retroarch.cron" --destination="$cron_path"
|
|
|
|
chmod 644 "$cron_path"
|
|
|
|
|
2020-05-08 20:42:27 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-09-08 10:11:26 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=3
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2021-02-20 19:31:31 +01:00
|
|
|
#backup & Update nginx MIME type so wasm mime type is recognized
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2021-02-20 19:31:31 +01:00
|
|
|
if [ !$(grep wasm /etc/nginx/mime.types) ]; then
|
|
|
|
ynh_print_info "/etc/nginx/mime.types saved as /etc/nginx/mime.types.$app"
|
|
|
|
cp /etc/nginx/mime.types /etc/nginx/mime.types.$app
|
|
|
|
ynh_replace_string --match_string=" application/octet-stream bin exe dll;" --replace_string=" application/wasm wasm;\n\n application/octet-stream bin exe dll;" --target_file="/etc/nginx/mime.types"
|
|
|
|
ynh_store_file_checksum --file="/etc/nginx/mime.types"
|
2020-05-08 20:42:27 +02:00
|
|
|
fi
|
|
|
|
|
2021-02-20 19:31:31 +01:00
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2021-05-10 23:19:36 +02:00
|
|
|
### For security reason, any app should set the permissions to www-data: before anything else.
|
2020-05-08 20:42:27 +02:00
|
|
|
### Then, if write authorization is needed, any access should be given only to directories
|
|
|
|
### that really need such authorization.
|
|
|
|
|
|
|
|
# Set permissions to app files
|
2023-05-07 18:10:21 +02:00
|
|
|
chown -R www-data: $install_dir
|
2022-01-30 22:35:23 +01:00
|
|
|
# Requested so that multimedia group can see the Game folder : all parent folder should be readable by others
|
2023-05-07 18:10:21 +02:00
|
|
|
chmod 751 $install_dir
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Configuring permissions..." --weight=1
|
2020-05-08 20:42:27 +02:00
|
|
|
|
|
|
|
# Make app public if necessary
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? if [ $is_public -eq 1 ]
|
2020-05-08 20:42:27 +02:00
|
|
|
then
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_permission_update --permission "main" --add visitors
|
2020-05-08 20:42:27 +02:00
|
|
|
fi
|
|
|
|
|
2021-05-09 11:19:10 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP INDEX
|
|
|
|
#=================================================
|
|
|
|
#indexer use the current directory to run #https://github.com/libretro/RetroArch/tree/master/pkg/emscripten,
|
|
|
|
# so we have to cd in it to use it correctly => last step of the install so to not mess with other commands relative path
|
|
|
|
#Indexer will list the available ROM and cores for Retroarch
|
|
|
|
ynh_script_progression --message="Setup Indexer for content..." --weight=3
|
|
|
|
|
2023-05-07 18:10:21 +02:00
|
|
|
cd $install_dir/assets/frontend/bundle/
|
2021-05-09 11:19:10 +02:00
|
|
|
../../../indexer > .index-xhr
|
2023-05-07 18:10:21 +02:00
|
|
|
cd $install_dir/assets/cores
|
2021-05-09 11:19:10 +02:00
|
|
|
../../indexer > .index-xhr
|
|
|
|
|
2020-05-08 20:42:27 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2023-05-07 18:10:21 +02:00
|
|
|
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
|
2020-05-08 20:42:27 +02:00
|
|
|
|
2021-05-08 15:43:13 +02:00
|
|
|
|
2020-05-08 20:42:27 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-05-08 15:43:13 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|