-
Notifications
You must be signed in to change notification settings - Fork 78
/
SessionTracker.php
453 lines (382 loc) · 10.6 KB
/
SessionTracker.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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
<?php
namespace Bugsnag;
use Exception;
use InvalidArgumentException;
class SessionTracker
{
/**
* The current session payload version.
*
* @deprecated Use {HttpClient::SESSION_PAYLOAD_VERSION} instead.
*
* @var string
*/
protected static $SESSION_PAYLOAD_VERSION = HttpClient::SESSION_PAYLOAD_VERSION;
/**
* The amount of time between each sending attempt.
*
* @var int
*/
protected static $DELIVERY_INTERVAL = 30;
/**
* The maximum amount of sessions to hold onto.
*
* @var int
*/
protected static $MAX_SESSION_COUNT = 50;
/**
* The key for storing session counts.
*
* @var string
*/
protected static $SESSION_COUNTS_KEY = 'bugsnag-session-counts';
/**
* The key for storing last sent data.
*
* @var string
*/
protected static $SESSIONS_LAST_SENT_KEY = 'bugsnag-sessions-last-sent';
/**
* @var Configuration
*/
protected $config;
/**
* @var HttpClient
*/
protected $http;
/**
* An array of session counts.
*
* @var array
*/
protected $sessionCounts = [];
/**
* A locking function for synchronisation.
*
* @var callable|null
*/
protected $lockFunction = null;
/**
* An unlocking function for synchronisation.
*
* @var callable|null
*/
protected $unlockFunction = null;
/**
* A function to use when retrying a failed delivery.
*
* @var callable|null
*/
protected $retryFunction = null;
/**
* A function to store/get data.
*
* @var callable|null
*/
protected $storageFunction = null;
/**
* A function to store/get sessions.
*
* @var callable|null
*/
protected $sessionFunction = null;
/**
* The last time the sessions were delivered.
*
* @var int
*/
protected $lastSent = 0;
/**
* The current session.
*
* @var array
*/
protected $currentSession = [];
/**
* @param Configuration $config
* @param HttpClient|null $http A HttpClient instance to use. Passing null
* is deprecated and $http will be required
* in the next major version.
*/
public function __construct(Configuration $config, HttpClient $http = null)
{
$this->config = $config;
$this->http = $http === null
? new HttpClient($config, $config->getSessionClient())
: $http;
}
/**
* @param Configuration $config
*
* @return void
*
* @deprecated Change the Configuration via the Client object instead.
*/
public function setConfig(Configuration $config)
{
$this->config = $config;
}
/**
* @return void
*/
public function startSession()
{
$currentTime = date('Y-m-d\TH:i:00');
$session = [
'id' => uniqid('', true),
'startedAt' => $currentTime,
'events' => [
'handled' => 0,
'unhandled' => 0,
],
];
$this->setCurrentSession($session);
$this->incrementSessions($currentTime);
}
/**
* @param array $session
*
* @return void
*/
public function setCurrentSession(array $session)
{
if (is_callable($this->sessionFunction)) {
call_user_func($this->sessionFunction, $session);
} else {
$this->currentSession = $session;
}
}
/**
* @return array
*/
public function getCurrentSession()
{
if (is_callable($this->sessionFunction)) {
$currentSession = call_user_func($this->sessionFunction);
if (is_array($currentSession)) {
return $currentSession;
}
return [];
}
return $this->currentSession;
}
/**
* @return void
*/
public function sendSessions()
{
$locked = false;
if (is_callable($this->lockFunction) && is_callable($this->unlockFunction)) {
call_user_func($this->lockFunction);
$locked = true;
}
try {
$this->deliverSessions();
} finally {
if ($locked) {
call_user_func($this->unlockFunction);
}
}
}
/**
* @param callable $lock
* @param callable $unlock
*
* @return void
*/
public function setLockFunctions($lock, $unlock)
{
if (!is_callable($lock) || !is_callable($unlock)) {
throw new InvalidArgumentException('Both lock and unlock functions must be callable');
}
$this->lockFunction = $lock;
$this->unlockFunction = $unlock;
}
/**
* @param callable $function
*
* @return void
*/
public function setRetryFunction($function)
{
if (!is_callable($function)) {
throw new InvalidArgumentException('The retry function must be callable');
}
$this->retryFunction = $function;
}
/**
* @param callable $function
*
* @return void
*/
public function setStorageFunction($function)
{
if (!is_callable($function)) {
throw new InvalidArgumentException('Storage function must be callable');
}
$this->storageFunction = $function;
}
/**
* @param callable $function
*
* @return void
*/
public function setSessionFunction($function)
{
if (!is_callable($function)) {
throw new InvalidArgumentException('Session function must be callable');
}
$this->sessionFunction = $function;
}
/**
* @param string $minute
* @param int $count
* @param bool $deliver
*
* @return void
*/
protected function incrementSessions($minute, $count = 1, $deliver = true)
{
$locked = false;
if (is_callable($this->lockFunction) && is_callable($this->unlockFunction)) {
call_user_func($this->lockFunction);
$locked = true;
}
try {
$sessionCounts = $this->getSessionCounts();
if (array_key_exists($minute, $sessionCounts)) {
$sessionCounts[$minute] += $count;
} else {
$sessionCounts[$minute] = $count;
}
$this->setSessionCounts($sessionCounts);
if (count($sessionCounts) > self::$MAX_SESSION_COUNT) {
$this->trimOldestSessions();
}
$lastSent = $this->getLastSent();
if ($deliver && ((time() - $lastSent) > self::$DELIVERY_INTERVAL)) {
$this->deliverSessions();
}
} finally {
if ($locked) {
call_user_func($this->unlockFunction);
}
}
}
/**
* @return array
*/
protected function getSessionCounts()
{
if (is_callable($this->storageFunction)) {
$sessionCounts = call_user_func($this->storageFunction, self::$SESSION_COUNTS_KEY);
if (is_array($sessionCounts)) {
return $sessionCounts;
}
return [];
}
return $this->sessionCounts;
}
/**
* @param array $sessionCounts
*
* @return void
*/
protected function setSessionCounts(array $sessionCounts)
{
if (is_callable($this->storageFunction)) {
call_user_func($this->storageFunction, self::$SESSION_COUNTS_KEY, $sessionCounts);
}
$this->sessionCounts = $sessionCounts;
}
/**
* @return void
*/
protected function trimOldestSessions()
{
$sessions = $this->getSessionCounts();
// Sort the session counts so that the oldest minutes are first
// i.e. '2000-01-01T00:00:00' should be after '2000-01-01T00:01:00'
uksort($sessions, function ($a, $b) {
return strtotime($b) - strtotime($a);
});
$sessionCounts = array_slice($sessions, 0, self::$MAX_SESSION_COUNT);
$this->setSessionCounts($sessionCounts);
}
/**
* @param array $sessions
*
* @return array
*/
protected function constructPayload(array $sessions)
{
$formattedSessions = [];
foreach ($sessions as $minute => $count) {
$formattedSessions[] = ['startedAt' => $minute, 'sessionsStarted' => $count];
}
return [
'notifier' => $this->config->getNotifier(),
'device' => $this->config->getDeviceData(),
'app' => $this->config->getAppData(),
'sessionCounts' => $formattedSessions,
];
}
/**
* @return void
*/
protected function deliverSessions()
{
$sessions = $this->getSessionCounts();
$this->setSessionCounts([]);
if (count($sessions) === 0) {
return;
}
if (!$this->config->shouldNotify()) {
return;
}
$payload = $this->constructPayload($sessions);
$this->setLastSent();
try {
$this->http->sendSessions($payload);
} catch (Exception $e) {
error_log('Bugsnag Warning: Couldn\'t notify. '.$e->getMessage());
if (is_callable($this->retryFunction)) {
call_user_func($this->retryFunction, $sessions);
} else {
foreach ($sessions as $minute => $count) {
$this->incrementSessions($minute, $count, false);
}
}
}
}
/**
* @return void
*/
protected function setLastSent()
{
$time = time();
if (is_callable($this->storageFunction)) {
call_user_func($this->storageFunction, self::$SESSIONS_LAST_SENT_KEY, $time);
} else {
$this->lastSent = $time;
}
}
/**
* @return int
*/
protected function getLastSent()
{
if (is_callable($this->storageFunction)) {
$lastSent = call_user_func($this->storageFunction, self::$SESSIONS_LAST_SENT_KEY);
// $lastSent may be a string despite us storing an integer because
// some storage backends will convert all values into strings
// note: some invalid integers pass 'is_numeric' (e.g. bigger than
// PHP_INT_MAX) but these get cast to '0', which is the default anyway
if (is_numeric($lastSent)) {
return (int) $lastSent;
}
return 0;
}
return $this->lastSent;
}
}