1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/distbin_ynh.git synced 2024-09-03 18:26:10 +02:00
distbin_ynh/scripts/install

216 lines
6.9 KiB
Text
Raw Normal View History

2019-01-28 19:15:11 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
2019-02-01 22:10:17 +01:00
ynh_clean_check_starting
2019-01-28 19:15:11 +01:00
}
# 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
2019-02-08 20:25:49 +01:00
path_url=$YNH_APP_ARG_PATH
2019-01-28 19:15:11 +01:00
is_public=$YNH_APP_ARG_IS_PUBLIC
2019-03-23 06:05:30 +01:00
2019-01-28 19:15:11 +01:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Validating installation parameters..."
2019-01-28 19:15:11 +01:00
final_path=/var/www/$app
2019-04-24 03:11:53 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2019-01-28 19:15:11 +01:00
# Register (book) web path
2019-04-24 03:11:53 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2019-01-28 19:15:11 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Storing installation settings..."
2019-01-28 19:15:11 +01:00
2019-04-24 03:11:53 +02:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
2019-01-28 19:15:11 +01:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
2021-01-09 22:35:46 +01:00
ynh_script_progression --message="Finding an available port..."
2019-01-28 19:15:11 +01:00
2019-12-29 17:43:56 +01:00
# Find an available port
2019-05-15 01:57:52 +02:00
port=$(ynh_find_port --port=8095)
2019-04-24 03:11:53 +02:00
ynh_app_setting_set --app=$app --key=port --value=$port
2019-01-28 19:15:11 +01:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Installing dependencies..."
2019-01-28 19:15:11 +01:00
2019-03-14 00:35:51 +01:00
ynh_install_app_dependencies $pkg_dependencies
2021-03-23 20:16:47 +01:00
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
2019-01-29 03:27:53 +01:00
2021-04-10 01:14:00 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Configuring system user..."
# Create a system user
2022-01-05 03:58:46 +01:00
ynh_system_user_create --username=$app --home_dir=$final_path
2021-04-10 01:14:00 +02:00
2019-01-28 19:15:11 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Setting up source files..."
2019-01-28 19:15:11 +01:00
2019-04-24 03:11:53 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2019-01-28 19:15:11 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2019-04-24 03:11:53 +02:00
ynh_setup_source --dest_dir="$final_path"
2019-01-28 19:15:11 +01:00
2021-04-17 18:31:08 +02:00
chmod 750 "$final_path"
2021-04-10 01:14:00 +02:00
chmod -R o-rwx "$final_path"
2021-04-11 20:18:30 +02:00
chown -R $app:$app "$final_path"
2021-04-10 01:14:00 +02:00
2019-01-28 19:15:11 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-12-11 09:23:59 +01:00
ynh_script_progression --message="Configuring NGINX web server..."
2019-01-28 19:15:11 +01:00
2021-03-23 20:16:47 +01:00
# Create a dedicated NGINX config
2019-01-28 19:15:11 +01:00
ynh_add_nginx_config
#=================================================
# SPECIFIC SETUP
#=================================================
2022-01-05 03:58:46 +01:00
# INSTALLING DISTBIN
2019-01-28 19:15:11 +01:00
#=================================================
2022-01-05 03:58:46 +01:00
ynh_script_progression --message="Installing Distbin..."
2019-01-28 19:15:11 +01:00
2022-01-05 03:58:46 +01:00
pushd $final_path
ynh_use_nodejs
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --ignore-scripts
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm run build
ynh_exec_warn_less ynh_exec_as $app cp -af package* dist/
popd
pushd $final_path/dist
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --ignore-scripts --production
popd
2019-02-02 00:34:04 +01:00
2019-02-02 20:47:00 +01:00
#=================================================
2022-01-05 03:58:46 +01:00
# CREATE LOG DIRECTORY
2019-02-02 20:47:00 +01:00
#=================================================
2022-01-05 03:58:46 +01:00
ynh_script_progression --message="Creating log folder..."
2019-02-02 20:47:00 +01:00
2022-01-05 03:58:46 +01:00
mkdir -p "/var/log/$app"
2019-02-02 20:47:00 +01:00
2022-01-05 03:58:46 +01:00
chmod 750 "/var/log/$app"
chmod -R o-rwx "/var/log/$app"
chown -R $app:$app "/var/log/$app"
2021-04-14 20:36:26 +02:00
2019-02-02 00:34:04 +01:00
#=================================================
2022-01-05 03:58:46 +01:00
# CREATE DATA DIRECTORY
2019-02-02 00:34:04 +01:00
#=================================================
2022-01-05 03:58:46 +01:00
ynh_script_progression --message="Creating a data directory..."
2019-01-28 23:23:53 +01:00
2022-01-05 03:58:46 +01:00
datadir=/home/yunohost.app/$app
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
2019-01-28 21:17:29 +01:00
2022-01-05 03:58:46 +01:00
mkdir -p "$datadir/distbin-db"
mkdir -p "$datadir/distbin-db/activities"
mkdir -p "$datadir/distbin-db/inbox"
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:$app "$datadir"
2019-02-09 02:22:57 +01:00
2019-01-28 19:15:11 +01:00
#=================================================
2021-04-10 01:14:00 +02:00
# ADD A CONFIGURATION
2019-01-28 19:15:11 +01:00
#=================================================
2022-01-05 03:58:46 +01:00
ynh_script_progression --message="Adding a configuration file..."
2019-01-28 19:15:11 +01:00
2020-08-08 20:40:00 +02:00
ynh_add_config --template="../conf/.env" --destination="$final_path/.env"
2019-01-28 19:15:11 +01:00
2021-04-10 01:57:27 +02:00
chmod 400 "$final_path/.env"
chown $app:$app "$final_path/.env"
2021-04-10 01:14:00 +02:00
2021-04-11 20:18:30 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Configuring a systemd service..."
# Create a dedicated systemd config
ynh_add_systemd_config
2019-01-28 19:15:11 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Configuring log rotation..."
2019-01-28 19:15:11 +01:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
2019-12-29 17:43:56 +01:00
# INTEGRATE SERVICE IN YUNOHOST
2019-01-28 19:15:11 +01:00
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2019-01-28 19:15:11 +01:00
2021-01-23 09:45:50 +01:00
yunohost service add $app --description="Distributed pastebin" --log="/var/log/$app/$app.log"
2019-01-28 19:15:11 +01:00
2019-05-15 01:57:52 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Starting a systemd service..."
2019-05-15 01:57:52 +02:00
2019-12-29 17:43:56 +01:00
# Start a systemd service
2023-08-03 01:19:34 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Started"
2022-01-05 03:58:46 +01:00
2019-12-29 22:13:51 +01:00
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
2021-02-28 11:37:19 +01:00
sleep 60
2019-12-29 22:13:51 +01:00
fi
2019-05-15 01:57:52 +02:00
2019-01-28 19:15:11 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-02-28 11:37:19 +01:00
ynh_script_progression --message="Configuring permissions..."
2019-01-28 19:15:11 +01:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
2021-01-23 09:45:50 +01:00
# Everyone can access the app.
# The "main" permission is automatically created before the install script.
ynh_permission_update --permission="main" --add="visitors"
2019-01-28 19:15:11 +01:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2020-12-11 09:23:59 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2019-01-28 19:15:11 +01:00
2019-05-15 01:57:52 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-11 04:34:08 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Installation of $app completed"