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

204 lines
7.4 KiB
Text
Raw Normal View History

2021-05-28 08:44:53 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_clean_setup () {
2022-06-21 03:15:06 +02:00
ynh_clean_check_starting
}
2021-05-28 08:44:53 +02:00
# Exit if an error occurs during the execution of the script
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_abort_if_errors
2021-05-28 08:44:53 +02:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2023-11-21 20:03:22 +01:00
#REMOVEME? domain=$YNH_APP_ARG_DOMAIN
path="/"
#REMOVEME? is_public=$YNH_APP_ARG_IS_PUBLIC
2021-05-28 08:44:53 +02:00
2023-11-21 20:03:22 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2021-05-28 08:44:53 +02:00
2022-06-21 03:15:06 +02:00
jwt_secret=$(ynh_string_random --length=20)
2021-05-28 08:44:53 +02:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_script_progression --message="Validating installation parameters..." --weight=1
2021-05-28 08:44:53 +02:00
2022-01-05 21:56:33 +01:00
# Stop if architecture is 32-bit ARM
case $YNH_ARCH in
arm|armhf) ynh_die --message="Sorry, your architecture $YNH_ARCH is not supported by NocoDB. Aborting.";;
*) ;;
esac
2023-11-21 20:03:22 +01:00
#REMOVEME? install_dir=/opt/yunohost/$app
#REMOVEME? test ! -e "$install_dir" || ynh_die --message="This path already contains a folder"
2021-05-28 08:44:53 +02:00
# Register (book) web path
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_webpath_register --app=$app --domain=$domain --path=$path
2021-05-28 08:44:53 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_script_progression --message="Storing installation settings..." --weight=1
2021-05-28 08:44:53 +02:00
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_app_setting_set --app=$app --key=domain --value=$domain
#REMOVEME? ynh_app_setting_set --app=$app --key=path --value=$path
2022-06-21 03:15:06 +02:00
ynh_app_setting_set --app=$app --key=jwt_secret --value=$jwt_secret
2021-05-28 08:44:53 +02:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_script_progression --message="Finding an available port..." --weight=1
2021-05-28 08:44:53 +02:00
# Find an available port
2023-11-21 20:03:22 +01:00
#REMOVEME? port=$(ynh_find_port --port=8095)
#REMOVEME? ynh_app_setting_set --app=$app --key=port --value=$port
2021-05-28 08:44:53 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_script_progression --message="Installing dependencies..." --weight=2
2021-05-28 08:44:53 +02:00
ynh_install_nodejs --nodejs_version=$nodejs_version
#=================================================
# CREATE DEDICATED USER
#=================================================
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_script_progression --message="Configuring system user..." --weight=1
2021-05-28 08:44:53 +02:00
# Create a system user
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
2021-05-28 08:44:53 +02:00
#=================================================
# CREATE A MYSQL DATABASE
#=================================================
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_script_progression --message="Creating a MySQL database..." --weight=1
2021-05-28 08:44:53 +02:00
2023-11-21 20:03:22 +01:00
#REMOVEME? db_name=$(ynh_sanitize_dbid --db_name=$app)
#REMOVEME? db_user=$db_name
#REMOVEME? ynh_app_setting_set --app=$app --key=db_name --value=$db_name
#REMOVEME? ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name
2021-05-28 08:44:53 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Setting up source files..." --weight=1
2021-05-28 08:44:53 +02:00
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_app_setting_set --app=$app --key=install_dir --value=$install_dir
2021-05-28 08:44:53 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-11-21 20:03:22 +01:00
ynh_setup_source --dest_dir="$install_dir"
2021-05-28 08:44:53 +02:00
2023-11-21 20:03:22 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-05-28 08:44:53 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2021-05-28 08:44:53 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SPECIFIC SETUP
#=================================================
# INSTALL NOCODB
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Installing NocoDB..." --weight=5
2021-05-28 08:44:53 +02:00
ynh_use_nodejs
2023-11-21 20:03:22 +01:00
pushd $install_dir
if [ $YNH_ARCH = "arm64" ]; then
ynh_print_info --message="Retrieving and building OracleDB for ARM64..."
ynh_exec_warn_less ynh_exec_as $app git clone --recursive https://github.com/oracle/node-oracledb.git oracledb
2022-10-24 22:24:45 +02:00
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH NODE_ENV="production" $ynh_npm install ./oracledb
ynh_print_info --message="...Done! Installing NocoDB now..."
fi
2023-01-28 17:41:37 +01:00
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH NODE_ENV="production" $ynh_npm install --save nocodb@$(ynh_app_upstream_version)
2021-05-28 08:44:53 +02:00
popd
#=================================================
# ADD A CONFIGURATION
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2021-05-28 08:44:53 +02:00
2023-11-21 20:03:22 +01:00
ynh_add_config --template="env" --destination="$install_dir/.env"
2021-05-28 08:44:53 +02:00
2023-11-21 20:03:22 +01:00
chmod 400 "$install_dir/.env"
chown $app:$app "$install_dir/.env"
2021-05-28 08:44:53 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=1
2021-05-28 08:44:53 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Configuring log rotation..." --weight=1
2021-05-28 08:44:53 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-05-28 08:44:53 +02:00
2021-09-27 20:17:20 +02:00
yunohost service add $app --description="$app daemon, turns any database into a smart-spreadsheet" --log="/var/log/$app/$app.log"
2021-05-28 08:44:53 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-05-28 08:44:53 +02:00
# Start a systemd service
2023-07-29 20:07:50 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" --line_match="application successfully started"
2021-05-28 08:44:53 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_script_progression --message="Configuring permissions..." --weight=1
2021-05-28 08:44:53 +02:00
# Make app public if necessary
2023-11-21 20:03:22 +01:00
#REMOVEME? if [ $is_public -eq 1 ]
2021-05-28 08:44:53 +02:00
then
# Everyone can access the app.
# The "main" permission is automatically created before the install script.
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_permission_update --permission="main" --add="visitors"
2021-05-28 08:44:53 +02:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-05-28 08:44:53 +02:00
2023-11-21 20:03:22 +01:00
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
2021-05-28 08:44:53 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Installation of $app completed" --last