mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 03:23:19 +00:00
44 lines
1.0 KiB
PHP
44 lines
1.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2014 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Model\Repositories;
|
|
|
|
use Doctrine\ORM\EntityRepository;
|
|
|
|
/**
|
|
* WebhookEventRepository
|
|
*
|
|
* This class was generated by the Doctrine ORM. Add your own custom
|
|
* repository methods below.
|
|
*/
|
|
class WebhookEventRepository extends EntityRepository
|
|
{
|
|
/**
|
|
* @deprecated This method can overflow available memory when there is a large number of unprocessed events
|
|
*/
|
|
public function findUnprocessedEvents()
|
|
{
|
|
$qb = $this->createQueryBuilder('e');
|
|
|
|
$qb->where($qb->expr()->eq('e.processed', $qb->expr()->literal(false)));
|
|
|
|
return $qb->getQuery()->getResult();
|
|
}
|
|
|
|
public function getUnprocessedEventIterator()
|
|
{
|
|
$queryBuilder = $this->createQueryBuilder('e')
|
|
->where('e.processed = 0');
|
|
|
|
return $queryBuilder->getQuery()->iterate();
|
|
}
|
|
}
|