blob: 41cc66115a9a7bd0e61604ba60d8cf00393ea1fa (
plain)
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
|
<?php
namespace Icinga\Application\Hook;
use Icinga\User;
use Icinga\Web\Hook;
use Icinga\Application\Logger;
/**
* Icinga Web Authentication Hook base class
*
* This hook can be used to authenticate the user in a third party application.
* Extend this class if you want to perform arbitrary actions during the login and logout.
*/
abstract class AuthenticationHook
{
/**
* Name of the hook
*/
const NAME = 'authentication';
/**
* Triggered after login in Icinga Web and when calling login action even if already authenticated in Icinga Web
*
* @param User $user
*/
public function onLogin(User $user)
{
}
/**
* Triggered before logout from Icinga Web
*
* @param User $user
*/
public function onLogout(User $user)
{
}
/**
* Call the onLogin() method of all registered AuthHook(s)
*
* @param User $user
*/
public static function triggerLogin(User $user)
{
/** @var AuthenticationHook $hook */
foreach (Hook::all(self::NAME) as $hook) {
try {
$hook->onLogin($user);
} catch (\Exception $e) {
// Avoid error propagation if login failed in third party application
Logger::error($e);
}
}
}
/**
* Call the onLogout() method of all registered AuthHook(s)
*
* @param User $user
*/
public static function triggerLogout(User $user)
{
/** @var AuthenticationHook $hook */
foreach (Hook::all(self::NAME) as $hook) {
try {
$hook->onLogout($user);
} catch (\Exception $e) {
// Avoid error propagation if login failed in third party application
Logger::error($e);
}
}
}
}
|