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-08-23 10:19:47 +02:00
|
|
|
path_url="/"
|
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-05-30 09:52:49 +02:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --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
|
2021-03-25 20:09:22 +01:00
|
|
|
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-04-06 15:51:17 +02:00
|
|
|
ynh_script_progression --message="Finding an available port..." --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-04-06 15:51:17 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=1
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-03-25 20:22:23 +01:00
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
2021-03-25 20:05:16 +01:00
|
|
|
|
2021-03-25 20:22:23 +01:00
|
|
|
# Install Nodejs
|
|
|
|
ynh_exec_warn_less 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-04-06 15:51:17 +02:00
|
|
|
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=9
|
2021-03-25 17:00:29 +01:00
|
|
|
|
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
2021-03-25 22:19:07 +01:00
|
|
|
ynh_psql_test_if_first_run
|
|
|
|
ynh_psql_setup_db --db_user=$db_name --db_name=$db_name
|
2021-03-25 17:00:29 +01:00
|
|
|
|
2017-07-08 18:06:56 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2021-04-06 15:51:17 +02:00
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=3
|
2017-07-08 18:06:56 +02:00
|
|
|
|
2018-03-11 12:09:25 +01:00
|
|
|
# Create a system user
|
2021-08-09 16:29:31 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
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-04-06 15:51:17 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=2
|
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
|
2021-07-02 14:02:14 +02:00
|
|
|
#ynh_setup_source --dest_dir="$final_path"
|
2021-07-02 14:08:19 +02:00
|
|
|
git clone -b v1.17.x https://github.com/NodeBB/NodeBB.git "$final_path" --quiet
|
2021-08-09 16:29:31 +02:00
|
|
|
|
2021-05-30 09:17:14 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
|
2021-08-31 15:55:02 +02:00
|
|
|
#=================================================
|
|
|
|
# CONFIGURE SERVER.JS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_add_config --template="../conf/config.json" --destination="$final_path/config.json"
|
|
|
|
chmod 666 "$final_path/config.json"
|
|
|
|
chown $app "$final_path/config.json"
|
|
|
|
|
2021-07-01 23:38:04 +02:00
|
|
|
#=================================================
|
|
|
|
# CONFIGURE NODEBB
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-02 14:14:11 +02:00
|
|
|
pushd $final_path
|
2021-08-09 17:05:38 +02:00
|
|
|
ynh_exec_as $app env $ynh_node_load_PATH $final_path/nodebb setup #-l > $install_log
|
2021-07-02 08:56:49 +02:00
|
|
|
popd
|
2021-07-01 23:38:04 +02:00
|
|
|
|
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-04-06 15:51:17 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=3
|
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-04-06 15:51:17 +02:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..." --weight=1
|
2017-12-27 13:16:05 +01:00
|
|
|
|
2021-07-01 23:32:55 +02:00
|
|
|
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file="../conf/systemd.service"
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-05-30 09:34:35 +02:00
|
|
|
ynh_add_systemd_config
|
2021-03-25 17:00:29 +01:00
|
|
|
|
2017-04-18 18:17:30 +02:00
|
|
|
#=================================================
|
2017-07-08 18:06:56 +02:00
|
|
|
# START NodeBB IN BACKGROUND
|
|
|
|
#=================================================
|
|
|
|
|
2021-04-06 15:51:17 +02:00
|
|
|
# cat /etc/systemd/system/$app.service
|
|
|
|
# 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-08-09 17:00:49 +02:00
|
|
|
yunohost service add $app --description="Nodejs Forum" --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-04-06 15:51:17 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2017-04-07 23:28:30 +02:00
|
|
|
|
2021-04-06 15:51:17 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action=restart --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
|
|
|
|
#=================================================
|
2021-04-06 15:51:17 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2017-07-08 18:06:56 +02:00
|
|
|
|
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"
|
|
|
|
|
2021-05-30 09:17:14 +02:00
|
|
|
ynh_send_readme_to_admin "$message"
|
|
|
|
|
2021-04-06 15:51:17 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|