2019-01-29 21:56:56 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2019-07-07 22:34:33 +02:00
|
|
|
source ynh_send_readme_to_admin__2
|
2019-01-29 21:56:56 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_clean_setup () {
|
2019-02-01 22:11:47 +01:00
|
|
|
ynh_clean_check_starting
|
2019-01-29 21:56:56 +01:00
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
path_url="/"
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2019-07-07 22:34:33 +02:00
|
|
|
|
2020-06-13 21:51:57 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2020-06-14 23:53:14 +02:00
|
|
|
ldap_user="svc_${app}_ldap"
|
|
|
|
ldap_password=$(ynh_string_random --length=8)
|
|
|
|
|
2019-01-29 21:56:56 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Validating installation parameters..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
final_path=/var/www/$app
|
2019-05-15 14:00:19 +02:00
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
# Register (book) web path
|
2019-05-15 14:00:19 +02:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Storing installation settings..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
2019-05-15 14:00:19 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
|
|
ynh_app_setting_set --app=$app --key=path --value=$path_url
|
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
|
2019-07-07 22:34:33 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=ldap_user --value=$ldap_user
|
|
|
|
ynh_app_setting_set --app=$app --key=ldap_password --value=$ldap_password
|
|
|
|
|
2019-01-29 21:56:56 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# FIND AND OPEN A PORT
|
|
|
|
#=================================================
|
2021-01-09 22:36:09 +01:00
|
|
|
ynh_script_progression --message="Finding an available port..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
2020-02-22 18:44:18 +01:00
|
|
|
# Find an available port
|
2019-05-15 14:00:19 +02:00
|
|
|
port=$(ynh_find_port --port=8095)
|
|
|
|
ynh_app_setting_set --app=$app --key=port --value=$port
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
|
|
|
ynh_use_nodejs
|
2021-02-07 16:30:47 +01:00
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
2019-02-03 05:12:39 +01:00
|
|
|
|
2019-01-29 21:56:56 +01:00
|
|
|
#=================================================
|
2019-01-30 00:59:43 +01:00
|
|
|
# CREATE A POSTGRESQL DATABASE
|
2019-01-29 21:56:56 +01:00
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Creating a PostgreSQL database..."
|
2019-02-11 06:05:30 +01:00
|
|
|
|
2019-05-15 14:00:19 +02:00
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
db_user=$db_name
|
|
|
|
db_pwd=$(ynh_string_random --length=30)
|
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
|
|
|
ynh_app_setting_set --app=$app --key=db_pwd --value=$db_pwd
|
2019-01-30 00:59:43 +01:00
|
|
|
ynh_psql_test_if_first_run
|
2019-05-15 14:00:19 +02:00
|
|
|
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
|
2020-01-28 00:45:37 +01:00
|
|
|
ynh_psql_execute_as_root --sql="CREATE EXTENSION IF NOT EXISTS pg_trgm;" --database=$db_name
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
2019-05-15 14:00:19 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2019-01-29 21:56:56 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2019-05-15 14:00:19 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2019-02-03 02:40:30 +01:00
|
|
|
|
2019-01-29 21:56:56 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-09-22 15:45:01 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
2020-09-22 15:45:01 +02:00
|
|
|
# Create a dedicated NGINX config
|
2019-01-29 21:56:56 +01:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Configuring system user..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
# Create a system user
|
2019-05-15 14:00:19 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
2019-07-07 22:34:33 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE LDAP USER
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Creating LDAP user..."
|
2019-07-07 22:34:33 +02:00
|
|
|
|
2019-07-09 08:30:38 +02:00
|
|
|
yunohost user create $ldap_user --firstname "SvcWikijsLdap" --lastname "SvcWikijsLdap" --mail ${ldap_user}@$domain --password $ldap_password -q 0
|
2019-07-07 22:34:33 +02:00
|
|
|
|
2019-01-29 21:56:56 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_add_systemd_config --others_var="ynh_node ynh_node_load_PATH"
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Modifying a config file..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
2019-07-07 22:34:33 +02:00
|
|
|
config_file="$final_path/config.yml"
|
|
|
|
cp -f ../conf/config.sample.yml $config_file
|
2019-01-29 21:56:56 +01:00
|
|
|
|
2019-12-27 23:53:20 +01:00
|
|
|
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="$config_file"
|
|
|
|
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$config_file"
|
|
|
|
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$config_file"
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE THE CONFIG FILE CHECKSUM
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Storing the config file checksum..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
# Calculate and store the config file checksum into the app settings
|
2019-12-27 23:53:20 +01:00
|
|
|
ynh_store_file_checksum --file="$config_file"
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Securing files and directories..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
# Set permissions to app files
|
2019-02-01 08:55:16 +01:00
|
|
|
chown -R "$app":"$app" "$final_path"
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
2019-12-27 23:53:20 +01:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2019-01-29 21:56:56 +01:00
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
2020-12-04 18:19:54 +01:00
|
|
|
yunohost service add $app --description="$app daemon for Wiki.js" --log="/var/log/$app/$app.log"
|
2019-01-29 21:56:56 +01:00
|
|
|
|
2019-05-15 14:00:19 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2019-05-15 14:00:19 +02:00
|
|
|
|
2020-02-22 18:44:18 +01:00
|
|
|
# Start a systemd service
|
2020-01-08 01:06:00 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="HTTP Server:"
|
2019-05-15 14:00:19 +02:00
|
|
|
|
2019-01-29 21:56:56 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2021-02-07 16:17:24 +01:00
|
|
|
ynh_script_progression --message="Configuring permissions..."
|
2019-01-29 21:56:56 +01:00
|
|
|
|
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
2021-02-07 16:17:24 +01:00
|
|
|
# Everyone can access the app.
|
|
|
|
# The "main" permission is automatically created before the install script.
|
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
2019-01-29 21:56:56 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-09-22 15:45:01 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
2019-02-01 22:11:47 +01:00
|
|
|
|
2019-05-15 14:00:19 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-28 01:40:45 +01:00
|
|
|
|
2019-07-07 22:34:33 +02:00
|
|
|
#=================================================
|
|
|
|
# SEND README TO ADMIN
|
|
|
|
#=================================================
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Sending ReadMe to admin..."
|
2019-07-07 22:34:33 +02:00
|
|
|
|
|
|
|
ynh_replace_string --match_string="__LDAP_USER__" --replace_string="$ldap_user" --target_file="../conf/ldap_message"
|
|
|
|
ynh_replace_string --match_string="__LDAP_PASSWORD__" --replace_string="$ldap_password" --target_file="../conf/ldap_message"
|
|
|
|
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="../conf/ldap_message"
|
|
|
|
ynh_replace_string --match_string="__PATH_URL__" --replace_string="$path_url" --target_file="../conf/ldap_message"
|
|
|
|
|
|
|
|
ynh_send_readme_to_admin --app_message="../conf/ldap_message" --recipients="root" --type='install'
|
|
|
|
|
2019-02-11 06:05:30 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-06-03 23:48:48 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed"
|