Completed
Push — master ( 36fb73...f4889a )
by Dmitry
02:53
created

Response::parseHeaders()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 21
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 15
CRAP Score 4.0039

Importance

Changes 0
Metric Value
dl 0
loc 21
ccs 15
cts 16
cp 0.9375
rs 9.0534
c 0
b 0
f 0
cc 4
eloc 15
nc 4
nop 1
crap 4.0039
1
<?php
2
/**
3
 * ActiveRecord for API
4
 *
5
 * @link      https://github.com/hiqdev/yii2-hiart
6
 * @package   yii2-hiart
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hiqdev\hiart\stream;
12
13
use hiqdev\hiart\AbstractResponse;
14
15
/**
16
 * PHP stream response implementation.
17
 *
18
 * @author Andrii Vasyliev <[email protected]>
19
 */
20
class Response extends AbstractResponse
21
{
22
    protected $rawData;
23
24
    protected $headers;
25
26
    protected $statusCode;
27
28
    protected $reasonPhrase;
29
30 2
    public function __construct(Request $request, $rawData, array $rawHeaders)
31
    {
32 2
        $this->request = $request;
33 2
        $this->rawData = $rawData;
34 2
        $this->headers = $this->parseHeaders($rawHeaders);
35 2
    }
36
37 2
    public function getRawData()
38
    {
39 2
        return $this->rawData;
40
    }
41
42 2
    public function getHeader($name)
43
    {
44 2
        $name = strtolower($name);
45
46 2
        return isset($this->headers[$name]) ? $this->headers[$name] : null;
47
    }
48
49
    public function getHeaders()
50
    {
51
        return $this->headers;
52
    }
53
54 2
    public function parseHeaders($headers)
55
    {
56 2
        $result = [];
57
58 2
        foreach ($headers as $header) {
59 2
            if (strncmp($header, 'HTTP/', 5) === 0) {
60 2
                $parts = explode(' ', $header, 3);
61 2
                $this->version = substr($parts[0], 5);
0 ignored issues
show
Bug introduced by
The property version does not exist. Did you maybe forget to declare it?

In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:

class MyClass { }

$x = new MyClass();
$x->foo = true;

Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion:

class MyClass {
    public $foo;
}

$x = new MyClass();
$x->foo = true;
Loading history...
62 2
                $this->statusCode = $parts[1];
63 2
                $this->reasonPhrase = $parts[2];
64 2
            } elseif (($pos = strpos($header, ':')) !== false) {
65 2
                $name = strtolower(trim(substr($header, 0, $pos)));
66 2
                $value = trim(substr($header, $pos + 1));
67 2
                $result[$name][] = $value;
68 2
            } else {
69
                $result['raw'][] = $header;
70
            }
71 2
        }
72
73 2
        return $result;
74
    }
75
76 2
    public function getStatusCode()
77
    {
78 2
        return $this->statusCode;
79
    }
80
81
    public function getReasonPhrase()
82
    {
83
        return $this->reasonPhrase;
84
    }
85
}
86