Initial xentral_oss_20.3.c9ffacf
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Xentral\Modules\Pipedrive\Service;
|
||||
|
||||
use Xentral\Components\Database\Database;
|
||||
use Xentral\Components\Database\Exception\DatabaseExceptionInterface;
|
||||
use Xentral\Modules\Pipedrive\Exception\PipedriveEventException;
|
||||
|
||||
final class PipedriveEventService
|
||||
{
|
||||
|
||||
/** @var Database $db */
|
||||
private $db;
|
||||
|
||||
/**
|
||||
* @param Database $db
|
||||
*/
|
||||
public function __construct(Database $db)
|
||||
{
|
||||
$this->db = $db;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $event
|
||||
*
|
||||
* @throws PipedriveEventException
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function add(string $event): int
|
||||
{
|
||||
$add = 'INSERT INTO `pipedrive_events` (`event`, `created_at`)
|
||||
VALUES (:event, NOW())';
|
||||
try {
|
||||
$this->db->perform($add, ['event' => $event]);
|
||||
} catch (DatabaseExceptionInterface $exception) {
|
||||
throw new PipedriveEventException($exception->getMessage());
|
||||
}
|
||||
|
||||
return $this->db->lastInsertId();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int $id
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function deleteById(int $id): void
|
||||
{
|
||||
$this->db->perform('DELETE FROM `pipedrive_events` WHERE `id` = :id', ['id' => $id]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function deleteAll(): void
|
||||
{
|
||||
$this->db->perform('DELETE FROM `pipedrive_events`');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int $days
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function deleteByInterval(int $days = 30): void
|
||||
{
|
||||
$sql = 'DELETE FROM `pipedrive_events` WHERE `created_at` < DATE_SUB(NOW(), INTERVAL :days DAY)';
|
||||
$this->db->perform($sql, ['days' => $days]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user