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

165 lines
4.7 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
#=================================================
ynh_abort_if_errors # Active trap pour arrêter le script si une erreur est détectée.
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2016-10-25 00:00:01 +02:00
domain=$YNH_APP_ARG_DOMAIN
2017-10-09 17:08:29 +02:00
path_url=$YNH_APP_ARG_PATH
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
#=================================================
2016-10-25 00:00:01 +02:00
2017-10-09 17:11:05 +02:00
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die "This path already contains a folder"
# Normalize the url path syntax
path_url=$(ynh_normalize_url_path $path_url)
# Check web path availability
ynh_webpath_available $domain $path_url
# Register (book) web path
ynh_webpath_register $app $domain $path_url
2017-09-26 21:08:01 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
ynh_app_setting_set $app domain "$domain"
ynh_app_setting_set $app is_public "$is_public"
2017-10-09 17:12:30 +02:00
ynh_app_setting_set $app path_url "$path_url"
2017-09-26 21:08:01 +02:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
port=$(ynh_find_port 3000) # Cherche un port libre.
ynh_app_setting_set $app port $port
#=================================================
# INSTALL NODEJS
#=================================================
2017-10-13 18:18:38 +02:00
ynh_install_nodejs 8.0.0
2017-09-26 21:08:01 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_system_user_create $app
#=================================================
# SPECIFIC SETUP
#=================================================
# HANDLE LOG FILES AND LOGROTATE
#=================================================
# Créer le dossier de log
2017-10-13 18:22:29 +02:00
mkdir -p /var/log/$app
touch /var/log/$app/$app.log
chown $app -R /var/log/$app
2017-09-26 21:08:01 +02:00
# Setup logrotate
ynh_use_logrotate
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
final_path=/var/www/$app
ynh_app_setting_set $app final_path $final_path
ynh_setup_source $final_path
2016-10-25 00:00:01 +02:00
2017-09-26 21:08:01 +02:00
# Set files ownership during installation
2017-10-13 18:22:29 +02:00
chown $app: $final_path -R
chmod 755 $final_path -R
2017-09-26 21:08:01 +02:00
#=================================================
# Modify Nginx configuration file and copy it to Nginx conf directory
#=================================================
2017-10-13 18:09:15 +02:00
ynh_add_nginx_config
2017-09-26 21:08:01 +02:00
#=================================================
# ADD SYSTEMD SERVICE
#=================================================
ynh_replace_string "__NODE__" "$nodejs_path" "../conf/systemd.service"
ynh_replace_string "__NODEJS__" "$nodejs_use_version" "../conf/systemd.service"
ynh_replace_string "__ENV_PATH__" "$PATH" "../conf/systemd.service"
2017-10-13 18:09:15 +02:00
ynh_add_systemd_config
2017-09-26 21:08:01 +02:00
#=================================================
# INSTALL HASTEBIN
#=================================================
2017-10-13 18:22:29 +02:00
ynh_use_nodejs
2017-09-26 21:08:01 +02:00
script_dir="$PWD"
pushd "$final_path"
2017-10-13 18:22:29 +02:00
chown -R $app: $final_path
npm install
2017-09-26 21:08:01 +02:00
#=================================================
# Configure haste with config.js file
#=================================================
2017-10-13 18:22:29 +02:00
cp ../conf/config.js "$DESTDIR"/config.js
sed -i "s@YNH_DATA_PATH@$DATA_PATH@g" "$DESTDIR"/config.js
2017-09-26 21:08:01 +02:00
#=================================================
# Add HASTE AS A BINARY FILE
#=================================================
ynh_replace_string "YNH_HASTE_URL" "${DOMAIN}${path%/}" "../conf/haste.sh"
2017-10-13 18:22:29 +02:00
cp ../conf/haste.sh /usr/bin/"$app"
chmod +x /usr/bin/"$app"
2017-09-26 21:08:01 +02:00
=================================================
# ENABLE SERVICE IN ADMIN PANEL
#=================================================
# Ajoute le service au monitoring de Yunohost.
2017-10-13 18:22:29 +02:00
yunohost service add $app --log "/var/log/$app/$app.log"
2017-09-26 21:08:01 +02:00
#=================================================
# START HASTEBIN IN BACKGROUND
#=================================================
2017-10-13 18:22:29 +02:00
systemctl start $app
2017-09-26 21:08:01 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
if [ $is_public -eq 1 ];
then
ynh_app_setting_set "$app" unprotected_uris "/"
fi
2016-10-25 00:00:01 +02:00
2017-09-26 21:08:01 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2016-10-25 00:00:01 +02:00
2017-10-13 18:22:29 +02:00
systemctl reload nginx