-
-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathIntegration.php
150 lines (128 loc) · 3.82 KB
/
Integration.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
<?php
namespace Sentry\Laravel;
use Sentry\FlushableClientInterface;
use Sentry\SentrySdk;
use Sentry\State\Hub;
use Sentry\State\HubInterface;
use function Sentry\addBreadcrumb;
use function Sentry\configureScope;
use Sentry\Breadcrumb;
use Sentry\Event;
use Sentry\Integration\IntegrationInterface;
use Sentry\State\Scope;
class Integration implements IntegrationInterface
{
/**
* @var null|string
*/
private static $transaction;
/**
* {@inheritdoc}
*/
public function setupOnce(): void
{
Scope::addGlobalEventProcessor(function (Event $event): Event {
$self = static::getCurrentHub()->getIntegration(self::class);
if (!$self instanceof self) {
return $event;
}
$event->setTransaction($self->getTransaction());
return $event;
});
}
/**
* Adds a breadcrumb if the integration is enabled for Laravel.
*
* @param Breadcrumb $breadcrumb
*/
public static function addBreadcrumb(Breadcrumb $breadcrumb): void
{
$self = static::getCurrentHub()->getIntegration(self::class);
if (!$self instanceof self) {
return;
}
addBreadcrumb($breadcrumb);
}
/**
* Configures the scope if the integration is enabled for Laravel.
*
* @param callable $callback
*/
public static function configureScope(callable $callback): void
{
$self = static::getCurrentHub()->getIntegration(self::class);
if (!$self instanceof self) {
return;
}
configureScope($callback);
}
/**
* @return null|string
*/
public static function getTransaction()
{
return self::$transaction;
}
/**
* @param null|string $transaction
*/
public static function setTransaction($transaction): void
{
self::$transaction = $transaction;
}
/**
* Block until all async events are processed for the HTTP transport.
*
* @internal This is not part of the public API and is here temporarily until
* the underlying issue can be resolved, this method will be removed.
*/
public static function flushEvents(): void
{
$client = static::getCurrentHub()->getClient();
if ($client instanceof FlushableClientInterface) {
$client->flush();
}
}
/**
* Gets the current hub. If it's not initialized then creates a new instance
* and sets it as current hub.
*
* The is here for legacy reasons where we used the Hub directly as a singleton.
*
* @TODO: This method should be removed and replaced with calls to `SentrySdk::getCurrentHub()` directly once
* `sentry/sentry` 3.0 is released and pinned as an dependency.
*
* @internal This is not part of the public API and is here temporarily.
*
* @return \Sentry\State\HubInterface
*/
public static function getCurrentHub(): HubInterface
{
if (class_exists(SentrySdk::class)) {
return SentrySdk::getCurrentHub();
}
return Hub::getCurrent();
}
/**
* Sets the current hub.
*
* The is here for legacy reasons where we used the Hub directly as a singleton.
*
* @TODO: This method should be removed and replaced with calls to `SentrySdk::getCurrentHub()` directly once
* `sentry/sentry` 3.0 is released and pinned as an dependency.
*
* @internal This is not part of the public API and is here temporarily.
*
* @param \Sentry\State\HubInterface $hub
*
* @return void
*/
public static function setCurrentHub(HubInterface $hub): void
{
if (class_exists(SentrySdk::class)) {
SentrySdk::setCurrentHub($hub);
return;
}
Hub::setCurrent($hub);
}
}