1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/distbin_ynh.git synced 2024-09-03 18:26:10 +02:00
distbin_ynh/scripts/install

234 lines
7.6 KiB
Text
Raw Normal View History

2019-01-28 19:15:11 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
2019-02-01 22:10:17 +01:00
ynh_clean_check_starting
2019-01-28 19:15:11 +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
2019-02-08 20:25:49 +01:00
path_url=$YNH_APP_ARG_PATH
2019-01-28 19:15:11 +01:00
is_public=$YNH_APP_ARG_IS_PUBLIC
2019-03-23 06:05:30 +01:00
2019-01-28 19:15:11 +01:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2019-04-24 03:11:53 +02:00
ynh_print_info --message="Validating installation parameters..."
2019-01-28 19:15:11 +01:00
final_path=/var/www/$app
2019-04-24 03:11:53 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2019-01-28 19:15:11 +01:00
# Register (book) web path
2019-04-24 03:11:53 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2019-01-28 19:15:11 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2019-04-24 03:11:53 +02:00
ynh_print_info --message="Storing installation settings..."
2019-01-28 19:15:11 +01:00
2019-04-24 03:11:53 +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-28 19:15:11 +01:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Configuring firewall..."
2019-01-28 19:15:11 +01:00
2019-12-29 17:43:56 +01:00
# Find an available port
2019-05-15 01:57:52 +02:00
port=$(ynh_find_port --port=8095)
2019-04-24 03:11:53 +02:00
ynh_app_setting_set --app=$app --key=port --value=$port
2019-01-28 19:15:11 +01:00
2019-12-29 17:43:56 +01:00
# Optional: Expose this port publicly
# (N.B. : you only need to do this if the app actually needs to expose the port publicly.
# If you do this and the app doesn't actually need you are CREATING SECURITY HOLES IN THE SERVER !)
# Open the port
# ynh_exec_warn_less yunohost firewall allow --no-upnp TCP $port
2019-01-28 19:15:11 +01:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Installing dependencies..."
2019-01-28 19:15:11 +01:00
2019-03-14 00:35:51 +01:00
ynh_install_app_dependencies $pkg_dependencies
2019-05-15 01:57:52 +02:00
ynh_install_nodejs --nodejs_version="10"
2019-01-29 03:27:53 +01:00
2019-01-28 19:15:11 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Setting up source files..."
2019-01-28 19:15:11 +01:00
2019-04-24 03:11:53 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2019-01-28 19:15:11 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2019-04-24 03:11:53 +02:00
ynh_setup_source --dest_dir="$final_path"
2019-01-28 19:15:11 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-04-24 03:11:53 +02:00
ynh_print_info --message="Configuring nginx web server..."
2019-01-28 19:15:11 +01:00
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Configuring system user..."
2019-01-28 19:15:11 +01:00
# Create a system user
2019-05-15 01:57:52 +02:00
ynh_system_user_create --username="$app" --home_dir="$final_path"
2019-01-28 19:15:11 +01:00
#=================================================
# SPECIFIC SETUP
#=================================================
2019-02-02 00:34:04 +01:00
# CREATE LOG FOLDER
2019-01-28 19:15:11 +01:00
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Creating log folder..."
2019-01-28 19:15:11 +01:00
2019-02-02 00:34:04 +01:00
mkdir -p "/var/log/$app"
chown -R "$app":"$app" "/var/log/$app"
2019-02-02 20:47:00 +01:00
#=================================================
# CREATE DB FOLDER
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Creating DB folder..."
2019-02-02 20:47:00 +01:00
2019-02-09 00:42:18 +01:00
mkdir -p "$final_path/distbin-db"
2019-03-18 20:31:45 +01:00
mkdir -p "$final_path/distbin-db/activities"
mkdir -p "$final_path/distbin-db/inbox"
2019-02-02 20:47:00 +01:00
2019-02-02 00:34:04 +01:00
#=================================================
2019-05-15 01:57:52 +02:00
# INSTALLING DISTBIN
2019-02-02 00:34:04 +01:00
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Installing distin..."
2019-01-28 23:23:53 +01:00
2019-02-01 08:54:19 +01:00
chown -R "$app":"$app" "$final_path"
2019-05-15 01:57:52 +02:00
2019-01-28 21:17:29 +01:00
pushd $final_path
2019-02-02 21:20:25 +01:00
ynh_use_nodejs
2019-02-09 01:23:03 +01:00
sudo -u $app env PATH=$PATH npm install --ignore-scripts
2019-02-09 00:28:20 +01:00
sudo -u $app env PATH=$PATH npm run build
2019-02-09 02:27:26 +01:00
cp package* dist/
2019-01-28 21:17:29 +01:00
popd
2019-02-09 02:22:57 +01:00
pushd $final_path/dist
sudo -u $app env PATH=$PATH npm install --ignore-scripts --production
popd
2019-01-28 19:15:11 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Configuring a systemd service..."
2019-01-28 19:15:11 +01:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Modifying a config file..."
2019-01-28 19:15:11 +01:00
2019-12-29 17:43:56 +01:00
config="$final_path/.env"
cp "../conf/.env" "$config"
2019-03-21 12:00:19 +01:00
2019-03-20 00:41:35 +01:00
if [ "$path_url" == "/" ]
2019-03-20 00:29:35 +01:00
then
domain_uri="$domain"
else
domain_uri="$domain$path_url"
fi
2019-12-29 17:43:56 +01:00
ynh_replace_string --match_string="__NODEJS_PATH__" --replace_string="$nodejs_path" --target_file="$config"
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="$config"
ynh_replace_string --match_string="__DOMAIN_URI__" --replace_string="$domain_uri" --target_file="$config"
ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file="$config"
2019-01-31 20:33:07 +01:00
2019-01-28 19:15:11 +01:00
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Storing the config file checksum..."
2019-01-28 19:15:11 +01:00
# Calculate and store the config file checksum into the app settings
2019-12-29 17:43:56 +01:00
ynh_store_file_checksum --file="$config"
2019-01-28 19:15:11 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Securing files and directories..."
2019-01-28 19:15:11 +01:00
# Set permissions to app files
chown -R "$app":"$app" "$final_path"
2019-01-28 19:15:11 +01:00
#=================================================
# SETUP LOGROTATE
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Configuring log rotation..."
2019-01-28 19:15:11 +01:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
2019-12-29 17:43:56 +01:00
# INTEGRATE SERVICE IN YUNOHOST
2019-01-28 19:15:11 +01:00
#=================================================
2019-12-29 17:43:56 +01:00
ynh_print_info --message="Integrate service in YunoHost..."
2019-01-28 19:15:11 +01:00
2019-01-29 05:55:40 +01:00
yunohost service add $app --description "$app daemon for distbin" --log "/var/log/$app/$app.log"
2019-01-28 19:15:11 +01:00
2019-05-15 01:57:52 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_print_info --message="Starting a systemd service..."
2019-12-29 17:43:56 +01:00
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Started Distbin Service"
2019-05-15 01:57:52 +02:00
sleep 10
2019-01-28 19:15:11 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
2019-05-15 01:57:52 +02:00
ynh_print_info --message="Configuring SSOwat..."
2019-01-28 19:15:11 +01:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway.
2019-04-24 03:11:53 +02:00
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
2019-01-28 19:15:11 +01:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2019-04-24 03:11:53 +02:00
ynh_print_info --message="Reloading nginx web server..."
2019-01-28 19:15:11 +01:00
2019-05-15 01:57:52 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-11 04:34:08 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-04-24 03:11:53 +02:00
ynh_print_info --message="Installation of $app completed"