#!/bin/bash # This script is run when the Docker web container is started. # It is embedded into the Docker image of dolibarr/dolibarr. # # usage: get_env_value VAR [DEFAULT] # ie: get_env_value 'XYZ_DB_PASSWORD' 'example' # (will allow for "$XYZ_DB_PASSWORD_FILE" to fill in the value of # "$XYZ_DB_PASSWORD" from a file, especially for Docker's secrets feature) function get_env_value() { local varName="${1}" local fileVarName="${varName}_FILE" local defaultValue="${2:-}" if [ "${!varName:-}" ] && [ "${!fileVarName:-}" ]; then echo >&2 "error: both ${varName} and ${fileVarName} are set (but are exclusive)" exit 1 fi local value="${defaultValue}" if [ "${!varName:-}" ]; then value="${!varName}" elif [ "${!fileVarName:-}" ]; then value="$(< "${!fileVarName}")" fi echo ${value} exit 0 } function initDolibarr() { local CURRENT_UID=$(id -u www-data) local CURRENT_GID=$(id -g www-data) usermod -u ${WWW_USER_ID} www-data groupmod -g ${WWW_GROUP_ID} www-data if [[ ! -d /var/www/documents ]]; then echo "[INIT] => create volume directory /var/www/documents ..." mkdir -p /var/www/documents fi echo "[INIT] => update PHP Config ..." cat > ${PHP_INI_DIR}/conf.d/dolibarr-php.ini << EOF date.timezone = ${PHP_INI_DATE_TIMEZONE} sendmail_path = /usr/sbin/sendmail -t -i memory_limit = ${PHP_INI_MEMORY_LIMIT} upload_max_filesize = ${PHP_INI_UPLOAD_MAX_FILESIZE} post_max_size = ${PHP_INI_POST_MAX_SIZE} allow_url_fopen = ${PHP_INI_ALLOW_URL_FOPEN} session.use_strict_mode = 1 disable_functions = pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,passthru,shell_exec,system,proc_open,popen EOF if [[ ! -f /var/www/html/conf/conf.php ]]; then echo "[INIT] => update Dolibarr Config ..." cat > /var/www/html/conf/conf.php << EOF update Dolibarr Config with instance unique id ..." echo "\$dolibarr_main_instance_unique_id='${DOLI_INSTANCE_UNIQUE_ID}';" >> /var/www/html/conf/conf.php fi if [[ ${DOLI_AUTH} =~ .*ldap.* ]]; then echo "[INIT] => update Dolibarr Config with LDAP entries ..." cat >> /var/www/html/conf/conf.php << EOF \$dolibarr_main_auth_ldap_host='${DOLI_LDAP_HOST}'; \$dolibarr_main_auth_ldap_port='${DOLI_LDAP_PORT}'; \$dolibarr_main_auth_ldap_version='${DOLI_LDAP_VERSION}'; \$dolibarr_main_auth_ldap_servertype='${DOLI_LDAP_SERVER_TYPE}'; \$dolibarr_main_auth_ldap_login_attribute='${DOLI_LDAP_LOGIN_ATTRIBUTE}'; \$dolibarr_main_auth_ldap_dn='${DOLI_LDAP_DN}'; \$dolibarr_main_auth_ldap_filter='${DOLI_LDAP_FILTER}'; \$dolibarr_main_auth_ldap_admin_login='${DOLI_LDAP_BIND_DN}'; \$dolibarr_main_auth_ldap_admin_pass='${DOLI_LDAP_BIND_PASS}'; \$dolibarr_main_auth_ldap_debug='${DOLI_LDAP_DEBUG}'; EOF fi fi echo "[INIT] => update ownership for file in Dolibarr Config ..." chown www-data:www-data /var/www/html/conf/conf.php if [[ ${DOLI_DB_TYPE} == "pgsql" && ! -f /var/www/documents/install.lock ]]; then chmod 600 /var/www/html/conf/conf.php else chmod 400 /var/www/html/conf/conf.php fi if [[ ${CURRENT_UID} -ne ${WWW_USER_ID} || ${CURRENT_GID} -ne ${WWW_GROUP_ID} ]]; then # Refresh file ownership cause it has changed echo "[INIT] => As UID / GID have changed from default, update ownership for files in /var/ww ..." chown -R www-data:www-data /var/www else # Reducing load on init : change ownership only for volumes declared in docker echo "[INIT] => update ownership for files in /var/www/documents ..." chown -R www-data:www-data /var/www/documents fi } function waitForDataBase() { r=1 while [[ ${r} -ne 0 ]]; do mysql -u ${DOLI_DB_USER} --protocol tcp -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} --connect-timeout=5 -e "status" > /dev/null 2>&1 r=$? if [[ ${r} -ne 0 ]]; then echo "Waiting that SQL database is up ..." sleep 2 fi done } function lockInstallation() { touch /var/www/documents/install.lock chown www-data:www-data /var/www/documents/install.lock chmod 400 /var/www/documents/install.lock } function runScripts() { if [ -d /var/www/scripts/$1 ] ; then for file in /var/www/scripts/$1/*; do [ ! -f $file ] && continue # If extension is not in PHP SQL SH, we loop isExec=$(echo "PHP SQL SH" | grep -wio ${file##*.}) [ -z "$isExec" ] && continue echo "Importing custom ${isExec} from `basename ${file}` ..." if [ "$isExec" == "SQL" ] ; then sed -i 's/--.*//g;' ${file} mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} < ${file} > /dev/null 2>&1 elif [ "$isExec" == "PHP" ] ; then php $file elif [ "$isExec" == "SH" ] ; then /bin/bash $file fi done fi } # Function called to initialize the database (creation of tables and init data) function initializeDatabase() { for fileSQL in /var/www/html/install/mysql/tables/*.sql; do if [[ ${fileSQL} != *.key.sql ]]; then echo "Importing table from `basename ${fileSQL}` ..." sed -i 's/--.*//g;' ${fileSQL} # remove all comment mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} < ${fileSQL} fi done for fileSQL in /var/www/html/install/mysql/tables/*.key.sql; do echo "Importing table key from `basename ${fileSQL}` ..." sed -i 's/--.*//g;' ${fileSQL} mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} < ${fileSQL} > /dev/null 2>&1 done for fileSQL in /var/www/html/install/mysql/functions/*.sql; do echo "Importing `basename ${fileSQL}` ..." sed -i 's/--.*//g;' ${fileSQL} mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} < ${fileSQL} > /dev/null 2>&1 done for fileSQL in /var/www/html/install/mysql/data/*.sql; do if [[ $fileSQL =~ llx_accounting_account_ ]]; then echo "Do not import data from `basename ${fileSQL}` ..." continue fi echo "Importing data from `basename ${fileSQL}` ..." sed -i 's/--.*//g;' ${fileSQL} mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} < ${fileSQL} > /dev/null 2>&1 done echo "Create SuperAdmin account ..." pass_crypted=`echo -n ${DOLI_ADMIN_PASSWORD} | md5sum | awk '{print $1}'` mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} -e "INSERT INTO llx_user (entity, login, pass_crypted, lastname, admin, statut) VALUES (0, '${DOLI_ADMIN_LOGIN}', '${pass_crypted}', 'SuperAdmin', 1, 1);" > /dev/null 2>&1 echo "Set some default const ..." mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} -e "DELETE FROM llx_const WHERE name='MAIN_VERSION_LAST_INSTALL';" > /dev/null 2>&1 mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} -e "DELETE FROM llx_const WHERE name='MAIN_NOT_INSTALLED';" > /dev/null 2>&1 mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} -e "DELETE FROM llx_const WHERE name='MAIN_LANG_DEFAULT';" > /dev/null 2>&1 mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} -e "INSERT INTO llx_const(name,value,type,visible,note,entity) values('MAIN_VERSION_LAST_INSTALL', '${DOLI_VERSION}', 'chaine', 0, 'Dolibarr version when install', 0);" > /dev/null 2>&1 mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} -e "INSERT INTO llx_const(name,value,type,visible,note,entity) VALUES ('MAIN_LANG_DEFAULT', 'auto', 'chaine', 0, 'Default language', 1);" > /dev/null 2>&1 mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} -e "INSERT INTO llx_const(name,value,type,visible,note,entity) VALUES ('SYSTEMTOOLS_MYSQLDUMP', '/usr/bin/mysqldump', 'chaine', 0, '', 0);" > /dev/null 2>&1 if [[ ${DOLI_INIT_DEMO} -eq 1 ]]; then mkdir -p /var/www/dev/initdemo/ > /var/www/documents/initdemo.log versiondemo=`echo "${DOLI_VERSION}" | sed "s/^\([0-9]*\.[0-9]*\).*/\1.0/"` echo "Get demo data from file https://raw.githubusercontent.com/Dolibarr/dolibarr/${DOLI_VERSION}/dev/initdemo/mysqldump_dolibarr_$versiondemo.sql ..." curl -fLSs -o /var/www/dev/initdemo/initdemo.sql https://raw.githubusercontent.com/Dolibarr/dolibarr/${DOLI_VERSION}/dev/initdemo/mysqldump_dolibarr_$versiondemo.sql for fileSQL in /var/www/dev/initdemo/*.sql; do echo "Found demo data file, so we first drop table llx_accounting_system ..." echo "mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} -e \"DROP TABLE llx_accounting_account\" >> /var/www/documents/initdemo.log 2>&1" echo "mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} -e \"DROP TABLE llx_accounting_system\" >> /var/www/documents/initdemo.log 2>&1" mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} -e "DROP TABLE llx_accounting_system" >> /var/www/documents/initdemo.log 2>&1 echo "Then we load demo data ${fileSQL} ..." sed -i 's/--.*//g;' ${fileSQL} echo "mysql -u ${DOLI_DB_USER} -pxxxxxxx -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} < ${fileSQL} >> /var/www/documents/initdemo.log 2>&1" mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} < ${fileSQL} >> /var/www/documents/initdemo.log 2>&1 done fi echo "Enable user module ..." php /var/www/scripts/docker-init.php # Run init scripts runScripts "docker-init.d" # Update ownership after initialisation of modules chown -R www-data:www-data /var/www/documents } function migrateDatabase() { TARGET_VERSION="$(echo ${DOLI_VERSION} | cut -d. -f1).$(echo ${DOLI_VERSION} | cut -d. -f2).0" echo "Schema update is required ..." echo "Dumping Database into /var/www/documents/dump.sql ..." mysqldump -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} > /var/www/documents/dump.sql r=${?} if [[ ${r} -ne 0 ]]; then echo "Dump failed ... Aborting migration ..." return ${r} fi echo "Dump done ... Starting Migration ..." echo "" > /var/www/documents/migration_error.html pushd /var/www/htdocs/install > /dev/null php upgrade.php ${INSTALLED_VERSION} ${TARGET_VERSION} >> /var/www/documents/migration_error.html 2>&1 && \ php upgrade2.php ${INSTALLED_VERSION} ${TARGET_VERSION} >> /var/www/documents/migration_error.html 2>&1 && \ php step5.php ${INSTALLED_VERSION} ${TARGET_VERSION} >> /var/www/documents/migration_error.html 2>&1 r=$? popd > /dev/null if [[ ${r} -ne 0 ]]; then echo "Migration failed ... Restoring DB ... check file /var/www/documents/migration_error.html for more info on error ..." mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} < /var/www/documents/dump.sql echo "DB Restored ..." return ${r} else echo "Migration successful ... Enjoy !!" fi return 0 } function run() { initDolibarr echo "Current Version is : ${DOLI_VERSION}" # If install of mysql database (and not install of cron) is requested if [[ ${DOLI_INSTALL_AUTO} -eq 1 && ${DOLI_CRON} -ne 1 && ${DOLI_DB_TYPE} != "pgsql" ]]; then echo "DOLI_INSTALL_AUTO is on, so we check to initialize or upgrade mariadb database" # If install.lock does not exists, we launch the initializeDataze if [[ ! -f /var/www/documents/install.lock ]]; then waitForDataBase mysql -u ${DOLI_DB_USER} -p${DOLI_DB_PASSWORD} -h ${DOLI_DB_HOST} -P ${DOLI_DB_HOST_PORT} ${DOLI_DB_NAME} -e "SELECT Q.LAST_INSTALLED_VERSION FROM (SELECT INET_ATON(CONCAT(value, REPEAT('.0', 3 - CHAR_LENGTH(value) + CHAR_LENGTH(REPLACE(value, '.', ''))))) as VERSION_ATON, value as LAST_INSTALLED_VERSION FROM llx_const WHERE name IN ('MAIN_VERSION_LAST_INSTALL', 'MAIN_VERSION_LAST_UPGRADE') and entity=0) Q ORDER BY VERSION_ATON DESC LIMIT 1" > /tmp/lastinstall.result 2>&1 r=$? if [[ ${r} -ne 0 ]]; then initializeDatabase else INSTALLED_VERSION=`grep -v LAST_INSTALLED_VERSION /tmp/lastinstall.result` echo "Last installed Version is : ${INSTALLED_VERSION}" if [[ "$(echo ${INSTALLED_VERSION} | cut -d. -f1)" -lt "$(echo ${DOLI_VERSION} | cut -d. -f1)" ]]; then migrateDatabase else echo "Schema update is not required ... Enjoy !!" fi fi if [[ ${DOLI_VERSION} != "develop" ]]; then lockInstallation fi else echo "File /var/www/documents/install.lock exists so we cancel database init" fi fi # Run scripts before starting runScripts "before-starting.d" } DOLI_DB_USER=$(get_env_value 'DOLI_DB_USER' 'doli') DOLI_DB_PASSWORD=$(get_env_value 'DOLI_DB_PASSWORD' 'doli_pass') DOLI_ADMIN_LOGIN=$(get_env_value 'DOLI_ADMIN_LOGIN' 'admin') DOLI_ADMIN_PASSWORD=$(get_env_value 'DOLI_ADMIN_PASSWORD' 'admin') DOLI_CRON_KEY=$(get_env_value 'DOLI_CRON_KEY' '') DOLI_CRON_USER=$(get_env_value 'DOLI_CRON_USER' '') DOLI_INSTANCE_UNIQUE_ID=$(get_env_value 'DOLI_INSTANCE_UNIQUE_ID' '') run set -e if [[ ${DOLI_CRON} -eq 1 ]]; then echo "PATH=\$PATH:/usr/local/bin" > /etc/cron.d/dolibarr echo "*/5 * * * * root /bin/su www-data -s /bin/sh -c '/var/www/scripts/cron/cron_run_jobs.php ${DOLI_CRON_KEY} ${DOLI_CRON_USER}' > /proc/1/fd/1 2> /proc/1/fd/2" >> /etc/cron.d/dolibarr cron -f exit 0 fi if [ "${1#-}" != "$1" ]; then set -- apache2-foreground "$@" fi exec "$@"