forked from fa/breadcrumb-the-shire
143 lines
4.3 KiB
PHP
143 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace MintyPHP\Repository;
|
|
|
|
use MintyPHP\DB;
|
|
|
|
class MailLogRepository
|
|
{
|
|
public static function create(array $data): ?int
|
|
{
|
|
$id = DB::insert(
|
|
'insert into mail_log (to_email, subject, template, status, created_at) values (?,?,?,?,NOW())',
|
|
$data['to_email'],
|
|
$data['subject'],
|
|
$data['template'] ?? null,
|
|
$data['status'] ?? 'queued'
|
|
);
|
|
return $id ? (int) $id : null;
|
|
}
|
|
|
|
public static function markSent(int $id, ?string $providerMessageId = null): bool
|
|
{
|
|
$result = DB::update(
|
|
'update mail_log set status = ?, sent_at = NOW(), provider_message_id = ?, error_message = NULL where id = ?',
|
|
'sent',
|
|
$providerMessageId,
|
|
(string) $id
|
|
);
|
|
return $result !== false;
|
|
}
|
|
|
|
public static function markFailed(int $id, string $errorMessage): bool
|
|
{
|
|
$result = DB::update(
|
|
'update mail_log set status = ?, error_message = ? where id = ?',
|
|
'failed',
|
|
$errorMessage,
|
|
(string) $id
|
|
);
|
|
return $result !== false;
|
|
}
|
|
|
|
private static function unwrap(?array $row): ?array
|
|
{
|
|
if (!$row) {
|
|
return null;
|
|
}
|
|
return $row['mail_log'] ?? null;
|
|
}
|
|
|
|
private static function unwrapList($rows): array
|
|
{
|
|
if (!is_array($rows)) {
|
|
return [];
|
|
}
|
|
$list = [];
|
|
foreach ($rows as $row) {
|
|
$mailLog = $row['mail_log'] ?? null;
|
|
if (is_array($mailLog)) {
|
|
$list[] = $mailLog;
|
|
}
|
|
}
|
|
return $list;
|
|
}
|
|
|
|
public static function listPaged(array $options): array
|
|
{
|
|
$limit = (int) ($options['limit'] ?? 10);
|
|
if ($limit < 1) {
|
|
$limit = 10;
|
|
} elseif ($limit > 100) {
|
|
$limit = 100;
|
|
}
|
|
|
|
$offset = (int) ($options['offset'] ?? 0);
|
|
if ($offset < 0) {
|
|
$offset = 0;
|
|
}
|
|
|
|
$search = trim((string) ($options['search'] ?? ''));
|
|
$order = (string) ($options['order'] ?? 'created_at');
|
|
$dir = strtolower((string) ($options['dir'] ?? 'desc'));
|
|
$status = trim((string) ($options['status'] ?? ''));
|
|
$createdFrom = trim((string) ($options['created_from'] ?? ''));
|
|
$createdTo = trim((string) ($options['created_to'] ?? ''));
|
|
|
|
$allowedOrder = ['id', 'created_at', 'sent_at', 'to_email', 'subject', 'status'];
|
|
if (!in_array($order, $allowedOrder, true)) {
|
|
$order = 'created_at';
|
|
}
|
|
if (!in_array($dir, ['asc', 'desc'], true)) {
|
|
$dir = 'desc';
|
|
}
|
|
|
|
$where = [];
|
|
$params = [];
|
|
if ($search !== '') {
|
|
$like = '%' . $search . '%';
|
|
$where[] = '(to_email like ? or subject like ? or template like ?)';
|
|
$params[] = $like;
|
|
$params[] = $like;
|
|
$params[] = $like;
|
|
}
|
|
if ($status !== '') {
|
|
$where[] = 'status = ?';
|
|
$params[] = $status;
|
|
}
|
|
if ($createdFrom !== '') {
|
|
$where[] = 'created_at >= ?';
|
|
$params[] = $createdFrom . ' 00:00:00';
|
|
}
|
|
if ($createdTo !== '') {
|
|
$where[] = 'created_at <= ?';
|
|
$params[] = $createdTo . ' 23:59:59';
|
|
}
|
|
|
|
$whereSql = $where ? (' where ' . implode(' and ', $where)) : '';
|
|
$count = DB::selectValue('select count(*) from mail_log' . $whereSql, ...$params);
|
|
$total = $count ? (int) $count : 0;
|
|
|
|
$query = 'select id, to_email, subject, template, status, created_at, sent_at, error_message, provider_message_id from mail_log' .
|
|
$whereSql .
|
|
sprintf(' order by `%s` %s limit ? offset ?', $order, $dir);
|
|
|
|
$queryParams = array_merge($params, [(string) $limit, (string) $offset]);
|
|
$rows = call_user_func_array(['MintyPHP\\DB', 'select'], array_merge([$query], $queryParams));
|
|
|
|
return [
|
|
'total' => $total,
|
|
'rows' => self::unwrapList($rows),
|
|
];
|
|
}
|
|
|
|
public static function find(int $id): ?array
|
|
{
|
|
$row = DB::selectOne(
|
|
'select id, to_email, subject, template, status, created_at, sent_at, error_message, provider_message_id from mail_log where id = ? limit 1',
|
|
(string) $id
|
|
);
|
|
return self::unwrap($row);
|
|
}
|
|
}
|