-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChainOfResponsibilityExample.php
72 lines (60 loc) · 1.81 KB
/
ChainOfResponsibilityExample.php
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
<?php
// Handler interface
interface Handler {
public function setNext(Handler $handler): Handler;
public function handle($request): ?string;
}
// Abstract Handler
abstract class AbstractHandler implements Handler {
private $nextHandler;
public function setNext(Handler $handler): Handler {
$this->nextHandler = $handler;
return $handler;
}
public function handle($request): ?string {
if ($this->nextHandler) {
return $this->nextHandler->handle($request);
}
return null;
}
}
// Concrete Handlers
class AuthHandler extends AbstractHandler {
public function handle($request): ?string {
if ($request === "auth") {
return "Handled by AuthHandler\n";
}
return parent::handle($request);
}
}
class DataHandler extends AbstractHandler {
public function handle($request): ?string {
if ($request === "data") {
return "Handled by DataHandler\n";
}
return parent::handle($request);
}
}
class ErrorHandler extends AbstractHandler {
public function handle($request): ?string {
return "Handled by ErrorHandler (Default)\n";
}
}
// Client code
function clientCode(Handler $handler) {
foreach (["auth", "data", "unknown"] as $request) {
echo "Client: Who wants to handle \"$request\"?\n";
$result = $handler->handle($request);
if ($result) {
echo $result;
} else {
echo "No handler could process the request\n";
}
}
}
// Usage example
$authHandler = new AuthHandler();
$dataHandler = new DataHandler();
$errorHandler = new ErrorHandler();
$authHandler->setNext($dataHandler)->setNext($errorHandler);
clientCode($authHandler);