Skip to content

Commit

Permalink
馃毀 refactor for postal/postal v2
Browse files Browse the repository at this point in the history
  • Loading branch information
willpower232 committed Jul 24, 2023
1 parent bc5c219 commit 6eff73c
Show file tree
Hide file tree
Showing 7 changed files with 154 additions and 118 deletions.
14 changes: 9 additions & 5 deletions phpstan-baseline.neon
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@ parameters:
count: 1
path: src/PostalNotificationChannel.php

-
message: "#^Access to an undefined property Postal\\\\SendResult\\:\\:\\$result\\.$#"
count: 1
path: src/PostalTransport.php

-
message: "#^Access to an undefined property object\\:\\:\\$body\\.$#"
count: 2
Expand Down Expand Up @@ -95,3 +90,12 @@ parameters:
count: 1
path: src/PostalTransport.php

-
message: "#^Parameter \\#1 \\$content of method Postal\\\\Send\\\\Message\\:\\:htmlBody\\(\\) expects string, resource\\|string given\\.$#"
count: 1
path: src/PostalTransport.php

-
message: "#^Parameter \\#1 \\$content of method Postal\\\\Send\\\\Message\\:\\:plainBody\\(\\) expects string, resource\\|string given\\.$#"
count: 1
path: src/PostalTransport.php
2 changes: 1 addition & 1 deletion src/PostalNotificationChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class PostalNotificationChannel extends MailChannel
*
* @param mixed $notifiable
* @param \Illuminate\Notifications\Notification $notification
* @return void
* @return \Illuminate\Mail\SentMessage|null
*/
public function send($notifiable, Notification $notification)
{
Expand Down
13 changes: 10 additions & 3 deletions src/PostalServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,19 @@ public function boot(): void
}

Mail::extend('postal', function (array $config = []) {
$config = config('postal', []);
$config = config('postal');

if (! is_array($config)) {
$config = [];
throw new \RuntimeException('missing Postal configuration');
}
if (! is_string($config['domain'])) {
throw new \RuntimeException('missing Postal domain configuration');
}
if (! is_string($config['key'])) {
throw new \RuntimeException('missing Postal key configuration');
}

return new PostalTransport(new Client($config['domain'] ?? null, $config['key'] ?? null));
return new PostalTransport(new Client($config['domain'], $config['key']));
});
}
}
28 changes: 13 additions & 15 deletions src/PostalTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@

namespace SynergiTech\Postal;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\DB;
use Postal\Client;
use Postal\Error;
use Postal\SendMessage;
use Postal\SendResult;
use Postal\ApiException;
use Postal\Send\Message as SendMessage;
use Postal\Send\Result as SendResult;
use Symfony\Component\Mailer\Exception\TransportException;
use Symfony\Component\Mailer\SentMessage;
use Symfony\Component\Mailer\Transport\AbstractTransport;
Expand Down Expand Up @@ -37,16 +35,16 @@ protected function doSend(SentMessage $sentMessage): void
$postalmessage = $this->symfonyToPostal($symfonyMessage);

try {
$response = $postalmessage->send();
} catch (Error $error) {
$response = $this->client->send->message($postalmessage);
} catch (ApiException $error) {
throw new TransportException($error->getMessage(), $error->getCode(), $error);
}

$headers = $symfonyMessage->getHeaders();

// send known header back for laravel to match emails coming out of Postal
// - doesn't seem we can replace Message-ID
$headers->addTextHeader('Postal-Message-ID', $response->result->message_id);
$headers->addTextHeader('Postal-Message-ID', $response->message_id);

