1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wikijs_ynh.git synced 2024-09-03 20:36:09 +02:00
wikijs_ynh/scripts/install

218 lines
8 KiB
Text
Raw Normal View History

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
#=================================================
2020-02-22 18:44:18 +01:00
ynh_print_info --message="Managing script failure..."
2019-01-29 21:56:56 +01:00
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
#=================================================
2020-02-22 18:44:18 +01:00
ynh_print_info --message="Retrieving arguments from the manifest..."
2019-01-29 21:56:56 +01:00
domain=$YNH_APP_ARG_DOMAIN
path_url="/"
is_public=$YNH_APP_ARG_IS_PUBLIC
2019-03-27 23:39:07 +01:00
2019-01-29 21:56:56 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-07-09 08:30:38 +02:00
ldap_user="svc_${app}_ldap"
2019-07-07 22:34:33 +02:00
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
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --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
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --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-01-29 21:56:56 +01:00
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
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="Configuring firewall..."
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
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="Installing dependencies..."
2019-01-29 21:56:56 +01:00
2019-05-15 14:00:19 +02:00
ynh_install_nodejs --nodejs_version="10"
2019-03-14 01:19:10 +01:00
ynh_install_app_dependencies $pkg_dependencies
2019-02-03 05:12:39 +01:00
2019-01-29 21:56:56 +01:00
#=================================================
# CREATE A POSTGRESQL DATABASE
2019-01-29 21:56:56 +01:00
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --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
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
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --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
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="Configuring nginx web server..."
2019-01-29 21:56:56 +01:00
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-12-27 23:53:20 +01:00
ynh_print_info --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
#=================================================
ynh_print_info --message="Creating LDAP user..."
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
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="Configuring a systemd service..."
2019-01-29 21:56:56 +01:00
# Create a dedicated systemd config
2019-05-15 14:00:19 +02:00
ynh_replace_string --match_string="__NODEJS_PATH__" --replace_string="$nodejs_path" --target_file="../conf/systemd.service"
ynh_add_systemd_config
2019-01-29 21:56:56 +01:00
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2020-02-22 18:44:18 +01:00
ynh_print_info --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-02-22 18:44:18 +01:00
ynh_print_info --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-02-22 18:44:18 +01:00
ynh_print_info --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-02-22 18:44:18 +01:00
ynh_print_info --message="Integrating service in YunoHost..."
2019-01-29 21:56:56 +01:00
2019-12-27 23:53:20 +01:00
yunohost service add $app --description "$app daemon for Wiki.js" --log_type systemd
2019-01-29 21:56:56 +01:00
2019-05-15 14:00:19 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2020-02-22 18:44:18 +01:00
ynh_print_info --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
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="Configuring SSOwat..."
2019-01-29 21:56:56 +01:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway.
2019-05-15 14:00:19 +02:00
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
2019-01-29 21:56:56 +01:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --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
#=================================================
ynh_print_info --message="Sending ReadMe to admin..."
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
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="Installation of $app completed"