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
|
|
|
|
|
|
|
|
#=================================================
|
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
|
|
|
|
2017-11-29 15:42:21 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-04-03 16:58:04 +02:00
|
|
|
ynh_setup_source --dest_dir=$install_dir
|
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
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
2017-11-29 15:42:21 +01:00
|
|
|
# INSTALL NODEJS
|
2017-09-26 21:08:01 +02:00
|
|
|
#=================================================
|
2023-04-03 16:58:04 +02:00
|
|
|
#REMOVEME? 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
|
|
|
|
#=================================================
|
2022-05-13 23:11:01 +02:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..." --weight=1
|
2017-09-26 21:08:01 +02:00
|
|
|
|
2022-05-13 23:11:01 +02:00
|
|
|
env_path="$PATH"
|
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
|
|
|
#=================================================
|
2022-05-13 23:11:01 +02:00
|
|
|
ynh_script_progression --message="Installing $app..." --weight=5
|
2017-09-26 21:08:01 +02:00
|
|
|
|
2023-04-03 16:58:04 +02:00
|
|
|
pushd "$install_dir"
|
2020-07-25 23:14:14 +02:00
|
|
|
ynh_use_nodejs
|
2021-11-18 11:48:15 +01:00
|
|
|
ynh_exec_warn_less $ynh_npm install
|
2021-09-08 17:14:14 +02:00
|
|
|
popd
|
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
|
|
|
#=================================================
|
2022-05-13 23:11:01 +02:00
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
2017-09-26 21:08:01 +02:00
|
|
|
|
2023-04-03 16:58:04 +02:00
|
|
|
ynh_add_config --template="../conf/config.js" --destination="$install_dir/config.js"
|
2017-09-26 21:08:01 +02:00
|
|
|
|
2020-07-25 23:25:36 +02:00
|
|
|
# Replace ajax.googleapis by local file
|
2023-04-03 16:58:04 +02:00
|
|
|
cp ../sources/jquery.min.js "$install_dir/static/jquery.min.js"
|
2020-07-29 09:23:27 +02:00
|
|
|
|
2023-04-03 16:58:04 +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="$install_dir/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
|
|
|
#=================================================
|
|
|
|
|
2023-04-03 16:58:04 +02:00
|
|
|
haste_url="${domain}${path}"
|
2021-05-12 09:09:45 +02:00
|
|
|
ynh_add_config --template="../conf/haste.sh" --destination="/usr/bin/$app"
|
2020-07-25 23:14:14 +02:00
|
|
|
|
2017-11-29 15:42:21 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
2023-04-03 16:58:04 +02:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
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
|
|
|
#=================================================
|
2022-05-13 23:11:01 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
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
|
|
|
|
2020-07-25 23:14:14 +02:00
|
|
|
#=================================================
|
|
|
|
# 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
|