forked from laravel/telescope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIncomingDumpEntry.php
62 lines (55 loc) · 1.56 KB
/
IncomingDumpEntry.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
<?php
namespace Laravel\Telescope;
class IncomingDumpEntry extends IncomingEntry
{
/**
* Determine if the incoming entry is an exception.
*
* @return bool
*/
public function isDump()
{
return true;
}
/**
* Assign entry point parameters from the given batch entries.
*
* @param array $batch
* @return $this
*/
public function assignEntryPointFromBatch(array $batch)
{
$entryPoint = collect($batch)->first(function ($entry) {
return in_array($entry->type, [EntryType::REQUEST, EntryType::JOB, EntryType::COMMAND]);
});
if (! $entryPoint) {
return;
}
$this->content = array_merge($this->content, [
'entry_point_type' => $entryPoint->type,
'entry_point_uuid' => $entryPoint->uuid,
'entry_point_description' => $this->entryPointDescription($entryPoint),
]);
}
/**
* Description for the entry point.
*
* @param IncomingDumpEntry $entryPoint
* @return string
*/
private function entryPointDescription($entryPoint)
{
switch ($entryPoint->type){
case (EntryType::REQUEST):
return $entryPoint->content['method'].' '.$entryPoint->content['uri'];
break;
case (EntryType::JOB):
return $entryPoint->content['name'];
break;
case (EntryType::COMMAND):
return $entryPoint->content['command'];
break;
}
return '';
}
}