1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* AppserverIo\Routlt\Results\RawResult |
5
|
|
|
* |
6
|
|
|
* NOTICE OF LICENSE |
7
|
|
|
* |
8
|
|
|
* This source file is subject to the Open Software License (OSL 3.0) |
9
|
|
|
* that is available through the world-wide-web at this URL: |
10
|
|
|
* http://opensource.org/licenses/osl-3.0.php |
11
|
|
|
* |
12
|
|
|
* PHP version 5 |
13
|
|
|
* |
14
|
|
|
* @author Tim Wagner <[email protected]> |
15
|
|
|
* @copyright 2015 TechDivision GmbH <[email protected]> |
16
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
17
|
|
|
* @link http://github.com/appserver-io/routlt |
18
|
|
|
* @link http://www.appserver.io |
19
|
|
|
*/ |
20
|
|
|
|
21
|
|
|
namespace AppserverIo\Routlt\Results; |
22
|
|
|
|
23
|
|
|
use AppserverIo\Routlt\Annotations\Result; |
24
|
|
|
use AppserverIo\Routlt\Util\EncodingAware; |
25
|
|
|
use AppserverIo\Routlt\Util\ValidationAware; |
26
|
|
|
use AppserverIo\Routlt\Util\DefaultHeadersAware; |
27
|
|
|
use AppserverIo\Psr\Servlet\ServletRequestInterface; |
28
|
|
|
use AppserverIo\Psr\Servlet\ServletResponseInterface; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Result implementation that supports action based default headers and encoding. |
32
|
|
|
* |
33
|
|
|
* @author Tim Wagner <[email protected]> |
34
|
|
|
* @copyright 2015 TechDivision GmbH <[email protected]> |
35
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
36
|
|
|
* @link http://github.com/appserver-io/routlt |
37
|
|
|
* @link http://www.appserver.io |
38
|
|
|
* |
39
|
|
|
* @Result(shared=false) |
40
|
|
|
*/ |
41
|
|
|
class RawResult extends AbstractResult |
42
|
|
|
{ |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* Processes an action result by dispatching the configured servlet. |
46
|
|
|
* |
47
|
|
|
* @param \AppserverIo\Psr\Servlet\ServletRequestInterface $servletRequest The request instance |
48
|
|
|
* @param \AppserverIo\Psr\Servlet\ServletResponseInterface $servletResponse The response sent back to the client |
49
|
|
|
* |
50
|
|
|
* @return void |
51
|
|
|
*/ |
52
|
3 |
|
public function process(ServletRequestInterface $servletRequest, ServletResponseInterface $servletResponse) |
53
|
|
|
{ |
54
|
|
|
|
55
|
|
|
// load the action instance |
56
|
3 |
|
$action = $this->getAction(); |
57
|
|
|
|
58
|
|
|
// add the actions default headers to the response |
59
|
3 |
|
if ($action instanceof DefaultHeadersAware && $action->hasDefaultHeaders()) { |
60
|
3 |
|
foreach ($action->getDefaultHeaders() as $name => $value) { |
61
|
|
|
// if not, set the default header |
62
|
3 |
|
$servletResponse->addHeader($name, $value); |
|
|
|
|
63
|
|
|
} |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
// query whether the action contains errors or not |
67
|
3 |
|
if ($action instanceof ValidationAware && $action->hasErrors()) { |
68
|
3 |
|
$bodyContent = $action->getErrors(); |
69
|
3 |
|
} else { |
70
|
|
|
$bodyContent = $action->getAttribute($this->getResult()); |
71
|
|
|
} |
72
|
3 |
|
|
73
|
1 |
|
// query whether the action requires content encoding or not |
74
|
1 |
|
if ($action instanceof EncodingAware && !empty($bodyContent)) { |
75
|
2 |
|
$bodyContent = $action->encode($bodyContent); |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
// set the encoded body content |
79
|
3 |
|
$servletResponse->appendBodyStream($bodyContent); |
80
|
2 |
|
} |
81
|
|
|
} |
82
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: