1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nodebb_ynh.git synced 2024-09-03 19:46:29 +02:00
nodebb_ynh/scripts/install

202 lines
6.9 KiB
Text
Raw Normal View History

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
#=================================================
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-31 21:26:01 +02:00
path_url=$YNH_APP_ARG_PATH
2017-04-19 00:56:02 +02:00
secret=$(ynh_string_random)
2021-08-31 18:12:31 +02:00
password=$YNH_APP_ARG_PASSWORD
admin=$YNH_APP_ARG_ADMIN
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-08-31 16:32:37 +02:00
ynh_app_setting_set --app=$app --key=path --value=$path_url
2021-03-25 20:09:22 +01:00
ynh_app_setting_set --app=$app --key=$secret --value="$secret"
2021-08-31 18:12:31 +02:00
ynh_app_setting_set --app=$app --key=admin --value=$admin
2021-09-01 10:31:41 +02:00
ynh_app_setting_set --app=$app --key=password --value=$password
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
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-04-06 15:51:17 +02:00
ynh_script_progression --message="Configuring system user..." --weight=3
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"
2021-08-31 21:26:01 +02:00
#=================================================
# CREATE A POSTGRESQL DATABASE
#=================================================
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=2
db_name=$(ynh_sanitize_dbid --db_name=$app)
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_psql_test_if_first_run
ynh_psql_setup_db --db_user=$db_name --db_name=$db_name
#=================================================
# 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
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
# 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-08-31 23:11:02 +02:00
git clone -b $nodebb_version 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
#=================================================
2021-09-01 16:00:35 +02:00
# CONFIGURE NODEBB
2021-08-31 15:55:02 +02:00
#=================================================
2021-09-02 08:54:18 +02:00
ynh_script_progression --message="Configuring the $app..." --weight=2
2021-08-31 15:55:02 +02:00
2021-09-02 11:18:36 +02:00
setup="{
\"url\": \"https://${domain}${path_url}\",
\"admin:username\": \"$admin\",
\"admin:password\": \"$password\",
\"admin:password:confirm\": \"$password\",
\"admin:email\": \"admin@$domain\",
\"database\": \"postgres\",
\"postgres:host\": \"localhost\",
\"postgres:port\": \"5432\",
\"postgres:username\": \"$db_name\",
\"postgres:password\": \"$db_pwd\",
\"postgres:database\": \"$db_name\"
}"
2021-09-02 10:59:18 +02:00
2021-09-02 11:11:01 +02:00
pushd $final_path
2021-09-02 11:18:36 +02:00
ynh_exec_as $app $ynh_node_load_PATH $final_path/nodebb setup "${setup}" | tee -a $install_log
2021-09-02 11:11:01 +02:00
popd
2021-07-01 23:38:04 +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-09-02 10:23:59 +02:00
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file="../conf/systemd.service"
2021-09-02 10:15:55 +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
#=================================================
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-09-01 18:36:40 +02:00
yunohost service add $app --description="Forum software" --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-08-31 16:08:23 +02:00
ynh_systemd_action --service_name=$app --action=restart --log_path="systemd"
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
2021-08-31 23:41:12 +02:00
ynh_permission_create --permission="api" --url="/api" --allowed="visitors" --show_tile="false" --protected="true"
2021-08-31 18:46:48 +02:00
2017-04-07 23:28:30 +02:00
#=================================================
# 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
2021-04-06 15:51:17 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed" --last