commit 04eb7cffa84387070f48f5649a1d5a5a7843fc9c Author: Igor Pashev Date: Fri Jan 1 11:05:48 2016 +0300 Added Sproxy backend See https://github.com/zalora/sproxy diff --git a/library/Icinga/Authentication/User/SproxyBackend.php b/library/Icinga/Authentication/User/SproxyBackend.php new file mode 100644 index 0000000..4b15b0e --- /dev/null +++ b/library/Icinga/Authentication/User/SproxyBackend.php @@ -0,0 +1,40 @@ +setUsername($email); + $user->setEmail($email); + $user->setExternalUserInformation($email, 'HTTP_FROM'); + + if (! empty($_SERVER['HTTP_X_GIVEN_NAME'])) { + $user->setFirstname($_SERVER['HTTP_X_GIVEN_NAME']); + } + if (! empty($_SERVER['HTTP_X_GROUPS'])) { + $user->setGroups(explode(',', $_SERVER['HTTP_X_GROUPS'])); + } + if (! empty($_SERVER['HTTP_X_FAMILY_NAME'])) { + $user->setLastname($_SERVER['HTTP_X_FAMILY_NAME']); + } + + return true; + } + return false; + } +} diff --git a/library/Icinga/Authentication/User/UserBackend.php b/library/Icinga/Authentication/User/UserBackend.php index 3b8e210..d264365 100644 --- a/library/Icinga/Authentication/User/UserBackend.php +++ b/library/Icinga/Authentication/User/UserBackend.php @@ -22,6 +22,7 @@ class UserBackend implements ConfigAwareFactory * @var array */ protected static $defaultBackends = array( + 'sproxy', 'external', 'db', 'ldap', @@ -176,6 +177,11 @@ class UserBackend implements ConfigAwareFactory $backend->setName($name); return $backend; } + if ($backendType === 'sproxy') { + $backend = new SproxyBackend($backendConfig); + $backend->setName($name); + return $backend; + } if (in_array($backendType, static::$defaultBackends)) { // The default backend check is the first one because of performance reasons: // Do not attempt to load a custom user backend unless it's actually required