2022-11-28 22:56:21 -03:00
|
|
|
<?php
|
|
|
|
namespace ProVM\Emails\Repository;
|
|
|
|
|
|
|
|
use PDO;
|
|
|
|
use ProVM\Common\Factory\Model;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
use Safe\DateTimeImmutable;
|
|
|
|
use ProVM\Common\Define\Model as ModelInterface;
|
|
|
|
use ProVM\Common\Implement\Repository;
|
|
|
|
use ProVM\Emails\Model\Job as BaseModel;
|
|
|
|
|
|
|
|
class Job extends Repository
|
|
|
|
{
|
|
|
|
public function __construct(PDO $connection, LoggerInterface $logger, Model $factory)
|
|
|
|
{
|
|
|
|
parent::__construct($connection, $logger);
|
|
|
|
$this->setFactory($factory)
|
|
|
|
->setTable('attachments_jobs');
|
|
|
|
}
|
|
|
|
|
|
|
|
protected \ProVM\Common\Factory\Model $factory;
|
|
|
|
public function getFactory(): \ProVM\Common\Factory\Model
|
|
|
|
{
|
|
|
|
return $this->factory;
|
|
|
|
}
|
|
|
|
public function setFactory(\ProVM\Common\Factory\Model $factory): Job
|
|
|
|
{
|
|
|
|
$this->factory = $factory;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2023-06-08 20:49:27 -04:00
|
|
|
public function install(): void
|
|
|
|
{
|
|
|
|
$query = "
|
|
|
|
CREATE TABLE {$this->getTable()} (
|
|
|
|
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
|
|
`message_id` INT UNSIGNED NOT NULL,
|
|
|
|
`date_time` DATETIME NOT NULL,
|
|
|
|
`executed` INT(1) UNSIGNED DEFAULT 0,
|
|
|
|
PRIMARY KEY (`id`),
|
|
|
|
FOREIGN KEY `fk_messages_{$this->getTable()}` (`message_id`)
|
|
|
|
REFERENCES `messages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
|
|
)";
|
|
|
|
$this->getConnection()->query($query);
|
|
|
|
}
|
|
|
|
|
2022-11-28 22:56:21 -03:00
|
|
|
protected function fieldsForUpdate(): array
|
|
|
|
{
|
|
|
|
return $this->fieldsForInsert();
|
|
|
|
}
|
|
|
|
protected function valuesForUpdate(ModelInterface $model): array
|
|
|
|
{
|
|
|
|
return $this->valuesForInsert($model);
|
|
|
|
}
|
|
|
|
protected function fieldsForInsert(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'message_id',
|
|
|
|
'date_time',
|
|
|
|
'executed'
|
|
|
|
];
|
|
|
|
}
|
|
|
|
protected function valuesForInsert(ModelInterface $model): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
$model->getMessage()->getId(),
|
|
|
|
$model->getDateTime()->format('Y-m-d H:i:s'),
|
|
|
|
$model->isExecuted() ? 1 : 0
|
|
|
|
];
|
|
|
|
}
|
|
|
|
protected function defaultFind(ModelInterface $model): ModelInterface
|
|
|
|
{
|
|
|
|
return $this->fetchByMessageAndDate($model->getMessage()->getId(), $model->getDateTime()->format('Y-m-d H:i:s'));
|
|
|
|
}
|
|
|
|
protected function fieldsForCreate(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'message_id',
|
|
|
|
'date_time',
|
|
|
|
'executed'
|
|
|
|
];
|
|
|
|
}
|
|
|
|
protected function valuesForCreate(array $data): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
$data['message_id'],
|
|
|
|
$data['date_time'],
|
|
|
|
$data['executed'] ?? 0
|
|
|
|
];
|
|
|
|
}
|
|
|
|
protected function defaultSearch(array $data): ModelInterface
|
|
|
|
{
|
|
|
|
return $this->fetchByMessageAndDate($data['message_id'], $data['date_time']);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function load(array $row): ModelInterface
|
|
|
|
{
|
|
|
|
$model = (new BaseModel())
|
|
|
|
->setId($row['id'])
|
|
|
|
->setMessage($this->getFactory()->find(\ProVM\Emails\Model\Message::class)->fetchById($row['message_id']))
|
|
|
|
->setDateTime(new DateTimeImmutable($row['date_time']));
|
|
|
|
if ($row['executed'] ?? 0 === 1) {
|
|
|
|
$model->wasExecuted();
|
|
|
|
}
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function fetchAllPending(): array
|
|
|
|
{
|
|
|
|
$query = "SELECT * FROM {$this->getTable()} WHERE `executed` = 0";
|
|
|
|
return $this->fetchMany($query);
|
|
|
|
}
|
|
|
|
public function fetchByMessageAndDate(int $message_id, string $date_time): \ProVM\Emails\Model\Job
|
|
|
|
{
|
|
|
|
$query = "SELECT * FROM {$this->getTable()} WHERE `message_id` = ? AND `date_time` = ?";
|
|
|
|
return $this->fetchOne($query, [$message_id, $date_time]);
|
|
|
|
}
|
|
|
|
public function fetchPendingByMessage(int $message_id): \ProVM\Emails\Model\Job
|
|
|
|
{
|
|
|
|
$query = "SELECT * FROM {$this->getTable()} WHERE `message_id` = ? AND `executed` = 0";
|
|
|
|
return $this->fetchOne($query, [$message_id]);
|
|
|
|
}
|
2023-06-08 20:49:27 -04:00
|
|
|
}
|