-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path_functions_phpldapadmin.sh
107 lines (95 loc) · 3.77 KB
/
_functions_phpldapadmin.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/bin/bash -eu
# Don't load it several times
set +u
${_FUNCTIONS_PHPLDAPADMIN_LOADED:-false} && return
set -u
# if the script was started from the base directory, then the
# expansion returns a period
if test "${SCRIPT_DIR}" == "."; then
SCRIPT_DIR="$PWD"
# if the script was not called with an absolute path, then we need to add the
# current working directory to the relative path of the script
elif test "${SCRIPT_DIR:0:1}" != "/"; then
SCRIPT_DIR="$PWD/${SCRIPT_DIR}"
fi
do_get_phpldapadmin_settings() {
if [ "${DEPLOYMENT_PHPLDAPADMIN_ENABLED}" == "false" ]; then
return;
fi
env_var DEPLOYMENT_PHPLDAPADMIN_CONTAINER_NAME "${INSTANCE_KEY}_phpldapadmin"
}
#
# Drops all phpLDAPAdmin data used by the instance.
#
do_drop_phpldapadmin_data() {
echo_info "Dropping phpLDAPAdmin data ..."
if [ "${DEPLOYMENT_PHPLDAPADMIN_ENABLED}" == "true" ]; then
echo_info "Drops phpLDAPAdmin container ${DEPLOYMENT_PHPLDAPADMIN_CONTAINER_NAME} ..."
delete_docker_container ${DEPLOYMENT_PHPLDAPADMIN_CONTAINER_NAME}
echo_info "Done."
echo_info "phpLDAPAdmin data dropped"
else
echo_info "Skip Drops phpLDAPAdmin container ..."
fi
}
do_stop_phpldapadmin() {
echo_info "Stopping phpLDAPAdmin ..."
if [ "${DEPLOYMENT_PHPLDAPADMIN_ENABLED}" == "false" ]; then
echo_info "phpLDAPAdmin wasn't specified, skiping its server container shutdown"
return
fi
ensure_docker_container_stopped ${DEPLOYMENT_PHPLDAPADMIN_CONTAINER_NAME}
echo_info "phpLDAPAdmin container ${DEPLOYMENT_PHPLDAPADMIN_CONTAINER_NAME} stopped."
}
do_start_phpldapadmin() {
echo_info "Starting PHPLDAPADMIN..."
# No need to start phpLDAPAdmin when LDAP integation is disabled
if ! ${DEPLOYMENT_LDAP_ENABLED} && [ "${DEPLOYMENT_PHPLDAPADMIN_ENABLED}" == "true" ]; then
echo_warn "LDAP disabled, skipping phpLDAPAdmin creation..."
return
fi
if [ "${DEPLOYMENT_PHPLDAPADMIN_ENABLED}" == "false" ]; then
echo_info "phpLDAPAdmin not specified, skiping its server container startup"
return
fi
echo_info "Starting phpLDAPAdmin container ${DEPLOYMENT_PHPLDAPADMIN_CONTAINER_NAME} based on image ${DEPLOYMENT_PHPLDAPADMIN_IMAGE}:${DEPLOYMENT_PHPLDAPADMIN_IMAGE_VERSION}"
# Ensure there is no container with the same name
delete_docker_container ${DEPLOYMENT_PHPLDAPADMIN_CONTAINER_NAME}
${DOCKER_CMD} run \
-d \
-e LDAP_URL="${DEPLOYMENT_LDAP_LINK}" \
-e LDAP_BASE="${USER_DIRECTORY_BASE_DN}" \
-e LDAP_ADMIN="${USER_DIRECTORY_ADMIN_DN}" \
-p "${DEPLOYMENT_PHPLDAPADMIN_HTTP_PORT}:80" \
--name ${DEPLOYMENT_PHPLDAPADMIN_CONTAINER_NAME} ${DEPLOYMENT_PHPLDAPADMIN_IMAGE}:${DEPLOYMENT_PHPLDAPADMIN_IMAGE_VERSION}
echo_info "${DEPLOYMENT_PHPLDAPADMIN_CONTAINER_NAME} container started"
check_phpldapadmin_availability
}
check_phpldapadmin_availability() {
echo_info "Waiting for phpLDAPAdmin availability on port ${DEPLOYMENT_PHPLDAPADMIN_HTTP_PORT}"
local count=0
local try=600
local wait_time=1
local RET=-1
while [ $count -lt $try -a $RET -ne 0 ]; do
count=$(( $count + 1 ))
set +e
curl -s -q --max-time ${wait_time} http://localhost:${DEPLOYMENT_PHPLDAPADMIN_HTTP_PORT} > /dev/null
RET=$?
if [ $RET -ne 0 ]; then
[ $(( ${count} % 10 )) -eq 0 ] && echo_info "phpLDAPAdmin not yet available (${count} / ${try})..."
echo -n "."
sleep $wait_time
fi
set -e
done
if [ $count -eq $try ]; then
echo_error "phpLDAPAdmin ${DEPLOYMENT_PHPLDAPADMIN_CONTAINER_NAME} not available after $(( ${count} * ${wait_time}))s"
exit 1
fi
echo_info "phpLDAPAdmin ${DEPLOYMENT_PHPLDAPADMIN_CONTAINER_NAME} up and available"
}
# #############################################################################
# Env var to not load it several times
_FUNCTIONS_PHPLDAPADMIN_LOADED=true
echo_debug "_function_phpldapadmin.sh Loaded"