2016-10-25 00:00:01 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-26 21:08:01 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2023-12-10 11:16:54 +01:00
|
|
|
#=================================================
|
|
|
|
# INSTALL NODEJS
|
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Installing dependencies..."
|
2023-12-10 11:16:54 +01:00
|
|
|
|
|
|
|
# Install Nodejs
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_nodejs_install
|
2023-12-10 11:16:54 +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
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Setting up source files..."
|
2017-09-26 21:08:01 +02:00
|
|
|
|
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
|
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Configuring NGINX web server..."
|
2017-11-29 15:42:21 +01:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_add_nginx
|
2017-11-29 15:42:21 +01:00
|
|
|
|
2022-05-13 23:11:01 +02:00
|
|
|
env_path="$PATH"
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_add_systemd
|
2017-09-26 21:08:01 +02:00
|
|
|
|
2023-12-10 11:16:54 +01:00
|
|
|
mkdir -p /var/log/$app
|
|
|
|
touch /var/log/$app/$app.log
|
2017-09-26 21:08:01 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_add_logrotate
|
2023-12-10 11:16:54 +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
|
|
|
|
|
|
|
#=================================================
|
2017-11-29 15:42:21 +01:00
|
|
|
# CONFIGURE HASTE
|
2017-09-26 21:08:01 +02:00
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Adding $app's configuration..."
|
2017-09-26 21:08:01 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_add --template="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
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_replace --match="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" --replace="jquery.min.js" --file="$install_dir/static/index.html"
|
2020-07-25 23:14:14 +02:00
|
|
|
|
2023-12-10 11:16:54 +01:00
|
|
|
#=================================================
|
|
|
|
# INSTALL HASTEBIN
|
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Installing $app..."
|
2023-12-10 11:16:54 +01:00
|
|
|
|
|
|
|
pushd "$install_dir"
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_hide_warnings $ynh_npm install
|
2023-12-10 11:16:54 +01:00
|
|
|
popd
|
|
|
|
|
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}"
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_add --template="haste.sh" --destination="/usr/bin/$app"
|
2020-07-25 23:14:14 +02:00
|
|
|
|
2017-11-29 15:42:21 +01:00
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
2020-09-06 18:03:25 +02:00
|
|
|
chmod +x /usr/bin/$app
|
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
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2017-09-26 21:08:01 +02:00
|
|
|
|
2020-07-25 23:14:14 +02:00
|
|
|
# Start a systemd service
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_systemctl --service=$app --action=start
|
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
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Installation of $app completed"
|