mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-29 17:18:51 +00:00
233 lines
8.8 KiB
Bash
Executable File
233 lines
8.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# NOTE: Parsing curl to tac to circumnvent "failed writing body"
|
|
# https://stackoverflow.com/questions/16703647/why-curl-return-and-error-23-failed-writing-body
|
|
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
SCRIPT_PATH="$( cd "$(dirname "$0")" && pwd -P )"
|
|
DVLBOX_PATH="$( cd "${SCRIPT_PATH}/../.." && pwd -P )"
|
|
# shellcheck disable=SC1090
|
|
. "${SCRIPT_PATH}/../scripts/.lib.sh"
|
|
|
|
#RETRIES=10
|
|
DISABLED_VERSIONS=("8.0")
|
|
|
|
|
|
echo
|
|
echo "# --------------------------------------------------------------------------------------------------"
|
|
echo "# [Vendor] phpPgAdmin"
|
|
echo "# --------------------------------------------------------------------------------------------------"
|
|
echo
|
|
|
|
|
|
# -------------------------------------------------------------------------------------------------
|
|
# Pre-check
|
|
# -------------------------------------------------------------------------------------------------
|
|
|
|
PHP_VERSION="$( get_php_version "${DVLBOX_PATH}" )"
|
|
if [[ ${DISABLED_VERSIONS[*]} =~ ${PHP_VERSION} ]]; then
|
|
printf "[SKIP] Skipping all checks for PHP %s\\n" "${PHP_VERSION}"
|
|
exit 0
|
|
fi
|
|
|
|
|
|
# -------------------------------------------------------------------------------------------------
|
|
# ENTRYPOINT
|
|
# -------------------------------------------------------------------------------------------------
|
|
|
|
###
|
|
### Get required env values
|
|
###
|
|
HOST_PORT_HTTPD="$( "${SCRIPT_PATH}/../scripts/env-getvar.sh" "HOST_PORT_HTTPD" )"
|
|
|
|
|
|
###
|
|
### Retrieve URL for current PHP version.
|
|
### Older PHP versions are presented a link with a different version due to compatibility.
|
|
###
|
|
printf "[TEST] Retrieve phpPgAdmin URL"
|
|
# 1st Try
|
|
if ! URL="$( curl -sS --fail "http://localhost:${HOST_PORT_HTTPD}/index.php" | grep -Eo "/vendor/phppgadmin-[.0-9]+/" )"; then
|
|
# 2nd Try
|
|
sleep 1
|
|
if ! URL="$( curl -sS --fail "http://localhost:${HOST_PORT_HTTPD}/index.php" | grep -Eo "/vendor/phppgadmin-[.0-9]+/" )"; then
|
|
# 3rd Try
|
|
sleep 1
|
|
if ! URL="$( curl -sS --fail "http://localhost:${HOST_PORT_HTTPD}/index.php" | grep -Eo "/vendor/phppgadmin-[.0-9]+/" )"; then
|
|
printf "\\r[FAILED] Retrieve phpMyAdmin URL\\n"
|
|
curl -sS "http://localhost:${HOST_PORT_HTTPD}/index.php" | grep -Eo "/vendor/phppgadmin-[.0-9]+/" || true
|
|
exit 1
|
|
else
|
|
printf "\\r[OK] Retrieve phpPgAdmin URL (3 rounds): %s\\n" "${URL}"
|
|
fi
|
|
else
|
|
printf "\\r[OK] Retrieve phpPgAdmin URL (2 rounds): %s\\n" "${URL}"
|
|
fi
|
|
else
|
|
printf "\\r[OK] Retrieve phpPgAdmin URL (1 round): %s\\n" "${URL}n"
|
|
fi
|
|
|
|
|
|
###
|
|
### Ensure given phpPgAdmin version works
|
|
###
|
|
printf "[TEST] Fetch %sintro.php" "${URL}"
|
|
# 1st Try
|
|
if ! curl -sS --fail "http://localhost:${HOST_PORT_HTTPD}${URL}intro.php" | tac | tac | grep -Eiq "welcome to phpPgAdmin"; then
|
|
# 2nd Try
|
|
sleep 1
|
|
if ! curl -sS --fail "http://localhost:${HOST_PORT_HTTPD}${URL}intro.php" | tac | tac | grep -Eiq "welcome to phpPgAdmin"; then
|
|
# 3rd Try
|
|
sleep 1
|
|
if ! curl -sS --fail "http://localhost:${HOST_PORT_HTTPD}${URL}intro.php" | tac | tac | grep -Eiq "welcome to phpPgAdmin"; then
|
|
printf "\\r[FAIL] Fetch %sintro.php\\n" "${URL}"
|
|
curl -sS "http://localhost:${HOST_PORT_HTTPD}${URL}intro.php" || true
|
|
curl -sS -I "http://localhost:${HOST_PORT_HTTPD}${URL}intro.php" || true
|
|
exit 1
|
|
else
|
|
printf "\\r[OK] Fetch %sintro.php (3 rounds)\\n" "${URL}"
|
|
fi
|
|
else
|
|
printf "\\r[OK] Fetch %sintro.php (2 rounds)\\n" "${URL}"
|
|
fi
|
|
else
|
|
printf "\\r[OK] Fetch %sintro.php (1 round)\\n" "${URL}"
|
|
fi
|
|
|
|
|
|
###
|
|
### Evaluate successful phpPgAdmin login
|
|
###
|
|
printf "[TEST] Evaluate successful phpPgAdmin login"
|
|
# 1st Try
|
|
if [ "$(curl -sS --fail "http://localhost:${HOST_PORT_HTTPD}${URL}redirect.php?subject=server&server=pgsql%3A5432%3Aallow&" | tac | tac | grep -Ec 'data">(Database|Owner|Collation|Tablespace)')" != "4" ]; then
|
|
# 2nd Try
|
|
sleep 1
|
|
if [ "$(curl -sS --fail "http://localhost:${HOST_PORT_HTTPD}${URL}redirect.php?subject=server&server=pgsql%3A5432%3Aallow&" | tac | tac | grep -Ec 'data">(Database|Owner|Collation|Tablespace)')" != "4" ]; then
|
|
# 3rd Try
|
|
sleep 1
|
|
if [ "$(curl -sS --fail "http://localhost:${HOST_PORT_HTTPD}${URL}redirect.php?subject=server&server=pgsql%3A5432%3Aallow&" | tac | tac | grep -Ec 'data">(Database|Owner|Collation|Tablespace)')" != "4" ]; then
|
|
printf "\\r[FAIL] Evaluate successful phpPgAdmin login\\n"
|
|
curl -sS "http://localhost:${HOST_PORT_HTTPD}${URL}redirect.php?subject=server&server=pgsql%3A5432%3Aallow&" || true
|
|
curl -sS -I "http://localhost:${HOST_PORT_HTTPD}${URL}redirect.php?subject=server&server=pgsql%3A5432%3Aallow&" || true
|
|
exit 1
|
|
else
|
|
printf "\\r[OK] Evaluate successful phpPgAdmin login (3 rounds)\\n"
|
|
fi
|
|
else
|
|
printf "\\r[OK] Evaluate successful phpPgAdmin login (2 rounds)\\n"
|
|
fi
|
|
else
|
|
printf "\\r[OK] Evaluate successful phpPgAdmin login (1 round)\\n"
|
|
fi
|
|
|
|
|
|
####
|
|
#### Login (get token URL)
|
|
####
|
|
## 1st Try
|
|
#printf "[TEST] Retrieve phpPgAdmin token page"
|
|
#if ! TOKEN_URL="$( curl -sS -c cookie.txt localhost${URL}servers.php | tac | tac | grep -Eo "\"redirect\.php\?subject=server.+\"" )"; then
|
|
# # 2nd Try
|
|
# sleep 1
|
|
# if ! TOKEN_URL="$( curl -sS -c cookie.txt localhost${URL}servers.php | tac | tac | grep -Eo "\"redirect\.php\?subject=server.+\"" )"; then
|
|
# # 3rd Try
|
|
# sleep 1
|
|
# if ! TOKEN_URL="$( curl -sS -c cookie.txt localhost${URL}servers.php | tac | tac | grep -Eo "\"redirect\.php\?subject=server.+\"" )"; then
|
|
# printf "\\r[FAIL] Retrieve phpPgAdmin login page\\n"
|
|
# curl -sS localhost/${URL}servers.php || true
|
|
# curl -sSI localhost/${URL}servers.php || true
|
|
# rm -f cookie.txt
|
|
# exit 1
|
|
# else
|
|
# TOKEN_URL="$( echo "${TOKEN_URL}" | sed 's/"//g' )"
|
|
# TOKEN_URL="$( echo "${TOKEN_URL}" | sed 's/&/\&/g' )"
|
|
# printf "\\r[OK] Retrieve phpPgAdmin token page (3 rounds): ${TOKEN_URL}\\n"
|
|
# fi
|
|
# else
|
|
# TOKEN_URL="$( echo "${TOKEN_URL}" | sed 's/"//g' )"
|
|
# TOKEN_URL="$( echo "${TOKEN_URL}" | sed 's/&/\&/g' )"
|
|
# printf "\\r[OK] Retrieve phpPgAdmin login token (2 rounds): ${TOKEN_URL}\\n"
|
|
# fi
|
|
#else
|
|
# TOKEN_URL="$( echo "${TOKEN_URL}" | sed 's/"//g' )"
|
|
# TOKEN_URL="$( echo "${TOKEN_URL}" | sed 's/&/\&/g' )"
|
|
# printf "\\r[OK] Retrieve phpPgAdmin token page (1 round): ${TOKEN_URL}\\n"
|
|
#fi
|
|
#
|
|
#
|
|
####
|
|
#### Login (get Login Token)
|
|
####
|
|
#TOKEN=
|
|
#printf "[TEST] Retrieve phpPgAdmin login token"
|
|
## 1st Try
|
|
#if ! TOKEN="$( curl -sS -c cookie.txt -b cookie.txt "localhost${URL}${TOKEN_URL}" | tac | tac | grep -Eo "loginPassword_[a-zA-Z0-9]+" )"; then
|
|
# # 2nd Try
|
|
# sleep 1
|
|
# if ! TOKEN="$( curl -sS -c cookie.txt -b cookie.txt "localhost${URL}${TOKEN_URL}" | tac | tac | grep -Eo "loginPassword_[a-zA-Z0-9]+" )"; then
|
|
# # 3rd Try
|
|
# sleep 1
|
|
# if ! TOKEN="$( curl -sS -c cookie.txt -b cookie.txt "localhost${URL}${TOKEN_URL}" | tac | tac | grep -Eo "loginPassword_[a-zA-Z0-9]+" )"; then
|
|
# printf "\\r[FAIL] Retrieve phpPgAdmin login token\\n"
|
|
# curl -sS "${TOKEN_URL_URL}" || true
|
|
# curl -sSI "${TOKEN_URL_URL}" || true
|
|
# rm -f cookie.txt
|
|
# exit 1
|
|
# else
|
|
# TOKEN="$( echo "${TOKEN}" | head -1 )"
|
|
# printf "\\r[OK] Retrieve phpPgAdmin login token (3 rounds): ${TOKEN}\\n"
|
|
# fi
|
|
# else
|
|
# TOKEN="$( echo "${TOKEN}" | head -1 )"
|
|
# printf "\\r[OK] Retrieve phpPgAdmin login token (2 rounds): ${TOKEN}\\n"
|
|
# fi
|
|
#else
|
|
# TOKEN="$( echo "${TOKEN}" | head -1 )"
|
|
# printf "\\r[OK] Retrieve phpPgAdmin login token (1 round): ${TOKEN}\\n"
|
|
#fi
|
|
#
|
|
#
|
|
####
|
|
#### Login
|
|
####
|
|
#
|
|
#printf "[TEST] Submit phpPgAdmin POST login"
|
|
## 1st Try
|
|
#if ! curl -sS -c cookie.txt -b cookie.txt \
|
|
# -d "subject=server&server=pgsql%3A5432%3Aallow&loginServer=pgsql%3A5432%3Aallow&loginUsername=postgres&${TOKEN}=&loginSubmit=Login" \
|
|
# localhost${URL}redirect.php 2>/dev/null | grep -q "Create database"; then
|
|
# # 2nd Try
|
|
# sleep 1
|
|
# if ! curl -sS -c cookie.txt -b cookie.txt \
|
|
# -d "subject=server&server=pgsql%3A5432%3Aallow&loginServer=pgsql%3A5432%3Aallow&loginUsername=postgres&${TOKEN}=&loginSubmit=Login" \
|
|
# localhost${URL}redirect.php 2>/dev/null | grep -q "Create database"; then
|
|
# # 3rd Try
|
|
# sleep 1
|
|
# if ! curl -sS -c cookie.txt -b cookie.txt \
|
|
# -d "subject=server&server=pgsql%3A5432%3Aallow&loginServer=pgsql%3A5432%3Aallow&loginUsername=postgres&${TOKEN}=&loginSubmit=Login" \
|
|
# localhost${URL}redirect.php 2>/dev/null | grep -q "Create database"; then
|
|
# printf "\\r[FAIL] Submit phpPgAdmin POST login\\n"
|
|
# curl -sS -c cookie.txt -b cookie.txt \
|
|
# -d "subject=server&server=pgsql%3A5432%3Aallow&loginServer=pgsql%3A5432%3Aallow&loginUsername=postgres&${TOKEN}=&loginSubmit=Login" \
|
|
# localhost${URL}redirect.php || true
|
|
# curl -sSI -c cookie.txt -b cookie.txt \
|
|
# -d "subject=server&server=pgsql%3A5432%3Aallow&loginServer=pgsql%3A5432%3Aallow&loginUsername=postgres&${TOKEN}=&loginSubmit=Login" \
|
|
# localhost${URL}redirect.php || true
|
|
# rm -f cookie.txt || true
|
|
# exit 1
|
|
# else
|
|
# printf "\\r[OK] Submit phpPgAdmin POST login (3 rounds)\\n"
|
|
# fi
|
|
# else
|
|
# printf "\\r[OK] Submit phpPgAdmin POST login (2 rounds)\\n"
|
|
# fi
|
|
#else
|
|
# printf "\\r[OK] Submit phpPgAdmin POST login (1 round)\\n"
|
|
#fi
|
|
#
|
|
#rm -f cookie.txt || true
|