Skip to content

Commit 3bd7466

Browse files
authored
feat: send user agent in http clients (#207)
1 parent 48418b9 commit 3bd7466

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

src/CheckInsClient.php

+3
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,9 @@ public function makeClient(): Client
191191
RequestOptions::AUTH => [
192192
$this->config['personal_auth_token'], ''
193193
],
194+
RequestOptions::HEADERS => [
195+
'User-Agent' => $this->getUserAgent(),
196+
],
194197
]);
195198
}
196199
}

src/Contracts/ApiClient.php

+10
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,14 @@ public function hasPersonalAuthToken(): bool
4343
return !empty($this->config['personal_auth_token']);
4444
}
4545

46+
public function getUserAgent(): string
47+
{
48+
$userAgent = 'Honeybadger PHP; ' . PHP_VERSION;
49+
if (isset($this->config['notifier'], $this->config['notifier']['name'], $this->config['notifier']['version'])) {
50+
$userAgent = $this->config['notifier']['name'] . ' ' . $this->config['notifier']['version'] . '; ' . PHP_VERSION;
51+
}
52+
53+
return $userAgent;
54+
}
55+
4656
}

src/HoneybadgerClient.php

+2
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,15 @@ public function events(array $events): void
9595

9696
public function makeClient(): Client
9797
{
98+
9899
return new Client([
99100
'base_uri' => $this->config['endpoint'],
100101
RequestOptions::HTTP_ERRORS => false,
101102
RequestOptions::HEADERS => [
102103
'X-API-Key' => $this->config['api_key'],
103104
'Accept' => 'application/json',
104105
'Content-Type' => 'application/json',
106+
'User-Agent' => $this->getUserAgent(),
105107
],
106108
RequestOptions::TIMEOUT => $this->config['client']['timeout'],
107109
RequestOptions::PROXY => $this->config['client']['proxy'],

0 commit comments

Comments
 (0)