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

179 lines
6 KiB
Text
Raw Normal View History

2015-08-22 20:24:46 +02:00
#!/bin/bash
2018-05-01 12:25:53 +02: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
#=================================================
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
is_public=$YNH_APP_ARG_IS_PUBLIC
2021-08-30 09:37:49 +02:00
2018-05-01 12:25:53 +02:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
2018-05-01 12:25:53 +02:00
final_path=/var/www/$app
2020-05-30 19:18:05 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2020-05-27 17:03:30 +02:00
2018-05-01 12:25:53 +02:00
# Register (book) web path
2020-05-29 22:51:48 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2018-05-01 12:25:53 +02:00
2020-05-27 18:18:11 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2020-05-27 18:18:11 +02:00
2021-03-22 09:17:49 +01:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
2020-05-27 18:18:11 +02:00
2020-05-30 19:18:05 +02:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Finding an available port..." --weight=1
2020-05-30 19:18:05 +02:00
# Find an available port
port=$(ynh_find_port 9000)
ynh_app_setting_set --app=$app --key=port --value=$port
2018-05-01 12:25:53 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Installing dependencies..." --weight=7
2018-05-01 12:25:53 +02:00
2020-05-27 17:03:30 +02:00
# Install Nodejs
2020-05-30 19:29:45 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2020-05-27 17:03:30 +02:00
# Install Yarn
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
2021-03-22 09:06:18 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Configuring system user..." --weight=1
2021-03-22 09:06:18 +01:00
# Create a system user
ynh_system_user_create --username=$app --home_dir="$final_path"
2018-05-01 12:25:53 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Setting up source files..." --weight=4
2015-08-22 20:24:46 +02:00
2020-08-09 14:48:13 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2018-05-01 12:25:53 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2020-05-29 22:51:48 +02:00
ynh_setup_source --dest_dir=$final_path
2019-10-25 11:04:41 +02:00
2021-08-02 08:23:59 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2019-10-25 11:04:41 +02:00
#=================================================
2020-05-30 19:18:05 +02:00
# NGINX CONFIGURATION
2019-10-25 11:04:41 +02:00
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2020-05-30 19:18:05 +02:00
2020-08-09 14:48:13 +02:00
# Create a dedicated NGINX config
2020-05-30 19:18:05 +02:00
ynh_add_nginx_config
2021-08-02 08:23:59 +02:00
#=================================================
# CREATE DATA DIRECTORY
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Creating a data directory..." --weight=1
2021-08-02 08:23:59 +02:00
2021-08-30 14:41:20 +02:00
datadir=/home/yunohost.app/$app
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
2021-08-02 08:23:59 +02:00
2021-08-30 14:41:20 +02:00
mkdir -p $datadir
2021-08-02 08:23:59 +02:00
2021-08-30 14:41:20 +02:00
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:www-data "$datadir"
2021-08-02 08:23:59 +02:00
2020-05-30 19:18:05 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Modifying a config file..." --weight=1
2020-05-30 19:18:05 +02:00
2021-08-30 14:41:20 +02:00
ynh_add_config --template="../conf/config.js" --destination="$datadir/config.js"
2020-05-27 18:18:11 +02:00
2019-10-25 11:04:41 +02:00
#=================================================
# INSTALL THE LOUNGE
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Installing The Lounge..." --weight=10
2019-10-25 11:04:41 +02:00
2020-05-29 22:51:48 +02:00
pushd $final_path
2021-08-30 15:16:17 +02:00
ynh_use_nodejs
2022-01-04 11:14:17 +01:00
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn install
2022-01-04 14:22:30 +01:00
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH NODE_ENV=production yarn build
2019-10-25 11:04:41 +02:00
popd
2015-08-22 20:24:46 +02:00
2018-05-01 12:25:53 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Configuring a systemd service..." --weight=1
2018-05-01 12:25:53 +02:00
2022-03-27 10:59:38 +02:00
env_path="$PATH"
2018-05-01 18:04:42 +02:00
ynh_add_systemd_config
2018-05-01 15:02:11 +02:00
2018-05-01 12:25:53 +02:00
#=================================================
2020-05-30 19:18:05 +02:00
# INTEGRATE SERVICE IN YUNOHOST
2018-05-01 12:25:53 +02:00
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2018-05-01 12:25:53 +02:00
2020-12-14 11:14:10 +01:00
yunohost service add $app --description="Client Web IRC" --log="/var/log/$app/$app.log"
2018-05-01 12:25:53 +02:00
2019-10-25 11:04:41 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2019-10-25 11:04:41 +02:00
# Start a systemd service
2021-08-30 22:37:35 +02:00
ynh_systemd_action --service_name=$app --action=start --log_path=systemd
2018-05-01 12:25:53 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2018-05-01 12:25:53 +02:00
2021-08-02 08:23:59 +02:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
ynh_permission_update --permission="main" --add="visitors"
fi
2015-08-22 20:24:46 +02:00
2018-05-01 12:25:53 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2019-10-25 11:04:41 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Installation of $app completed" --last