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

202 lines
6.8 KiB
Text
Raw Normal View History

2016-10-25 00:00:01 +02:00
#!/bin/bash
2017-09-26 21:08:01 +02:00
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-10-25 00:00:01 +02:00
2017-09-26 21:08:01 +02:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE FAILURE OF THE SCRIPT
#=================================================
2017-11-29 15:42:21 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-09-26 21:08:01 +02:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2016-10-25 00:00:01 +02:00
domain=$YNH_APP_ARG_DOMAIN
2020-07-25 23:14:14 +02:00
path_url="/"
2016-10-25 00:00:01 +02:00
is_public=$YNH_APP_ARG_IS_PUBLIC
2017-10-13 18:06:42 +02:00
app=$YNH_APP_INSTANCE_NAME
2017-09-26 21:08:01 +02:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THIS ARGS
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
2016-10-25 00:00:01 +02:00
2017-10-09 17:11:05 +02:00
final_path=/var/www/$app
2020-07-25 23:14:14 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2017-10-09 17:11:05 +02:00
# Register (book) web path
2020-07-25 23:14:14 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2017-09-26 21:08:01 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=2
2017-09-26 21:08:01 +02:00
2020-07-25 23:14:14 +02:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path_url --value=$path_url
2017-09-26 21:08:01 +02:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
2021-02-01 23:18:17 +01:00
ynh_script_progression --message="Finding an available port..." --weight=2
2017-09-26 21:08:01 +02:00
2020-07-25 23:14:14 +02:00
# Find an available port
port=$(ynh_find_port --port=7777)
ynh_app_setting_set --app=$app --key=port --value=$port
2017-11-29 15:42:21 +01:00
2017-09-26 21:08:01 +02:00
#=================================================
2017-11-29 15:42:21 +01:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
2017-09-26 21:08:01 +02:00
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Setting up source files..." --weight=2
2017-09-26 21:08:01 +02:00
2020-07-25 23:14:14 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2017-11-29 15:42:21 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2020-07-25 23:14:14 +02:00
ynh_setup_source --dest_dir=$final_path
2017-11-29 15:42:21 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
2017-11-29 15:42:21 +01:00
2020-07-25 23:14:14 +02:00
# Create a dedicated NGINX config
2017-11-29 15:42:21 +01:00
ynh_add_nginx_config
2017-09-26 21:08:01 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Configuring system user..." --weight=3
2017-09-26 21:08:01 +02:00
2020-07-25 23:14:14 +02:00
# Create a system user
ynh_system_user_create --username=$app --home_dir=$final_path
2017-09-26 21:08:01 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
2017-11-29 15:42:21 +01:00
# INSTALL NODEJS
2017-09-26 21:08:01 +02:00
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Installing dependencies..." --weight=10
2017-09-26 21:08:01 +02:00
2020-07-25 23:14:14 +02:00
# Install Nodejs
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2017-09-26 21:08:01 +02:00
2017-11-29 15:42:21 +01:00
#=================================================
# ADD SYSTEMD SERVICE
#=================================================
2017-09-26 21:08:01 +02:00
2020-07-25 23:14:14 +02:00
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file="../conf/systemd.service"
ynh_replace_string --match_string="__YNH_NPM__" --replace_string="$ynh_npm" --target_file="../conf/systemd.service"
2017-11-29 15:42:21 +01:00
ynh_add_systemd_config
2017-09-26 21:08:01 +02:00
#=================================================
2017-11-29 15:42:21 +01:00
# INSTALL HASTEBIN
2017-09-26 21:08:01 +02:00
#=================================================
2020-07-25 23:14:14 +02:00
pushd "$final_path" || ynh_die
ynh_use_nodejs
ynh_exec_warn_less ynh_npm install
popd || ynh_die
2017-09-26 21:08:01 +02:00
#=================================================
2017-11-29 15:42:21 +01:00
# CREATE DIRECTORY FOR DATA
2017-09-26 21:08:01 +02:00
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Creating the data directory..."
2017-09-26 21:08:01 +02:00
2020-07-25 23:14:14 +02:00
# Define app's data directory
data_path="/home/yunohost.app/${app}"
# Create app folders
2017-11-29 15:42:21 +01:00
mkdir -p "$data_path"
2017-09-26 21:08:01 +02:00
#=================================================
2017-11-29 15:42:21 +01:00
# CONFIGURE HASTE
2017-09-26 21:08:01 +02:00
#=================================================
2021-04-23 22:36:24 +02:00
ynh_add_config --template="../conf/config.js" --destination="$final_path/config.js"
2017-09-26 21:08:01 +02:00
2020-07-25 23:25:36 +02:00
# Replace ajax.googleapis by local file
2020-07-25 23:14:14 +02:00
cp ../sources/jquery.min.js "$final_path/static/jquery.min.js"
2020-07-29 09:23:27 +02:00
2020-07-29 09:28:25 +02:00
ynh_replace_string --match_string="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" --replace_string="jquery.min.js" --target_file="$final_path/static/index.html"
2020-07-25 23:14:14 +02:00
2017-09-26 21:08:01 +02:00
#=================================================
2017-11-29 15:42:21 +01:00
# ADD HASTE AS A BINARY FILE
2017-09-26 21:08:01 +02:00
#=================================================
2021-04-23 22:36:24 +02:00
ynh_replace_string --match_string="__HASTE_URL__" --replace_string="${domain}${path_url%/}" --target_file="../conf/haste.sh"
2020-07-25 23:14:14 +02:00
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="../conf/haste.sh"
cp ../conf/haste.sh /usr/bin/$app
2017-11-29 15:42:21 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
chown -R root: $final_path
2020-09-06 18:03:25 +02:00
chown -R $app: "$final_path/static"
2021-02-01 23:18:17 +01:00
chown -R $app: $data_path
2020-09-06 18:03:25 +02:00
chmod +x /usr/bin/$app
2017-09-26 21:08:01 +02:00
#=================================================
2017-11-29 15:42:21 +01:00
# HANDLE LOG FILES AND SETUP LOGROTATE
2017-09-26 21:08:01 +02:00
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Configuring log rotation..." --weight=1
2017-09-26 21:08:01 +02:00
2020-07-25 23:14:14 +02:00
# FIXME Currently, the log is only redirected to syslog.
2017-11-29 15:42:21 +01:00
mkdir -p /var/log/$app
touch /var/log/$app/$app.log
chown $app -R /var/log/$app
2020-07-25 23:14:14 +02:00
2017-11-29 15:42:21 +01:00
ynh_use_logrotate
2017-09-26 21:08:01 +02:00
2017-10-13 18:58:51 +02:00
#=================================================
2020-07-25 23:14:14 +02:00
# INTEGRATE SERVICE IN YUNOHOST
2017-09-26 21:08:01 +02:00
#=================================================
2021-02-01 23:18:17 +01:00
yunohost service add $app --description="Haste is a pastebin software" --log="/var/log/$app/$app.log"
2017-09-26 21:08:01 +02:00
#=================================================
2020-07-25 23:14:14 +02:00
# START SYSTEMD SERVICE
2017-09-26 21:08:01 +02:00
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=2
2017-09-26 21:08:01 +02:00
2020-07-25 23:14:14 +02:00
# Start a systemd service
2021-02-01 23:18:17 +01:00
ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log"
2017-09-26 21:08:01 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-02-01 23:18:17 +01:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2017-09-26 21:08:01 +02:00
2020-07-25 23:25:36 +02:00
if [ $is_public -eq 1 ]
2017-09-26 21:08:01 +02:00
then
2021-02-01 23:18:17 +01:00
ynh_permission_update --permission="main" --add="visitors"
2017-09-26 21:08:01 +02:00
fi
2016-10-25 00:00:01 +02:00
2017-09-26 21:08:01 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2016-10-25 00:00:01 +02:00
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Installation of $app completed" --last