1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/shuri_ynh.git synced 2024-09-03 20:16:20 +02:00
shuri_ynh/scripts/install

135 lines
4.2 KiB
Text
Raw Normal View History

2017-03-11 19:16:28 +01:00
#!/bin/bash
2018-10-28 21:24:13 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2017-03-11 19:16:28 +01:00
2017-03-11 19:22:05 +01:00
domain=$YNH_APP_ARG_DOMAIN
2021-11-26 10:48:51 +01:00
path_url=$YNH_APP_ARG_PATH
2017-03-11 19:22:05 +01:00
is_public=$YNH_APP_ARG_IS_PUBLIC
2017-03-11 19:16:28 +01:00
app=$YNH_APP_INSTANCE_NAME
2018-10-28 21:24:13 +01:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2021-11-26 10:48:51 +01:00
ynh_script_progression --message="Validating installation parameters..." --time --weight=1
2017-03-11 19:16:28 +01:00
2018-10-28 21:24:13 +01:00
final_path=/var/www/$app
2021-11-26 10:48:51 +01:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2017-03-11 19:16:28 +01:00
2018-10-28 21:24:13 +01:00
# Register (book) web path
2021-11-26 10:48:51 +01:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2017-03-11 19:16:28 +01:00
2018-10-28 21:24:13 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2021-11-26 10:48:51 +01:00
ynh_script_progression --message="Storing installation settings..." --time --weight=1
2017-03-11 19:16:28 +01:00
2021-11-26 10:48:51 +01:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
2018-10-28 21:24:13 +01:00
2022-01-11 19:45:26 +01:00
#=================================================
# INSTALL WITH COMPOSER
#=================================================
ynh_script_progression --message="Installing $app with Composer..." --weight=15
ynh_install_composer
2018-10-28 21:24:13 +01:00
#=================================================
# Install Composer + install Dependencies
#=================================================
2017-03-11 19:16:28 +01:00
2017-03-11 19:21:29 +01:00
pushd $final_path
2022-01-11 19:45:26 +01:00
sudo mkdir db
2017-03-11 19:21:29 +01:00
popd
2017-03-11 19:16:28 +01:00
2018-10-28 21:24:13 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-11-26 10:48:51 +01:00
ynh_script_progression --message="Configuring system user..." --time --weight=1
2018-10-28 21:24:13 +01:00
# Create a system user
2021-11-26 10:48:51 +01:00
ynh_system_user_create --username=$app --home_dir="$final_path"
2018-10-28 21:24:13 +01:00
#=================================================
2021-11-26 10:48:51 +01:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
2018-10-28 21:24:13 +01:00
#=================================================
2022-01-11 19:45:26 +01:00
ynh_script_progression --message="Setting up source files..." --weight=1
2021-11-26 10:48:51 +01:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
2018-10-28 21:24:13 +01:00
2021-11-26 10:48:51 +01:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
#=================================================
# INSTALL LYCHEE WITH COMPOSER
#=================================================
ynh_script_progression --message="Installing $app with Composer..." --weight=15
ynh_install_composer
pushd $final_path
./composer.phar install
mkdir db
popd
2018-10-28 21:24:13 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-01-11 19:45:26 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2018-10-28 21:24:13 +01:00
2021-11-26 10:48:51 +01:00
# Create a dedicated NGINX config
2018-10-28 21:24:13 +01:00
ynh_add_nginx_config
2021-11-26 10:48:51 +01:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2022-01-11 19:45:26 +01:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
2021-11-26 10:48:51 +01:00
# Create a dedicated PHP-FPM config
ynh_add_fpm_config
2018-10-28 21:24:13 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-11-26 10:48:51 +01:00
ynh_script_progression --message="Configuring permissions..." --time --weight=1
2018-10-28 21:24:13 +01:00
# Make app public if necessary
if [ $is_public -eq 1 ]
2017-03-11 19:16:28 +01:00
then
2021-11-26 10:48:51 +01:00
ynh_permission_update --permission="main" --add="visitors"
2017-03-11 19:16:28 +01:00
fi
2018-10-28 21:24:13 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2022-01-11 19:45:26 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-11-26 10:48:51 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2018-10-28 21:24:13 +01:00
2022-01-11 19:45:26 +01:00
ynh_script_progression --message="Installation of $app completed" --last