if (config('postal.enable.emaillogging') !== true) {
return;
Expand All @@ -61,7 +59,7 @@ protected function doSend(SentMessage $sentMessage): void
if ($emailable_type != '' && $emailable_id != '') {
$emailmodel = config('postal.models.email');
\DB::table((new $emailmodel)->getTable())
->where('postal_email_id', $response->result->message_id)
->where('postal_email_id', $response->message_id)
->update([
'emailable_type' => $emailable_type,
'emailable_id' => $emailable_id,
Expand Down Expand Up @@ -107,13 +105,13 @@ private function symfonyToPostal(Email $symfonyMessage): SendMessage
$postalMessage->htmlBody($symfonyMessage->getHtmlBody());
}

foreach ($symfonyMessage->getAttachments() as $symfonyPart) {
foreach ($symfonyMessage->getAttachments() as $index => $symfonyPart) {
$filename = $symfonyPart
->getPreparedHeaders()
->getHeaderParameter('content-disposition', 'filename');

$postalMessage->attach(
$filename,
$filename ?? "attached_file_$index",
$symfonyPart->getMediaType() . '/' . $symfonyPart->getMediaSubtype(),
$symfonyPart->getBody()
);
Expand Down Expand Up @@ -162,9 +160,9 @@ private function recordEmailsFromResponse(Email $symfonyMessage, SendResult $res
$email->body = $symfonyMessage->getHtmlBody();
}

$email->postal_email_id = $response->result->message_id;
$email->postal_id = $message->id();
$email->postal_token = $message->token();
$email->postal_email_id = $response->message_id;
$email->postal_id = $message->id;
$email->postal_token = $message->token;

$email->save();
}
Expand All @@ -181,7 +179,7 @@ private function stringifyAddress(Address $address): string

private function getNewSendMessage(): SendMessage
{
return new SendMessage($this->client);
return new SendMessage();
}

/**
Expand Down
92 changes: 53 additions & 39 deletions tests/FeatureTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
use Illuminate\Support\Facades\Mail;
use Illuminate\Support\Facades\Notification;
use Postal\Client;
use Postal\Send\Result;
use Postal\SendService;
use Symfony\Component\Mailer\DelayedEnvelope;
use SynergiTech\Postal\PostalNotificationChannel;
use SynergiTech\Postal\PostalTransport;
Expand All @@ -13,19 +15,23 @@ class FeatureTest extends TestCase
{
public function testSendingNotificationOnDemand()
{
$result = new \stdClass;
$result->message_id = 'feature-test';
$message = new \stdClass();
$message->id = 'feature-test';
$message->token = 'feature-test';
$result->messages['[email protected]'] = $message;

$clientMock = $this->createMock(Client::class);
$clientMock
->method('makeRequest')
->willReturn($result);

Mail::extend('postal', function (array $config = []) use ($clientMock) {
Mail::extend('postal', function (array $config = []) {
$clientMock = $this->createMock(Client::class);
$serviceMock = $this->createMock(SendService::class);

$result = new Result([
'message_id' => 'feature-test',
'messages' => ['[email protected]' => [
'id' => 123,
'token' => 'feature-test',
]],
]);

$serviceMock->method('message')
->willReturn($result);

$clientMock->send = $serviceMock;

return new PostalTransport($clientMock);
});

Expand All @@ -48,19 +54,23 @@ public function testSendingNotificationOnDemand()

public function testSendingNotificationOnDemandWithAlias()
{
$result = new \stdClass;
$result->message_id = 'feature-test';
$message = new \stdClass();
$message->id = 'feature-test';
$message->token = 'feature-test';
$result->messages['[email protected]'] = $message;

$clientMock = $this->createMock(Client::class);
$clientMock
->method('makeRequest')
->willReturn($result);

Mail::extend('postal', function (array $config = []) use ($clientMock) {
Mail::extend('postal', function (array $config = []) {
$clientMock = $this->createMock(Client::class);
$serviceMock = $this->createMock(SendService::class);

$result = new Result([
'message_id' => 'feature-test',
'messages' => ['[email protected]' => [
'id' => 123,
'token' => 'feature-test',
]],
]);

$serviceMock->method('message')
->willReturn($result);

$clientMock->send = $serviceMock;

return new PostalTransport($clientMock);
});

Expand All @@ -83,19 +93,23 @@ public function testSendingNotificationOnDemandWithAlias()

public function testSendingNotificationWithNotifiableTrait()
{
$result = new \stdClass;
$result->message_id = 'feature-test';
$message = new \stdClass();
$message->id = 'feature-test';
$message->token = 'feature-test';
$result->messages['[email protected]'] = $message;

$clientMock = $this->createMock(Client::class);
$clientMock
->method('makeRequest')
->willReturn($result);

Mail::extend('postal', function (array $config = []) use ($clientMock) {
Mail::extend('postal', function (array $config = []) {
$clientMock = $this->createMock(Client::class);
$serviceMock = $this->createMock(SendService::class);

$result = new Result([
'message_id' => 'feature-test',
'messages' => ['[email protected]' => [
'id' => 123,
'token' => 'feature-test',
]],
]);

$serviceMock->method('message')
->willReturn($result);

$clientMock->send = $serviceMock;

return new PostalTransport($clientMock);
});

Expand Down
4 changes: 4 additions & 0 deletions tests/PostalServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ public function testBoot()
{
// assert the service provider did boot and extend the mail

config([
'postal' => ['domain' => 'example.com', 'key' => 'hunter2'],
]);

$driver = app('mail.manager')
->createSymfonyTransport(config('mail.mailers.postal'));

Expand Down
Loading

0 comments on commit 6eff73c

Please sign in to comment.