1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Zapheus\Bridge\Psr\Zapheus; |
4
|
|
|
|
5
|
|
|
use Psr\Http\Message\ServerRequestInterface; |
6
|
|
|
use Zapheus\Http\Message\Collection; |
7
|
|
|
use Zapheus\Http\Message\Request as ZapheusRequest; |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* PSR-07 to Zapheus Server Request Bridge |
11
|
|
|
* |
12
|
|
|
* @package Zapheus |
13
|
|
|
* @author Rougin Royce Gutib <[email protected]> |
14
|
|
|
*/ |
15
|
|
|
class Request extends ZapheusRequest |
16
|
|
|
{ |
17
|
|
|
/** |
18
|
|
|
* Initializes the server request instance. |
19
|
|
|
* |
20
|
|
|
* @param \Psr\Http\Message\ServerRequestInterface $request |
21
|
|
|
*/ |
22
|
27 |
|
public function __construct(ServerRequestInterface $request) |
23
|
|
|
{ |
24
|
27 |
|
$server = $request->getServerParams(); |
25
|
|
|
|
26
|
27 |
|
$cookies = $request->getCookieParams(); |
27
|
|
|
|
28
|
27 |
|
list($query, $files) = $this->globals($request); |
29
|
|
|
|
30
|
27 |
|
$data = $request->getParsedBody(); |
31
|
|
|
|
32
|
27 |
|
$attributes = $request->getAttributes(); |
33
|
|
|
|
34
|
27 |
|
parent::__construct($server, $cookies, $data, $files, $query, $attributes); |
|
|
|
|
35
|
|
|
|
36
|
27 |
|
$this->set('headers', new Collection($request->getHeaders()), true); |
|
|
|
|
37
|
|
|
|
38
|
27 |
|
$this->set('uri', new Uri($request->getUri()), true); |
|
|
|
|
39
|
|
|
|
40
|
27 |
|
$this->set('stream', new Stream($request->getBody()), true); |
|
|
|
|
41
|
|
|
|
42
|
27 |
|
$this->set('version', $request->getProtocolVersion(), true); |
|
|
|
|
43
|
27 |
|
} |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* Returns a listing of globals. |
47
|
|
|
* |
48
|
|
|
* @param \Psr\Http\Message\ServerRequestInterface $request |
49
|
|
|
* @return array |
50
|
|
|
*/ |
51
|
27 |
|
protected function globals(ServerRequestInterface $request) |
52
|
|
|
{ |
53
|
27 |
|
list($items, $uploaded) = array(array(), array()); |
|
|
|
|
54
|
|
|
|
55
|
27 |
|
$items = $request->getUploadedFiles(); |
56
|
|
|
|
57
|
27 |
View Code Duplication |
foreach ((array) $items as $key => $files) { |
|
|
|
|
58
|
27 |
|
$uploaded[$key] = array(); |
59
|
|
|
|
60
|
27 |
|
foreach ((array) $files as $file) { |
61
|
27 |
|
$item = new File($file); |
62
|
|
|
|
63
|
27 |
|
array_push($uploaded[$key], $item); |
64
|
27 |
|
} |
65
|
27 |
|
} |
66
|
|
|
|
67
|
27 |
|
return array($request->getQueryParams(), $uploaded); |
68
|
|
|
} |
69
|
|
|
} |
70
|
|
|
|
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: