2017-04-24 04:16:02 +02:00
|
|
|
#!/bin/bash
|
2015-09-28 22:13:34 +02:00
|
|
|
|
2018-01-16 17:09:27 +01:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2024-03-25 21:26:07 +01:00
|
|
|
# INITIALIZE AND STORE SETTINGS
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2024-03-25 21:26:07 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=version --value=$(ynh_app_upstream_version)
|
2021-09-25 15:05:51 +02:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE A MYSQL DATABASE
|
|
|
|
#=================================================
|
2024-03-25 21:26:07 +01:00
|
|
|
ynh_script_progression --message="Creating $app's MySQL database..." --weight=1
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2021-07-12 18:16:15 +02:00
|
|
|
ynh_mysql_execute_as_root --sql="ALTER DATABASE $db_name charset=utf8"
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2024-03-25 21:26:07 +01:00
|
|
|
ynh_setup_source --source_id="main" --dest_dir="$install_dir"
|
2017-05-18 20:42:22 +02:00
|
|
|
|
2024-03-25 22:28:52 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-03-25 21:26:07 +01:00
|
|
|
# PREPARE AND INSTALL APP
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
2024-03-25 21:26:07 +01:00
|
|
|
ynh_script_progression --message="Adding $app's configuration file..." --weight=1
|
2022-11-07 16:57:00 +01:00
|
|
|
|
2024-03-25 21:26:07 +01:00
|
|
|
ynh_add_config --template="install.forced.php" --destination="$install_dir/htdocs/install/install.forced.php"
|
2021-03-24 15:39:00 +01:00
|
|
|
|
|
|
|
#=================================================
|
2024-03-25 21:26:07 +01:00
|
|
|
# SYSTEM CONFIGURATION
|
2021-03-24 15:39:00 +01:00
|
|
|
#=================================================
|
2024-03-25 21:26:07 +01:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated php-fpm config
|
2024-03-25 21:34:30 +01:00
|
|
|
ynh_add_fpm_config
|
2021-03-24 15:39:00 +01:00
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
2019-06-16 00:06:51 +02:00
|
|
|
|
2024-03-25 21:26:07 +01:00
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate --logfile="$install_dir/documents/dolibarr.log"
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP APPLICATION WITH CURL
|
|
|
|
#=================================================
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Finalizing installation..." --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
2024-03-25 22:28:52 +01:00
|
|
|
# Create necessary files
|
|
|
|
touch "$install_dir/htdocs/conf/conf.php"
|
2022-03-09 09:52:28 +01:00
|
|
|
|
2024-03-25 22:28:52 +01: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
|
2024-03-25 22:28:52 +01:00
|
|
|
ynh_local_curl "/install/step1.php" "testpost=ok" "action=set"
|
2022-03-09 09:52:28 +01:00
|
|
|
ynh_exec_fully_quiet sleep 5
|
2024-03-25 21:26:07 +01:00
|
|
|
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="installation - step 2 (may take a while)..." --weight=72
|
2024-03-25 22:28:52 +01:00
|
|
|
ynh_local_curl "/install/step2.php" "testpost=ok" "action=set"
|
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
|
2024-03-25 22:28:52 +01:00
|
|
|
ynh_local_curl "/install/step4.php" "testpost=ok" "action=set"
|
2022-03-09 09:52:28 +01:00
|
|
|
ynh_exec_fully_quiet sleep 5
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
# Generate a random password for the admin user (will be ignored because of LDAP)
|
|
|
|
password=$(ynh_string_random 8)
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="installation - step 5" --weight=4
|
2024-03-25 22:28:52 +01:00
|
|
|
ynh_local_curl "/install/step5.php" "testpost=ok" "action=set" "pass=$password" "pass_verif=$password"
|
2022-03-09 09:52:28 +01:00
|
|
|
ynh_exec_fully_quiet sleep 5
|
|
|
|
|
2024-03-25 22:28:52 +01:00
|
|
|
# Setup HTTP auth in conf
|
|
|
|
ynh_replace_string --match_string="dolibarr_main_authentication='dolibarr'" --replace_string="dolibarr_main_authentication='http'" --target_file="$install_dir/htdocs/conf/conf.php"
|
2019-06-16 00:06:51 +02:00
|
|
|
|
2024-03-25 22:28:52 +01:00
|
|
|
# Calculate and store the config file checksum into the app settings
|
|
|
|
ynh_store_file_checksum --file="$install_dir/htdocs/conf/conf.php"
|
|
|
|
chmod 644 "$install_dir/htdocs/conf/conf.php"
|
2017-05-07 15:35:48 +02:00
|
|
|
|
2024-03-25 22:28:52 +01:00
|
|
|
if [ ! -f "$install_dir/documents/install.lock" ]; then
|
|
|
|
echo 'This is a lock file to prevent use of install pages (set with permission 440)' > "$install_dir/documents/install.lock"
|
|
|
|
chown "$app:$app" "$install_dir/documents/install.lock"
|
|
|
|
chmod 440 "$install_dir/documents/install.lock"
|
2019-06-16 00:06:51 +02:00
|
|
|
fi
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2024-03-25 22:28:52 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2024-03-25 22:28:52 +01:00
|
|
|
mkdir -p "$install_dir/documents"
|
|
|
|
chown -R "$app:" "$install_dir/documents"
|
|
|
|
chmod go-w "$install_dir/documents"
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
2024-03-25 22:28:52 +01:00
|
|
|
# SETUP LDAP IN DATABASE
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
2024-03-25 22:28:52 +01:00
|
|
|
ynh_script_progression --message="Configuring LDAP" --weight=1
|
2019-06-16 00:06:51 +02:00
|
|
|
|
2024-03-25 22:28:52 +01:00
|
|
|
# Populate the LDAP parameters
|
|
|
|
ynh_mysql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" < ../conf/sql/ldap.sql
|
2019-06-16 00:06:51 +02:00
|
|
|
|
2024-03-25 22:28:52 +01:00
|
|
|
# Populate the database with YNH users.
|
|
|
|
ynh_mysql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" < ../conf/sql/ldap_user.sql
|
2019-06-16 00:06:51 +02:00
|
|
|
|
2024-03-25 22:28:52 +01:00
|
|
|
if "php$phpversion" "$install_dir/scripts/user/sync_users_ldap2dolibarr.php" commitiferror --server=localhost -y; then
|
|
|
|
ynh_print_warn --message="LDAP user update ended with error"
|
2022-11-30 08:31:35 +01:00
|
|
|
fi
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-07-05 22:34:21 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|