|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Showing off a standard class with methods and properties. |
|
4
|
|
|
*/ |
|
5
|
|
|
namespace Erjh17\CallUrlModel; |
|
6
|
|
|
|
|
7
|
|
|
use Anax\Commons\ContainerInjectableInterface; |
|
8
|
|
|
use Anax\Commons\ContainerInjectableTrait; |
|
9
|
|
|
|
|
10
|
|
|
trait IpModelTrait |
|
11
|
|
|
{ |
|
12
|
|
|
// use GeoModelTrait; |
|
13
|
|
|
// use WeatherModelTrait; |
|
14
|
|
|
// use ContainerInjectableTrait; |
|
15
|
|
|
/** |
|
16
|
|
|
* @var string $ipAddress The ip address. |
|
17
|
|
|
* @var string $message The message. |
|
18
|
|
|
* @var boolean $valid If the ip address is valid. |
|
19
|
|
|
* @var string $host The ip adress' host. |
|
20
|
|
|
*/ |
|
21
|
|
|
|
|
22
|
|
|
private $ipAddress; |
|
23
|
|
|
private $message; |
|
24
|
|
|
private $valid; |
|
25
|
|
|
private $host; |
|
26
|
|
|
private $errorMsg; |
|
27
|
|
|
private $ipstackkey; |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* [isValidIp description] |
|
31
|
|
|
* |
|
32
|
|
|
* @return boolean [description] |
|
33
|
|
|
*/ |
|
34
|
18 |
|
public function isValidIp() |
|
35
|
|
|
{ |
|
36
|
18 |
|
return $this->valid; |
|
37
|
|
|
} |
|
38
|
|
|
|
|
39
|
|
|
/** |
|
40
|
|
|
* Returns the data of the IpModel. |
|
41
|
|
|
* |
|
42
|
|
|
* @return array array of info. |
|
43
|
|
|
*/ |
|
44
|
27 |
|
public function getInfo() |
|
45
|
|
|
{ |
|
46
|
|
|
return array( |
|
47
|
27 |
|
'ip' => $this->ipAddress, |
|
48
|
27 |
|
'host' => $this->host, |
|
49
|
27 |
|
'message' => $this->message, |
|
50
|
27 |
|
'valid' => $this->valid, |
|
51
|
27 |
|
'errorMsg' => $this->errorMsg |
|
52
|
|
|
); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
15 |
|
public function fillInfo($result, $keys) |
|
56
|
|
|
{ |
|
57
|
15 |
|
foreach ($keys as $value) { |
|
58
|
15 |
|
if (array_key_exists($value, $result)) { |
|
59
|
15 |
|
$this->$value = $result[$value]; |
|
60
|
|
|
} |
|
61
|
|
|
} |
|
62
|
15 |
|
} |
|
63
|
|
|
|
|
64
|
|
|
/** |
|
65
|
|
|
* [pushInfo description] |
|
66
|
|
|
* |
|
67
|
|
|
* @param array $result [description] |
|
68
|
|
|
* @param array $keys [description] |
|
69
|
|
|
* |
|
70
|
|
|
* @return array [description] |
|
71
|
|
|
*/ |
|
72
|
3 |
|
public function pushInfo($result, $keys) |
|
73
|
|
|
{ |
|
74
|
3 |
|
$retArray = []; |
|
75
|
3 |
|
foreach ($keys as $value) { |
|
76
|
3 |
|
if (array_key_exists($value, $result)) { |
|
77
|
3 |
|
$retArray[$value] = $result[$value]; |
|
78
|
|
|
} |
|
79
|
|
|
} |
|
80
|
3 |
|
return $retArray; |
|
81
|
|
|
} |
|
82
|
|
|
|
|
83
|
|
|
/** |
|
84
|
|
|
* Validates the ip address stored in the Class instance. |
|
85
|
|
|
* |
|
86
|
|
|
* @return array Array with data |
|
87
|
|
|
*/ |
|
88
|
27 |
|
public function validateIp() |
|
89
|
|
|
{ |
|
90
|
27 |
|
if ($this->ipAddress) { |
|
91
|
26 |
|
if (filter_var($this->ipAddress, FILTER_VALIDATE_IP)) { |
|
92
|
18 |
|
$this->valid = true; |
|
93
|
18 |
|
if (filter_var($this->ipAddress, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) { |
|
94
|
7 |
|
$this->message = "$this->ipAddress är en giltig IPv4 adress"; |
|
95
|
7 |
|
$this->host = gethostbyaddr($this->ipAddress); |
|
96
|
11 |
|
} elseif (filter_var($this->ipAddress, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) { |
|
97
|
18 |
|
$this->message = "$this->ipAddress är en giltig IPv6 adress"; |
|
98
|
|
|
} |
|
99
|
|
|
} else { |
|
100
|
8 |
|
$this->message = "$this->ipAddress är inte en giltig IP adress"; |
|
101
|
|
|
} |
|
102
|
|
|
} |
|
103
|
27 |
|
return $this->getInfo(); |
|
104
|
|
|
} |
|
105
|
|
|
} |
|
106
|
|
|
|