2017-04-07 23:28:30 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
2018-01-28 15:58:21 +01:00
|
|
|
# GENERIC START
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2017-07-08 18:06:56 +02:00
|
|
|
source _common.sh
|
2017-04-07 23:28:30 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2018-01-28 15:58:21 +01:00
|
|
|
# MANAGE SCRIPT FAILURE
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
|
|
|
|
2018-01-28 15:58:21 +01:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-04-07 23:28:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2021-03-25 20:06:40 +01:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2017-04-19 00:56:02 +02:00
|
|
|
secret=$(ynh_string_random)
|
2017-12-27 13:16:05 +01:00
|
|
|
|
2021-03-25 20:06:40 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
2018-01-28 15:58:21 +01:00
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
2021-03-25 20:06:40 +01:00
|
|
|
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2017-12-27 13:16:05 +01:00
|
|
|
final_path=/var/www/$app
|
2021-03-25 17:00:29 +01:00
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2018-03-11 12:28:28 +01:00
|
|
|
# Register (book) web path
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2018-03-11 12:28:28 +01:00
|
|
|
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --time --weight=1
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
|
|
ynh_app_setting_set --app=$app --key=$secret--value="$secret"
|
2017-04-07 23:28:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# FIND AND OPEN A PORT
|
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_script_progression --message="Finding an available port..." --time --weight=1
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-03-25 17:00:29 +01:00
|
|
|
# Find an available port
|
|
|
|
port=$(ynh_find_port --port=4567)
|
|
|
|
ynh_app_setting_set --app=$app --key=port --value=$port
|
2017-04-07 23:28:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2021-03-25 20:05:16 +01:00
|
|
|
ynh_script_progression --message="Installing dependencies..." --time --weight=1
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-03-25 20:05:16 +01:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
|
|
|
|
ynh_install_nodejs --nodejs_version=$nodejs_version
|
2017-07-08 18:06:56 +02:00
|
|
|
|
2019-01-06 01:16:29 +01:00
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
# CREATE A MYSQL DATABASE
|
2019-01-06 01:16:29 +01:00
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_script_progression --message="Creating a MySQL database..." --time --weight=1
|
|
|
|
|
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
db_user=$db_name
|
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
|
|
|
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name
|
|
|
|
|
2017-07-08 18:06:56 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_script_progression --message="Configuring system user..." --time --weight=1
|
2017-07-08 18:06:56 +02:00
|
|
|
|
2018-03-11 12:09:25 +01:00
|
|
|
# Create a system user
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_system_user_create --username=$app
|
2017-07-08 18:06:56 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# HANDLE LOG FILES AND LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Créer le dossier de log
|
2017-12-28 18:06:23 +01:00
|
|
|
mkdir -p /var/log/$app
|
|
|
|
touch /var/log/$app/nodebb.log
|
2017-07-08 18:06:56 +02:00
|
|
|
install_log=/var/log/$app/installation.log
|
2017-12-28 18:06:23 +01:00
|
|
|
touch $install_log
|
|
|
|
chown $app -R /var/log/$app
|
|
|
|
chown admin -R $install_log
|
2017-07-08 18:06:56 +02:00
|
|
|
|
|
|
|
# Configuration de logrotate
|
|
|
|
ynh_use_logrotate
|
2017-04-07 23:28:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --time --weight=1
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2017-04-07 23:28:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
# NGINX CONFIGURATION
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --time --weight=1
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-03-25 17:00:29 +01:00
|
|
|
# Create a dedicated NGINX config
|
2017-12-28 17:12:59 +01:00
|
|
|
ynh_add_nginx_config
|
2018-08-22 23:56:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# Add Systemd service
|
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..." --time --weight=1
|
2017-12-27 13:16:05 +01:00
|
|
|
|
2017-07-08 18:06:56 +02:00
|
|
|
ynh_replace_string "__NODEJS__" "$nodejs_use_version" "/etc/systemd/system/$app.service"
|
|
|
|
ynh_replace_string "__ENV_PATH__" "$PATH" "/etc/systemd/system/$app.service"
|
|
|
|
ynh_replace_string "__NODE__" "$nodejs_path" "/etc/systemd/system/$app.service"
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2017-04-18 18:17:30 +02:00
|
|
|
#=================================================
|
|
|
|
# CONFIGURE SERVER.JS
|
|
|
|
#=================================================
|
|
|
|
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_add_config --template="../conf/config.json" --destination="$final_path/config.json"
|
2017-04-18 18:17:30 +02:00
|
|
|
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
2017-04-19 11:05:11 +02:00
|
|
|
# CONFIGURE NODEBB
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
|
|
|
|
2019-01-06 02:33:59 +01:00
|
|
|
chown -R $app:$app $final_path
|
2021-03-25 17:00:29 +01:00
|
|
|
|
2017-07-08 18:20:55 +02:00
|
|
|
pushd $final_path
|
2021-03-25 17:00:29 +01:00
|
|
|
exec_as $app ./nodebb setup -l > $install_log
|
|
|
|
exec_as $app npm install nodebb-plugin-dbsearch --save-prod
|
|
|
|
exec_as $app ./nodebb build -l
|
2017-04-08 00:38:52 +02:00
|
|
|
popd
|
2019-01-06 02:33:59 +01:00
|
|
|
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2017-07-08 18:06:56 +02:00
|
|
|
#=================================================
|
|
|
|
# START NodeBB IN BACKGROUND
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
cat /etc/systemd/system/$app.service
|
2021-03-25 17:00:29 +01:00
|
|
|
systemctl daemon-reload
|
|
|
|
systemctl enable $app.service
|
2017-07-08 19:22:54 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2017-07-08 19:22:54 +02:00
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2017-07-08 19:22:54 +02:00
|
|
|
|
2021-03-25 17:00:29 +01:00
|
|
|
yunohost service add $app --description="A short description of the app" --log="/var/log/$app/$app.log"
|
2017-04-08 18:23:00 +02:00
|
|
|
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
# START ETHERPAD IN BACKGROUND
|
2017-04-07 23:28:30 +02:00
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --time --weight=1
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
2017-04-07 23:28:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_script_progression --message="Configuring permissions..." --weight=1
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2018-03-11 12:12:45 +01:00
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
2017-04-07 23:28:30 +02:00
|
|
|
then
|
2021-03-25 17:00:29 +01:00
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
2017-04-07 23:28:30 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2017-07-08 18:06:56 +02:00
|
|
|
|
2017-12-28 17:37:56 +01:00
|
|
|
systemctl reload nginx
|
2019-01-06 13:10:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SEND A README FOR THE ADMIN
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
mail_content=$(cat $install_log | grep '\(Username\|Password\)')*
|
|
|
|
|
|
|
|
message=" $app was successfully installed :)
|
|
|
|
Please open your $app domain: https://$domain$path_url
|
|
|
|
|
|
|
|
$mail_content
|
|
|
|
|
|
|
|
If you are facing any problem or want to improve this app, please open a new issue here: https://github.com/YunoHost-Apps/nodebb_ynh"
|
|
|
|
|
|
|
|
ynh_send_readme_to_admin "$message"
|