mirror of
https://github.com/octoleo/docker-joomla.git
synced 2024-11-08 05:45:22 +00:00
Add install extensions via JOOMLA_EXTENSIONS_URLS and JOOMLA_EXTENSIONS_PATHS.
This commit is contained in:
parent
d5366538dc
commit
2df41cc0f6
@ -1,135 +0,0 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
if [ -n "$JOOMLA_DB_PASSWORD_FILE" ] && [ -f "$JOOMLA_DB_PASSWORD_FILE" ]; then
|
||||
JOOMLA_DB_PASSWORD=$(cat "$JOOMLA_DB_PASSWORD_FILE")
|
||||
fi
|
||||
|
||||
if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
uid="$(id -u)"
|
||||
gid="$(id -g)"
|
||||
if [ "$uid" = '0' ]; then
|
||||
case "$1" in
|
||||
apache2*)
|
||||
user="${APACHE_RUN_USER:-www-data}"
|
||||
group="${APACHE_RUN_GROUP:-www-data}"
|
||||
|
||||
# strip off any '#' symbol ('#1000' is valid syntax for Apache)
|
||||
pound='#'
|
||||
user="${user#$pound}"
|
||||
group="${group#$pound}"
|
||||
|
||||
# set user if not exist
|
||||
if ! id "$user" &>/dev/null; then
|
||||
# get the user name
|
||||
: "${USER_NAME:=www-data}"
|
||||
# change the user name
|
||||
[[ "$USER_NAME" != "www-data" ]] &&
|
||||
usermod -l "$USER_NAME" www-data &&
|
||||
groupmod -n "$USER_NAME" www-data
|
||||
# update the user ID
|
||||
groupmod -o -g "$user" "$USER_NAME"
|
||||
# update the user-group ID
|
||||
usermod -o -u "$group" "$USER_NAME"
|
||||
fi
|
||||
;;
|
||||
*) # php-fpm
|
||||
user='www-data'
|
||||
group='www-data'
|
||||
;;
|
||||
esac
|
||||
else
|
||||
user="$uid"
|
||||
group="$gid"
|
||||
fi
|
||||
|
||||
if [ -n "$MYSQL_PORT_3306_TCP" ]; then
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
JOOMLA_DB_HOST='mysql'
|
||||
else
|
||||
echo >&2 "warning: both JOOMLA_DB_HOST and MYSQL_PORT_3306_TCP found"
|
||||
echo >&2 " Connecting to JOOMLA_DB_HOST ($JOOMLA_DB_HOST)"
|
||||
echo >&2 " instead of the linked mysql container"
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -z "$JOOMLA_DB_HOST" ]; then
|
||||
echo >&2 "error: missing JOOMLA_DB_HOST and MYSQL_PORT_3306_TCP environment variables"
|
||||
echo >&2 " Did you forget to --link some_mysql_container:mysql or set an external db"
|
||||
echo >&2 " with -e JOOMLA_DB_HOST=hostname:port?"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# If the DB user is 'root' then use the MySQL root password env var
|
||||
: "${JOOMLA_DB_USER:=root}"
|
||||
if [ "$JOOMLA_DB_USER" = 'root' ]; then
|
||||
: ${JOOMLA_DB_PASSWORD:=$MYSQL_ENV_MYSQL_ROOT_PASSWORD}
|
||||
fi
|
||||
: "${JOOMLA_DB_NAME:=joomla}"
|
||||
|
||||
if [ -z "$JOOMLA_DB_PASSWORD" ] && [ "$JOOMLA_DB_PASSWORD_ALLOW_EMPTY" != 'yes' ]; then
|
||||
echo >&2 "error: missing required JOOMLA_DB_PASSWORD environment variable"
|
||||
echo >&2 " Did you forget to -e JOOMLA_DB_PASSWORD=... ?"
|
||||
echo >&2
|
||||
echo >&2 " (Also of interest might be JOOMLA_DB_USER and JOOMLA_DB_NAME.)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -e index.php ] && [ ! -e libraries/src/Version.php ]; then
|
||||
# if the directory exists and Joomla doesn't appear to be installed AND the permissions of it are root:root, let's chown it (likely a Docker-created directory)
|
||||
if [ "$uid" = '0' ] && [ "$(stat -c '%u:%g' .)" = '0:0' ]; then
|
||||
chown "$user:$group" .
|
||||
fi
|
||||
|
||||
echo >&2 "Joomla not found in $PWD - copying now..."
|
||||
if [ "$(ls -A)" ]; then
|
||||
echo >&2 "WARNING: $PWD is not empty - press Ctrl+C now if this is an error!"
|
||||
(
|
||||
set -x
|
||||
ls -A
|
||||
sleep 10
|
||||
)
|
||||
fi
|
||||
# use full commands
|
||||
# for clearer intent
|
||||
sourceTarArgs=(
|
||||
--create
|
||||
--file -
|
||||
--directory /usr/src/joomla
|
||||
--one-file-system
|
||||
--owner "$user" --group "$group"
|
||||
)
|
||||
targetTarArgs=(
|
||||
--extract
|
||||
--file -
|
||||
)
|
||||
if [ "$uid" != '0' ]; then
|
||||
# avoid "tar: .: Cannot utime: Operation not permitted" and "tar: .: Cannot change mode to rwxr-xr-x: Operation not permitted"
|
||||
targetTarArgs+=(--no-overwrite-dir)
|
||||
fi
|
||||
|
||||
tar "${sourceTarArgs[@]}" . | tar "${targetTarArgs[@]}"
|
||||
|
||||
if [ ! -e .htaccess ]; then
|
||||
# NOTE: The "Indexes" option is disabled in the php:apache base image so remove it as we enable .htaccess
|
||||
sed -r 's/^(Options -Indexes.*)$/#\1/' htaccess.txt >.htaccess
|
||||
chown "$user":"$group" .htaccess
|
||||
fi
|
||||
|
||||
echo >&2 "Complete! Joomla has been successfully copied to $PWD"
|
||||
fi
|
||||
|
||||
# Ensure the MySQL Database is created
|
||||
php /makedb.php "$JOOMLA_DB_HOST" "$JOOMLA_DB_USER" "$JOOMLA_DB_PASSWORD" "$JOOMLA_DB_NAME" "${JOOMLA_DB_TYPE:-mysqli}"
|
||||
|
||||
echo >&2 "========================================================================"
|
||||
echo >&2
|
||||
echo >&2 "This server is now configured to run Joomla!"
|
||||
echo >&2
|
||||
echo >&2 "NOTE: You will need your database server address, database name,"
|
||||
echo >&2 "and database user credentials to install Joomla."
|
||||
echo >&2
|
||||
echo >&2 "========================================================================"
|
||||
fi
|
||||
|
||||
exec "$@"
|
@ -179,6 +179,63 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
return 1
|
||||
}
|
||||
|
||||
# Function to validate URLs
|
||||
joomla_validate_url() {
|
||||
if [[ $1 =~ ^http(s)?://[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}(/.*)?$ ]]; then
|
||||
return 0
|
||||
else
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
# Function to validate file path
|
||||
joomla_validate_path() {
|
||||
if [[ -f $1 ]]; then
|
||||
return 0
|
||||
else
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
# Function to split values by semicolon
|
||||
joomla_get_array_by_semicolon() {
|
||||
local input=$1 # The input string to be split
|
||||
local -n arr=$2 # The array to store the split values (passed by reference)
|
||||
local old_IFS=$IFS # Save the original IFS value
|
||||
# shellcheck disable=SC2034
|
||||
# passed by reference
|
||||
IFS=';' read -ra arr <<< "$input" # Split the input by semicolon and store in array
|
||||
IFS=$old_IFS # Restore the original IFS value
|
||||
}
|
||||
|
||||
# Function to install extension from URL
|
||||
joomla_install_extension_via_url() {
|
||||
local url=$1
|
||||
if joomla_validate_url "$url"; then
|
||||
if php cli/joomla.php extension:install --url "$url" --no-interaction; then
|
||||
echo >&2 "Info: Successfully installed $url"
|
||||
else
|
||||
echo >&2 "Error: Failed to install $url"
|
||||
fi
|
||||
else
|
||||
echo >&2 "Error: Invalid URL: $url"
|
||||
fi
|
||||
}
|
||||
|
||||
# Function to install extension from path
|
||||
joomla_install_extension_via_path() {
|
||||
local path=$1
|
||||
if joomla_validate_path "$path"; then
|
||||
if php cli/joomla.php extension:install --path "$path" --no-interaction; then
|
||||
echo >&2 "Info: Successfully installed $path"
|
||||
else
|
||||
echo >&2 "Error: Failed to install $path"
|
||||
fi
|
||||
else
|
||||
echo >&2 "Error: Invalid Path: $path"
|
||||
fi
|
||||
}
|
||||
|
||||
# if the directory exists and we can auto deploy
|
||||
if [ -d installation ] && [ -e installation/joomla.php ] && can_auto_deploy; then
|
||||
# use full commands
|
||||
@ -208,6 +265,22 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
|
||||
echo >&2
|
||||
echo >&2 "This server is now configured to run Joomla!"
|
||||
|
||||
# Install any extensions found in the extensions urls env
|
||||
if [[ -n "${JOOMLA_EXTENSIONS_URLS}" && "${#JOOMLA_EXTENSIONS_URLS}" -gt 2 ]]; then
|
||||
joomla_get_array_by_semicolon "$JOOMLA_EXTENSIONS_URLS" J_E_URLS
|
||||
for extension_url in "${J_E_URLS[@]}"; do
|
||||
joomla_install_extension_via_url "$extension_url"
|
||||
done
|
||||
fi
|
||||
|
||||
# Install any extensions found in the extensions paths env
|
||||
if [[ -n "${JOOMLA_EXTENSIONS_PATHS}" && "${#JOOMLA_EXTENSIONS_PATHS}" -gt 2 ]]; then
|
||||
joomla_get_array_by_semicolon "$JOOMLA_EXTENSIONS_PATHS" J_E_PATHS
|
||||
for extension_path in "${J_E_PATHS[@]}"; do
|
||||
joomla_install_extension_via_path "$extension_path"
|
||||
done
|
||||
fi
|
||||
|
||||
# fix the configuration.php ownership
|
||||
if [ "$uid" = '0' ] && [ "$(stat -c '%u:%g' configuration.php)" != "$user:$group" ]; then
|
||||
# Set configuration to correct owner
|
||||
|
Loading…
Reference in New Issue
Block a user