-
Notifications
You must be signed in to change notification settings - Fork 1
/
PostgresDeduplicator.php
49 lines (42 loc) · 1.19 KB
/
PostgresDeduplicator.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
<?php
declare(strict_types=1);
namespace Telephantast\PdoPersistence;
use Telephantast\MessageBus\Deduplication\Deduplicator;
/**
* @api
*/
final readonly class PostgresDeduplicator implements Deduplicator
{
/**
* @param literal-string $table
*/
public function __construct(
private \PDO $connection,
private string $table,
) {}
public function createTable(): void
{
$this->connection->exec(
<<<SQL
create table if not exists {$this->table}
(
queue character varying(255) not null,
message_id character varying(255) not null,
primary key (queue, message_id)
)
SQL,
);
}
public function isHandled(string $queue, string $messageId): bool
{
$statement = $this->connection->prepare(
<<<SQL
insert into {$this->table} (queue, message_id)
values (?, ?)
on conflict (queue, message_id) do nothing
SQL,
);
$statement->execute([$queue, $messageId]);
return $statement->rowCount() === 0;
}
}