66 lines
1.6 KiB
PHP
66 lines
1.6 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\GPodderSync\Db\EpisodeAction;
|
|
|
|
use OCP\AppFramework\Db\DoesNotExistException;
|
|
use OCP\AppFramework\Db\MultipleObjectsReturnedException;
|
|
use OCP\AppFramework\Db\QBMapper;
|
|
use OCP\DB\Exception;
|
|
use OCP\DB\QueryBuilder\IQueryBuilder;
|
|
use OCP\IDBConnection;
|
|
|
|
class EpisodeActionMapper extends QBMapper
|
|
{
|
|
public function __construct(IDBConnection $db)
|
|
{
|
|
parent::__construct($db, 'gpodder_episode_action', EpisodeActionEntity::class);
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function findAll(int $sinceTimestamp, string $userId): array
|
|
{
|
|
$qb = $this->db->getQueryBuilder();
|
|
|
|
$qb->select('*')
|
|
->from($this->getTableName())
|
|
->where(
|
|
$qb->expr()->gt('timestamp_epoch', $qb->createNamedParameter($sinceTimestamp, IQueryBuilder::PARAM_INT))
|
|
)
|
|
->andWhere(
|
|
$qb->expr()->eq('user_id', $qb->createNamedParameter($userId))
|
|
|
|
);
|
|
|
|
return $this->findEntities($qb);
|
|
|
|
}
|
|
|
|
public function findByEpisodeIdentifier(string $episodeIdentifier, string $userId) : ?EpisodeActionEntity
|
|
{
|
|
$qb = $this->db->getQueryBuilder();
|
|
|
|
$qb->select('*')
|
|
->from($this->getTableName())
|
|
->where(
|
|
$qb->expr()->orX(
|
|
$qb->expr()->eq('episode', $qb->createNamedParameter($episodeIdentifier)),
|
|
$qb->expr()->eq('guid', $qb->createNamedParameter($episodeIdentifier)))
|
|
)
|
|
->andWhere(
|
|
$qb->expr()->eq('user_id', $qb->createNamedParameter($userId))
|
|
);
|
|
|
|
try {
|
|
/** @var EpisodeActionEntity $episodeActionEntity */
|
|
return $this->findEntity($qb);
|
|
} catch (DoesNotExistException|MultipleObjectsReturnedException|Exception $e) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
|
|
}
|