Skip to content

Commit 23aed22

Browse files
authored
feat: Add the ability to set attachment mime type (#62)
1 parent 43f2740 commit 23aed22

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

src/Http/Controllers/WebhookController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function handleWebhook(Request $request): Response
3434
{
3535
$payload = json_decode($request->getContent(), true);
3636

37-
if(is_null($payload) || !isset($payload['type'])) {
37+
if (is_null($payload) || ! isset($payload['type'])) {
3838
return new Response('Invalid payload', 400);
3939
}
4040

src/Http/Middleware/VerifyWebhookSignature.php

+8-13
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class VerifyWebhookSignature
1313
/**
1414
* Handle an incoming request.
1515
*
16-
* @param \Illuminate\Http\Request $request
1716
* @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next
1817
*/
1918
public function handle(Request $request, Closure $next)
@@ -37,18 +36,14 @@ public function handle(Request $request, Closure $next)
3736
/**
3837
* Transform headers to a simple associative array.
3938
* This method extracts the first value from each header and returns an array where each key is the header name and the associated value is that first header value
40-
*
41-
* @param \Illuminate\Http\Request $request
42-
* @return array
4339
*/
40+
protected function getTransformedHeaders(Request $request): array
41+
{
42+
$headers = [];
43+
foreach ($request->headers->all() as $key => $value) {
44+
$headers[$key] = $value[0];
45+
}
4446

45-
protected function getTransformedHeaders(Request $request): array
46-
{
47-
$headers = [];
48-
foreach($request->headers->all() as $key => $value) {
49-
$headers[$key] = $value[0];
50-
}
51-
52-
return $headers;
53-
}
47+
return $headers;
48+
}
5449
}

src/Transport/ResendTransportFactory.php

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ protected function doSend(SentMessage $message): void
5151
$item = [
5252
'content' => str_replace("\r\n", '', $attachment->bodyToString()),
5353
'filename' => $filename,
54+
'content_type' => $headers->get('Content-Type')->getBody(),
5455
];
5556

5657
$attachments[] = $item;

tests/Http/Controllers/WebhookController.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,12 @@
6565
});
6666

6767
// This function creates a new Request object with a JSON body that does not include the fields expected by your controller.
68-
function invalidWebhookRequest() {
68+
function invalidWebhookRequest()
69+
{
6970
return new Illuminate\Http\Request([], [], [], [], [], ['CONTENT_TYPE' => 'application/json'], json_encode(['invalid' => 'data']));
7071
}
7172

72-
test('it returns an error response for invalid payload', function() {
73+
test('it returns an error response for invalid payload', function () {
7374
$request = invalidWebhookRequest();
7475

7576
$response = (new Controller)->handleWebhook($request);

tests/Transport/ResendTransportFactory.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@
130130
$email->attach(
131131
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nunc augue, consectetur id neque eget, varius dignissim diam.',
132132
'lorem-ipsum.txt',
133+
'text/plain'
133134
);
134135

135136
$apiResponse = new Email([
@@ -146,8 +147,10 @@
146147
! empty($arg['attachments']) &&
147148
array_key_exists('filename', $arg['attachments'][0]) &&
148149
array_key_exists('content', $arg['attachments'][0]) &&
150+
array_key_exists('content_type', $arg['attachments'][0]) &&
149151
$arg['attachments'][0]['filename'] === 'lorem-ipsum.txt' &&
150-
$arg['attachments'][0]['content'] === 'TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQsIGNvbnNlY3RldHVyIGFkaXBpc2NpbmcgZWxpdC4gQWVuZWFuIG51bmMgYXVndWUsIGNvbnNlY3RldHVyIGlkIG5lcXVlIGVnZXQsIHZhcml1cyBkaWduaXNzaW0gZGlhbS4=';
152+
$arg['attachments'][0]['content'] === 'TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQsIGNvbnNlY3RldHVyIGFkaXBpc2NpbmcgZWxpdC4gQWVuZWFuIG51bmMgYXVndWUsIGNvbnNlY3RldHVyIGlkIG5lcXVlIGVnZXQsIHZhcml1cyBkaWduaXNzaW0gZGlhbS4=' &&
153+
$arg['attachments'][0]['content_type'] === 'text/plain';
151154
}))
152155
->andReturn($apiResponse);
153156

0 commit comments

Comments
 (0)