%PDF- %PDF-
| Direktori : /www/varak.net/nextcloud.varak.net/apps/app_api/lib/Db/Translation/ |
| Current File : /www/varak.net/nextcloud.varak.net/apps/app_api/lib/Db/Translation/TranslationQueueMapper.php |
<?php
declare(strict_types=1);
namespace OCA\AppAPI\Db\Translation;
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;
/**
* @template-extends QBMapper<TranslationQueue>
*/
class TranslationQueueMapper extends QBMapper {
public function __construct(IDBConnection $db) {
parent::__construct($db, 'ex_translation_q');
}
/**
* @param int $id
*
* @throws DoesNotExistException if not found
* @throws MultipleObjectsReturnedException if more than one result
* @throws Exception
*
* @return TranslationQueue
*/
public function getById(int $id): TranslationQueue {
$qb = $this->db->getQueryBuilder();
$qb->select('*')
->from($this->tableName)
->where(
$qb->expr()->eq('id', $qb->createNamedParameter($id))
);
return $this->findEntity($qb);
}
/**
* @throws Exception
*/
public function removeAllOlderThenThat(int $overdueTime): int {
$qb = $this->db->getQueryBuilder();
$qb->delete($this->tableName)
->where(
$qb->expr()->gte($qb->createNamedParameter(time() - $overdueTime, IQueryBuilder::PARAM_INT), 'created_time')
);
return $qb->executeStatement();
}
}