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-08-30 22:49:44 +02:00
ynh_app_setting_set --key=php_memory_limit --value=256M
2019-06-16 00:06:51 +02:00
#=================================================
# CREATE A MYSQL DATABASE
#=================================================
2024-08-30 22:49:44 +02:00
ynh_script_progression "Configuring $app's MySQL database..."
2017-04-24 04:16:02 +02:00
2024-08-30 22:49:44 +02:00
ynh_mysql_db_shell <<< "ALTER DATABASE $db_name charset=utf8"
2021-07-12 18:16:15 +02:00
2019-06-16 00:06:51 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-08-30 22:49:44 +02:00
ynh_script_progression "Setting up source files..."
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-26 00:03:30 +01:00
mkdir -p "$install_dir/documents"
2024-08-30 22:49:44 +02:00
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 750 "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
2024-03-26 00:01:00 +01:00
chmod go-w "$install_dir/documents"
2024-03-25 23:56:10 +01:00
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-08-30 22:49:44 +02:00
ynh_script_progression "Adding $app's configuration file..."
2022-11-07 16:57:00 +01:00
2024-08-30 22:49:44 +02:00
ynh_config_add --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-08-30 22:49:44 +02:00
ynh_script_progression "Adding system configurations related to $app..."
2024-03-25 21:26:07 +01:00
# Create a dedicated php-fpm config
2024-08-30 22:49:44 +02:00
ynh_config_add_phpfpm
2021-03-24 15:39:00 +01:00
# Create a dedicated nginx config
2024-08-30 22:49:44 +02:00
ynh_config_add_nginx
2019-06-16 00:06:51 +02:00
2024-03-25 21:26:07 +01:00
# Use logrotate to manage application logfile(s)
2024-08-30 22:49:44 +02:00
ynh_config_add_logrotate "$install_dir/documents/dolibarr.log"
2019-06-16 00:06:51 +02:00
#=================================================
# SETUP APPLICATION WITH CURL
#=================================================
2024-08-30 22:49:44 +02:00
ynh_script_progression "Configuring $app ..."
2019-06-16 00:06:51 +02:00
2024-03-25 23:40:09 +01:00
# Create necessary files
touch "$install_dir/htdocs/conf/conf.php"
2024-03-25 22:46:09 +01:00
# Set right permissions for curl install
2024-08-30 22:49:44 +02:00
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R "$app:" "$install_dir"
2024-03-25 22:51:54 +01:00
ynh_local_curl "/install/fileconf.php" "testpost=ok"
2024-08-30 22:49:44 +02:00
sleep 5
2022-03-09 09:52:28 +01:00
2024-03-25 22:51:54 +01:00
ynh_local_curl "/install/step1.php" "testpost=ok" "action=set"
2024-08-30 22:49:44 +02:00
sleep 5
2024-03-25 21:26:07 +01:00
2024-03-25 22:51:54 +01:00
ynh_local_curl "/install/step2.php" "testpost=ok" "action=set"
2024-08-30 22:49:44 +02:00
sleep 5
2022-03-09 09:52:28 +01:00
2024-03-25 22:51:54 +01:00
ynh_local_curl "/install/step4.php" "testpost=ok" "action=set"
2024-08-30 22:49:44 +02:00
sleep 5
2022-03-09 09:52:28 +01:00
2019-06-16 00:06:51 +02:00
# Generate a random password for the admin user (will be ignored because of LDAP)
2024-08-30 22:49:44 +02:00
password=$(ynh_string_random --length=8)
2024-03-25 22:51:54 +01:00
ynh_local_curl "/install/step5.php" "testpost=ok" "action=set" "pass=$password" "pass_verif=$password"
2024-08-30 22:49:44 +02:00
sleep 5
2022-03-09 09:52:28 +01:00
2024-03-25 23:52:00 +01:00
# Setup HTTP auth in conf
2024-08-30 22:49:44 +02:00
ynh_replace --file="$install_dir/htdocs/conf/conf.php" \
--match="dolibarr_main_authentication='dolibarr'" \
--replace="dolibarr_main_authentication='http'"
2024-03-25 23:52:00 +01:00
# Calculate and store the config file checksum into the app settings
2024-08-30 22:49:44 +02:00
ynh_store_file_checksum "$install_dir/htdocs/conf/conf.php"
2024-03-25 23:52:00 +01:00
chmod 644 "$install_dir/htdocs/conf/conf.php"
# Set permissions on app files
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"
fi
2024-08-30 22:49:44 +02:00
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R "$app:www-data" "$install_dir"
2024-03-25 23:56:10 +01:00
chown -R "$app:" "$install_dir/documents"
2024-03-25 23:52:00 +01:00
#=================================================
# SETUP LDAP
#=================================================
2024-08-30 22:49:44 +02:00
ynh_script_progression "Configuring LDAP for $app..."
2019-06-16 00:06:51 +02:00
2024-03-25 22:28:52 +01:00
# Populate the LDAP parameters
2024-08-30 22:49:44 +02:00
ynh_mysql_db_shell < ../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.
2024-08-30 22:49:44 +02:00
ynh_mysql_db_shell < ../conf/sql/ldap_user.sql
2019-06-16 00:06:51 +02:00
2024-08-30 22:49:44 +02:00
if "php$php_version" "$install_dir/scripts/user/sync_users_ldap2dolibarr.php" commitiferror --server=localhost -y; then
ynh_print_info "LDAP user update ok"
2024-03-25 22:40:48 +01:00
else
2024-08-30 22:49:44 +02:00
ynh_print_info "LDAP user update ended with error"
2024-03-25 22:40:48 +01:00
fi
2019-06-16 00:06:51 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2024-08-30 22:49:44 +02:00
ynh_script_progression "Installation of $app completed"