forked from shetabit/visitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Visitor.php
executable file
·356 lines (312 loc) · 7.13 KB
/
Visitor.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<?php
namespace Shetabit\Visitor;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Http\Request;
use Shetabit\Visitor\Contracts\UserAgentParser;
use Shetabit\Visitor\Exceptions\DriverNotFoundException;
use Shetabit\Visitor\Models\Visit;
class Visitor implements UserAgentParser
{
/**
* Configuration.
*
* @var array
*/
protected $config;
/**
* Driver name.
*
* @var string
*/
protected $driver;
/**
* Driver instance.
*
* @var object
*/
protected $driverInstance;
/**
* Request instance.
*
* @var Request
*/
protected $request;
/**
* Visitor (user) instance.
*
* @var Model|null
*/
protected $visitor;
/**
* Visitor constructor.
*
* @param $config
*
* @throws \Exception
*/
public function __construct(Request $request, $config)
{
$this->request = $request;
$this->config = $config;
$this->via($this->config['default']);
$this->setVisitor($request->user());
}
/**
* Change the driver on the fly.
*
* @param $driver
*
* @return $this
*
* @throws \Exception
*/
public function via($driver)
{
$this->driver = $driver;
$this->validateDriver();
return $this;
}
/**
* Retrieve request's data
*
* @return array
*/
public function request() : array
{
return $this->request->all();
}
/**
* Retrieve user's ip.
*
* @return string|null
*/
public function ip() : ?string
{
return $this->request->ip();
}
/**
* Retrieve request's url
*
* @return string
*/
public function url() : string
{
return $this->request->fullUrl();
}
/**
* Retrieve request's referer
*
* @return string|null
*/
public function referer() : ?string
{
return $_SERVER['HTTP_REFERER'] ?? null;
}
/**
* Retrieve request's method.
*
* @return string
*/
public function method() : string
{
return $this->request->getMethod();
}
/**
* Retrieve http headers.
*
* @return array
*/
public function httpHeaders() : array
{
return $this->request->headers->all();
}
/**
* Retrieve agent.
*
* @return string
*/
public function userAgent() : string
{
return $this->request->userAgent();
}
/**
* Retrieve device's name.
*
* @return string
*
* @throws \Exception
*/
public function device() : string
{
return $this->getDriverInstance()->device();
}
/**
* Retrieve platform's name.
*
* @return string
*
* @throws \Exception
*/
public function platform() : string
{
return $this->getDriverInstance()->platform();
}
/**
* Retrieve browser's name.
*
* @return string
*
* @throws \Exception
*/
public function browser() : string
{
return $this->getDriverInstance()->browser();
}
/**
* Retrieve languages.
*
* @return array
*
* @throws \Exception
*/
public function languages() : array
{
return $this->getDriverInstance()->languages();
}
/**
* Set visitor (user)
*
* @param Model|null $user
*
* @return $this
*/
public function setVisitor(?Model $user)
{
$this->visitor = $user;
return $this;
}
/**
* Retrieve visitor (user)
*
* @return Model|null
*/
public function getVisitor() : ?Model
{
return $this->visitor;
}
/**
* Create a visit log.
*
* @param Model $model
*/
public function visit(Model $model = null)
{
$data = $this->prepareLog();
if (method_exists($model, 'visitLogs')) {
$visit = $model->visitLogs()->create($data);
} else {
$visit = Visit::create($data);
}
return $visit;
}
/**
* Retrieve online visitors.
*
* @param string $model
* @param int $seconds
*/
public function onlineVisitors(string $model, $seconds = 180)
{
return app($model)->online()->get();
}
/**
* Determine if given visitor or current one is online.
*
* @param Model|null $visitor
* @param int $seconds
*
* @return bool
*/
public function isOnline(?Model $visitor = null, $seconds = 180)
{
$time = now()->subSeconds($seconds);
$visitor = $visitor ?? $this->getVisitor();
if (empty($visitor)) {
return false;
}
return Visit::whereHasMorph('visitor', get_class($visitor), function ($query) use ($visitor, $time) {
$query->where('visitor_id', $visitor->id);
})->whereDate('created_at', '>=', $time)->count() > 0;
}
/**
* Prepare log's data.
*
* @return array
*
* @throws \Exception
*/
protected function prepareLog() : array
{
return [
'method' => $this->method(),
'request' => $this->request(),
'url' => $this->url(),
'referer' => $this->referer(),
'languages' => $this->languages(),
'useragent' => $this->userAgent(),
'headers' => $this->httpHeaders(),
'device' => $this->device(),
'platform' => $this->platform(),
'browser' => $this->browser(),
'ip' => $this->ip(),
'visitor_id' => $this->getVisitor() ? $this->getVisitor()->id : null,
'visitor_type' => $this->getVisitor() ? get_class($this->getVisitor()): null
];
}
/**
* Retrieve current driver instance or generate new one.
*
* @return mixed|object
*
* @throws \Exception
*/
protected function getDriverInstance()
{
if (!empty($this->driverInstance)) {
return $this->driverInstance;
}
return $this->getFreshDriverInstance();
}
/**
* Get new driver instance
*
* @return Driver
*
* @throws \Exception
*/
protected function getFreshDriverInstance()
{
$this->validateDriver();
$driverClass = $this->config['drivers'][$this->driver];
return app($driverClass);
}
/**
* Validate driver.
*
* @throws \Exception
*/
protected function validateDriver()
{
if (empty($this->driver)) {
throw new DriverNotFoundException('Driver not selected or default driver does not exist.');
}
$driverClass = $this->config['drivers'][$this->driver];
if (empty($driverClass) || !class_exists($driverClass)) {
throw new DriverNotFoundException('Driver not found in config file. Try updating the package.');
}
$reflect = new \ReflectionClass($driverClass);
if (!$reflect->implementsInterface(UserAgentParser::class)) {
throw new \Exception("Driver must be an instance of Contracts\Driver.");
}
}
}