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

285 lines
9.6 KiB
Text
Raw Normal View History

#!/bin/bash
2015-09-28 22:13:34 +02:00
2018-01-16 17:09:27 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2018-01-16 17:09:27 +01:00
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
admin=$YNH_APP_ARG_ADMIN
2022-11-07 16:35:41 +01:00
phpversion=$YNH_PHP_VERSION
app=$YNH_APP_INSTANCE_NAME
2018-01-26 17:39:11 +01:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
ynh_script_progression --message="Validating installation parameters..." --weight=1
2018-01-26 17:39:11 +01:00
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2018-01-26 17:39:11 +01:00
# Register (book) web path
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=2
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=admin --value=$admin
ynh_app_setting_set --app=$app --key=version --value=$(ynh_app_upstream_version "../manifest.json")
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# INSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing dependencies..." --weight=1
ynh_install_app_dependencies $pkg_dependencies
2021-09-25 15:05:51 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Configuring system user..." --weight=2
# Create a system user
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# CREATE A MYSQL DATABASE
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Creating a MySQL database..." --weight=1
db_name=$(ynh_sanitize_dbid --db_name=$app)
db_user=$db_name
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name
ynh_mysql_execute_as_root --sql="ALTER DATABASE $db_name charset=utf8"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Setting up source files..." --weight=1
2022-11-07 16:35:41 +01:00
# Load the last available version
source upgrade.d/upgrade.last.sh
2023-10-02 14:12:56 +02:00
# Create an app.src for the last version of Dolibarr
2022-11-07 16:35:41 +01:00
cat > ../conf/app.src << EOF
SOURCE_URL=https://github.com/Dolibarr/dolibarr/archive/$next_version.tar.gz
SOURCE_SUM=$dolibarr_source_sha256
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.bz2
SOURCE_IN_SUBDIR=true
EOF
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2018-01-26 17:24:00 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Download source files..." --weight=70
2019-06-27 22:44:38 +02:00
ynh_setup_source --dest_dir="$final_path"
2017-05-18 20:42:22 +02:00
# Create necessary files
2019-06-27 22:44:38 +02:00
datadir=$final_path/documents
touch $final_path/htdocs/conf/conf.php
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring PHP-FPM" --weight=2
fpm_footprint="medium"
fpm_usage="medium"
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
# Create a dedicated php-fpm config
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
# Used by ynh_add_nginx_config
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2021-03-24 15:39:00 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# SPECIFIC SETUP
#=================================================
# PREPARE AND INSTALL APP
#=================================================
2021-09-25 15:05:51 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2021-09-25 14:22:01 +02:00
ynh_add_config --template="../conf/install.forced.php" --destination="$final_path/htdocs/install/install.forced.php"
#=================================================
# SETUP APPLICATION WITH CURL
#=================================================
2017-05-18 20:42:22 +02:00
# Set right permissions for curl install
chown -R $app: "$final_path"
2021-01-07 14:09:35 +01:00
# Set the app as temporarily public for cURL call
if ! ynh_permission_has_user --permission "main" --user="visitors"; then
ynh_permission_update --permission="main" --add="visitors"
fi
2021-01-07 14:09:35 +01:00
# Reload NGINX
ynh_systemd_action --service_name=nginx --action=reload
# Installation with curl
mkdir -p /var/log/$app/
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Finalizing installation..." --weight=1
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Generate fileconf" --weight=1
ynh_local_curl "/install/fileconf.php" \
"testpost=ok"
2022-03-09 09:52:28 +01:00
ynh_exec_fully_quiet sleep 5
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="installation - step 1" --weight=3
ynh_local_curl "/install/step1.php" \
2017-05-18 20:42:22 +02:00
"testpost=ok" \
2021-07-12 23:21:37 +02:00
"action=set" > /var/log/$app/install1.html
2022-03-09 09:52:28 +01:00
ynh_exec_fully_quiet sleep 5
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="installation - step 2 (may take a while)..." --weight=72
ynh_local_curl "/install/step2.php" \
"testpost=ok" \
2021-07-12 23:21:37 +02:00
"action=set" > /var/log/$app/install2.html
2017-05-18 20:42:22 +02:00
2022-03-09 09:52:28 +01:00
ynh_exec_fully_quiet sleep 5
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="installation - step 4" --weight=3
ynh_local_curl "/install/step4.php" \
2017-05-18 20:42:22 +02:00
"testpost=ok" \
2021-07-12 23:21:37 +02:00
"action=set" > /var/log/$app/install3.html
2022-03-09 09:52:28 +01:00
ynh_exec_fully_quiet sleep 5
# Generate a random password for the admin user (will be ignored because of LDAP)
password=$(ynh_string_random 8)
2017-05-18 20:42:22 +02:00
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="installation - step 5" --weight=4
ynh_local_curl "/install/step5.php" \
2017-05-18 20:42:22 +02:00
"testpost=ok" \
"action=set" \
"pass=$password" \
2021-07-12 23:21:37 +02:00
"pass_verif=$password" > /var/log/$app/install4.html
2022-03-09 09:52:28 +01:00
ynh_exec_fully_quiet sleep 5
2021-01-07 14:24:42 +01:00
ynh_script_progression --message="configuring LDAP" --weight=1
# Populate the LDAP parameters
ynh_mysql_connect_as --user=$db_name --password=$db_pwd --database=$db_name < ../conf/sql/ldap.sql
# Populate the database with YNH users.
ynh_mysql_connect_as --user=$db_name --password=$db_pwd --database=$db_name < ../conf/sql/ldap_user.sql
2017-05-07 15:35:48 +02:00
if php$phpversion $final_path/scripts/user/sync_users_ldap2dolibarr.php commitiferror --server=localhost -y; then
2021-01-07 14:24:42 +01:00
ynh_print_info --message="LDAP user update ok"
else
ynh_print_info --message="LDAP user update ended with error"
fi
2021-09-25 14:53:44 +02:00
# Remove the public access
ynh_permission_update --permission="main" --remove="visitors"
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2023-10-02 15:40:55 +02:00
ynh_script_progression --message="configuring config file" --weight=1
# Setup HTTP auth in conf
2019-06-27 22:44:38 +02:00
ynh_replace_string --match_string="dolibarr_main_authentication='dolibarr'" --replace_string="dolibarr_main_authentication='http'" --target_file="$final_path/htdocs/conf/conf.php"
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
# Calculate and store the config file checksum into the app settings
2019-06-27 22:44:38 +02:00
ynh_store_file_checksum --file="$final_path/htdocs/conf/conf.php"
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
ynh_script_progression --message="Configuring permissions..." --weight=1
# Set permissions on app files
2022-12-07 18:07:35 +01:00
if [ ! -f "$datadir/install.lock" ]; then
2022-11-30 08:31:35 +01:00
echo 'This is a lock file to prevent use of install pages (set with permission 440)' > "$datadir/install.lock"
chown $app:$app "$datadir/install.lock"
2022-12-07 18:07:35 +01:00
chmod 440 "$datadir/install.lock"
2022-11-30 08:31:35 +01:00
fi
2021-09-25 13:15:17 +02:00
chmod 750 "$final_path"
2021-09-25 13:16:23 +02:00
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2019-06-27 22:44:38 +02:00
chmod 644 "$final_path/htdocs/conf/conf.php"
mkdir -p "$datadir"
chown -R $app: "$datadir"
chmod go-w $datadir
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Configuring log rotation..." --weight=1
# Use logrotate to manage application logfile(s)
2019-06-27 22:44:38 +02:00
ynh_use_logrotate --logfile="$final_path/documents/dolibarr.log"
#=================================================
# SETUP SSOWAT
#=================================================
2021-02-09 17:19:21 +01:00
ynh_script_progression --message="Configuring permissions..." --weight=1
# Create the public space permission if needed
if ! ynh_permission_exists --permission "public_space"; then
ynh_permission_create --permission "public_space" --url "/public/" --allowed "visitors"
fi
#=================================================
# RELOAD NGINX
#=================================================
2021-01-07 14:24:42 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Installation of $app completed" --last