$OIDC_SCOPES must be an array, testing the env to be a valid json array before pushing to config (without escaping) (#184)

pull/181/head
Guilherme Capilé 2024-11-13 06:26:48 -03:00 committed by GitHub
parent ce805b58a3
commit 5e60a88eeb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -101,13 +101,13 @@ set_up_oidc() {
}
}" > /dev/null
# Check if OIDC_SCOPES is set and not empty
if [[ -n "$OIDC_SCOPES" ]]; then
# Check if OIDC_SCOPES is set and is an array
if [[ "$(echo "$OIDC_SCOPES" | jq type -r)" == "array" ]]; then
# Run the modify_config.php script to update OidcAuth configuration with the provided OIDC_SCOPES
# The 'scopes' field will only be added if OIDC_SCOPES has a value
sudo -u www-data php /var/www/MISP/tests/modify_config.php modify "{
\"OidcAuth\": {
${OIDC_SCOPES:+\"scopes\": \"${OIDC_SCOPES}\"}
\"scopes\": ${OIDC_SCOPES}
}
}" > /dev/null
fi