1 | <?php |
||
17 | class DeviceAtlasCom extends AbstractHttpProvider |
||
18 | { |
||
19 | /** |
||
20 | * Name of the provider |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $name = 'DeviceAtlasCom'; |
||
25 | |||
26 | /** |
||
27 | * Homepage of the provider |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $homepage = 'https://deviceatlas.com/'; |
||
32 | |||
33 | protected $detectionCapabilities = [ |
||
34 | |||
35 | 'browser' => [ |
||
36 | 'name' => true, |
||
37 | 'version' => true, |
||
38 | ], |
||
39 | |||
40 | 'renderingEngine' => [ |
||
41 | 'name' => true, |
||
42 | 'version' => false, |
||
43 | ], |
||
44 | |||
45 | 'operatingSystem' => [ |
||
46 | 'name' => true, |
||
47 | 'version' => true, |
||
48 | ], |
||
49 | |||
50 | 'device' => [ |
||
51 | 'model' => false, |
||
52 | 'brand' => false, |
||
53 | 'type' => true, |
||
54 | 'isMobile' => false, |
||
55 | 'isTouch' => false, |
||
56 | ], |
||
57 | |||
58 | 'bot' => [ |
||
59 | 'isBot' => false, |
||
60 | 'name' => false, |
||
61 | 'type' => false, |
||
62 | ], |
||
63 | ]; |
||
64 | |||
65 | private static $uri = 'http://region0.deviceatlascloud.com/v1/detect/properties'; |
||
66 | |||
67 | private $apiKey; |
||
68 | |||
69 | 17 | public function __construct(Client $client, $apiKey) |
|
75 | |||
76 | 10 | protected function getResult($userAgent, array $headers) |
|
77 | { |
||
78 | /* |
||
79 | * an empty UserAgent makes no sense |
||
80 | */ |
||
81 | 10 | if ($userAgent == '') { |
|
82 | 1 | throw new Exception\NoResultFoundException('No result found for user agent: ' . $userAgent); |
|
83 | } |
||
84 | |||
85 | 9 | $parameters = '?licencekey=' . rawurlencode($this->apiKey); |
|
86 | 9 | $parameters .= '&useragent=' . rawurlencode($userAgent); |
|
87 | |||
88 | 9 | $uri = self::$uri . $parameters; |
|
89 | |||
90 | // key to lower |
||
91 | 9 | $headers = array_change_key_case($headers); |
|
92 | |||
93 | 9 | $newHeaders = []; |
|
94 | 9 | foreach ($headers as $key => $value) { |
|
95 | 1 | $newHeaders['X-DA-' . $key] = $value; |
|
96 | } |
||
97 | |||
98 | 9 | $newHeaders['User-Agent'] = 'ThaDafinser/UserAgentParser:v1.4'; |
|
99 | |||
100 | 9 | $request = new Request('GET', $uri, $newHeaders); |
|
101 | |||
102 | try { |
||
103 | 9 | $response = $this->getResponse($request); |
|
104 | 2 | } catch (Exception\RequestException $ex) { |
|
105 | /* @var $prevEx \GuzzleHttp\Exception\ClientException */ |
||
106 | 2 | $prevEx = $ex->getPrevious(); |
|
107 | |||
108 | 2 | if ($prevEx->hasResponse() === true && $prevEx->getResponse()->getStatusCode() === 403) { |
|
109 | 1 | throw new Exception\InvalidCredentialsException('Your API key "' . $this->apiKey . '" is not valid for ' . $this->getName(), null, $ex); |
|
110 | } |
||
111 | |||
112 | 1 | throw $ex; |
|
113 | } |
||
114 | |||
115 | /* |
||
116 | * no json returned? |
||
117 | */ |
||
118 | 7 | $contentType = $response->getHeader('Content-Type'); |
|
119 | 7 | if (! isset($contentType[0]) || $contentType[0] != 'application/json; charset=UTF-8') { |
|
120 | 1 | throw new Exception\RequestException('Could not get valid "application/json" response from "' . $request->getUri() . '". Response is "' . $response->getBody()->getContents() . '"'); |
|
121 | } |
||
122 | |||
123 | 6 | $content = json_decode($response->getBody()->getContents()); |
|
124 | |||
125 | 6 | if (! $content instanceof stdClass || ! isset($content->properties)) { |
|
126 | 1 | throw new Exception\RequestException('Could not get valid response from "' . $request->getUri() . '". Response is "' . $response->getBody()->getContents() . '"'); |
|
127 | } |
||
128 | |||
129 | /* |
||
130 | * No result found? |
||
131 | */ |
||
132 | 5 | if (! $content->properties instanceof stdClass || count((array) $content->properties) === 0) { |
|
133 | 1 | throw new Exception\NoResultFoundException('No result found for user agent: ' . $userAgent); |
|
134 | } |
||
135 | |||
136 | 4 | return $content->properties; |
|
137 | } |
||
138 | |||
139 | /** |
||
140 | * |
||
141 | * @param Model\Browser $browser |
||
142 | * @param stdClass $resultRaw |
||
143 | */ |
||
144 | 4 | private function hydrateBrowser(Model\Browser $browser, stdClass $resultRaw) |
|
145 | { |
||
146 | 4 | if (isset($resultRaw->browserName)) { |
|
147 | 1 | $browser->setName($this->getRealResult($resultRaw->browserName, 'browser', 'name')); |
|
148 | } |
||
149 | |||
150 | 4 | if (isset($resultRaw->browserVersion)) { |
|
151 | 1 | $browser->getVersion()->setComplete($this->getRealResult($resultRaw->browserVersion, 'browser', 'version')); |
|
152 | } |
||
153 | 4 | } |
|
154 | |||
155 | /** |
||
156 | * |
||
157 | * @param Model\RenderingEngine $engine |
||
158 | * @param stdClass $resultRaw |
||
159 | */ |
||
160 | 4 | private function hydrateRenderingEngine(Model\RenderingEngine $engine, stdClass $resultRaw) |
|
161 | { |
||
162 | 4 | if (isset($resultRaw->browserRenderingEngine)) { |
|
163 | 1 | $engine->setName($this->getRealResult($resultRaw->browserRenderingEngine)); |
|
164 | } |
||
165 | 4 | } |
|
166 | |||
167 | /** |
||
168 | * |
||
169 | * @param Model\OperatingSystem $os |
||
170 | * @param stdClass $resultRaw |
||
171 | */ |
||
172 | 4 | private function hydrateOperatingSystem(Model\OperatingSystem $os, stdClass $resultRaw) |
|
173 | { |
||
174 | 4 | if (isset($resultRaw->osName)) { |
|
175 | 1 | $os->setName($this->getRealResult($resultRaw->osName)); |
|
176 | } |
||
177 | |||
178 | 4 | if (isset($resultRaw->osVersion)) { |
|
179 | 1 | $os->getVersion()->setComplete($this->getRealResult($resultRaw->osVersion)); |
|
180 | } |
||
181 | 4 | } |
|
182 | |||
183 | /** |
||
184 | * |
||
185 | * @param Model\UserAgent $device |
||
186 | * @param stdClass $resultRaw |
||
187 | */ |
||
188 | 4 | private function hydrateDevice(Model\Device $device, stdClass $resultRaw) |
|
189 | { |
||
190 | 4 | if (isset($resultRaw->primaryHardwareType)) { |
|
191 | 1 | $device->setType($this->getRealResult($resultRaw->primaryHardwareType)); |
|
192 | } |
||
193 | 4 | } |
|
194 | |||
195 | 10 | public function parse($userAgent, array $headers = []) |
|
215 | } |
||
216 |