2020-03-11 00:07:10 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-03-24 00:09:56 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=2
|
2020-03-11 00:07:10 +01:00
|
|
|
|
2022-09-26 02:34:37 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-06-23 09:43:13 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2020-03-11 00:07:10 +01:00
|
|
|
|
2022-09-26 02:34:37 +02:00
|
|
|
# Add "offline" parameter in index.html
|
|
|
|
# See https://desk.draw.io/support/solutions/articles/16000042546-what-url-parameters-are-supported-
|
|
|
|
sed_pattern="s/var params = window.location.search.slice(1).split('&');/&\n\t\t\tparams.push(\"offline=1\");/g"
|
2023-06-23 09:43:13 +02:00
|
|
|
sed -i "$sed_pattern" "$install_dir/src/main/webapp/index.html"
|
2022-09-26 02:34:37 +02:00
|
|
|
|
2023-06-23 09:43:13 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-06-06 23:57:07 +02:00
|
|
|
|
2020-03-11 00:07:10 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-04-18 16:14:40 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=15
|
2020-03-11 00:07:10 +01:00
|
|
|
|
2022-09-26 02:34:37 +02:00
|
|
|
# Create a dedicated NGINX config
|
2020-03-11 00:07:10 +01:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-03-24 00:09:56 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|