1
|
|
|
<?php |
2
|
|
|
namespace Checkdomain\Comodo\Model\Result; |
3
|
|
|
use Checkdomain\Comodo\Model\Exception\UnknownException; |
4
|
|
|
|
5
|
|
|
/** |
6
|
|
|
* Class WebHostReportEntryCollection |
7
|
|
|
*/ |
8
|
|
|
class WebHostReportEntryCollection implements \Iterator |
9
|
|
|
{ |
10
|
|
|
|
11
|
|
|
/** |
12
|
|
|
* @var int |
13
|
|
|
*/ |
14
|
|
|
private $position = 0; |
15
|
|
|
|
16
|
|
|
/** |
17
|
|
|
* @var array |
18
|
|
|
*/ |
19
|
|
|
private $entries = []; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* |
23
|
|
|
*/ |
24
|
|
|
public function rewind() { |
25
|
|
|
$this->position = 0; |
26
|
|
|
} |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* @return mixed |
30
|
|
|
*/ |
31
|
|
|
public function current() { |
32
|
|
|
return $this->entries[$this->position]; |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* @return int |
37
|
|
|
*/ |
38
|
|
|
public function key() { |
39
|
|
|
return $this->position; |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* |
44
|
|
|
*/ |
45
|
|
|
public function next() { |
46
|
|
|
++$this->position; |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* @param WebHostReportEntry $webHostReportEntry |
51
|
|
|
* @return WebHostReportEntryCollection |
52
|
|
|
*/ |
53
|
|
|
public function add($webHostReportEntry) { |
54
|
|
|
$this->entries[] = $webHostReportEntry; |
55
|
|
|
|
56
|
|
|
return $this; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* @return bool |
61
|
|
|
*/ |
62
|
|
|
public function valid() { |
63
|
|
|
return isset($this->entries[$this->position]); |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* WebHostReportEntryCollection constructor. |
68
|
|
|
* @param $webHostReportRawResult |
69
|
|
|
* |
70
|
|
|
* @return WebHostReportEntryCollection |
|
|
|
|
71
|
|
|
*/ |
72
|
|
|
public function __construct($webHostReportRawResult) |
73
|
|
|
{ |
74
|
|
|
$pos = 0; |
75
|
|
|
foreach ($webHostReportRawResult as $key => $line) { |
76
|
|
|
$keyArray = explode('_', $key); |
77
|
|
|
|
78
|
|
|
if (is_numeric($keyArray[0])) { |
79
|
|
|
if ($pos < $keyArray[0]) { |
80
|
|
|
$pos = $keyArray[0]; |
81
|
|
|
$entry = new WebHostReportEntry(); |
82
|
|
|
$this->add($entry); |
83
|
|
|
$entry->setRowNumber($pos); |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
switch (count($keyArray)) { |
87
|
|
|
case 2: |
88
|
|
|
$setter = 'set' . ucwords($keyArray[1]); |
89
|
|
|
$itempos = 0; |
90
|
|
|
break; |
91
|
|
|
case 3: |
92
|
|
|
if ($itempos < $keyArray[1]) { |
|
|
|
|
93
|
|
|
$item = new WebHostReportEntryItem(); |
94
|
|
|
$entry->getItems()->add($item); |
|
|
|
|
95
|
|
|
$itempos = $keyArray[1]; |
96
|
|
|
} |
97
|
|
|
$itemsetter = 'set' . ucwords($keyArray[2]); |
98
|
|
|
if (method_exists($item, $itemsetter)) { |
99
|
|
|
$item->$itemsetter($webHostReportRawResult[$key]); |
|
|
|
|
100
|
|
|
} |
101
|
|
|
break; |
102
|
|
|
default: |
103
|
|
|
throw new UnknownException(99, 'UnknownException', 'Malformed result from api call.'); |
104
|
|
|
} |
105
|
|
|
if (method_exists($entry, $setter)) { |
106
|
|
|
$entry->$setter($webHostReportRawResult[$key]); |
|
|
|
|
107
|
|
|
} |
108
|
|
|
} |
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
return $this; |
|
|
|
|
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
} |
115
|
|
|
|
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.