mautic / app /bundles /LeadBundle /Entity /ImportRepository.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\LeadBundle\Entity;
use Mautic\CoreBundle\Entity\CommonRepository;
/**
* @extends CommonRepository<Import>
*/
class ImportRepository extends CommonRepository
{
/**
* Count how many imports with the status is there.
*
* @param float $ghostDelay when is the import ghost? In hours
* @param int $limit
*
* @return array
*/
public function getGhostImports($ghostDelay = 2, $limit = null)
{
$q = $this->getQueryForStatuses([Import::IN_PROGRESS]);
$q->select($this->getTableAlias())
->andWhere($q->expr()->lt($this->getTableAlias().'.dateModified', ':delay'))
->setParameter('delay', (new \DateTime())->modify('-'.$ghostDelay.' hours'));
if (null !== $limit) {
$q->setFirstResult(0)
->setMaxResults($limit);
}
return $q->getQuery()->getResult();
}
/**
* Count how many imports with the status is there.
*
* @param int $limit
*
* @return array
*/
public function getImportsWithStatuses(array $statuses, $limit = null)
{
$q = $this->getQueryForStatuses($statuses);
$q->select($this->getTableAlias())
->orderBy($this->getTableAlias().'.priority', 'ASC')
->addOrderBy($this->getTableAlias().'.dateAdded', 'DESC');
if (null !== $limit) {
$q->setFirstResult(0)
->setMaxResults($limit);
}
return $q->getQuery()->getResult();
}
/**
* Count how many imports with the status is there.
*/
public function countImportsWithStatuses(array $statuses): int
{
$q = $this->getQueryForStatuses($statuses);
$q->select('COUNT(DISTINCT '.$this->getTableAlias().'.id) as theCount');
$results = $q->getQuery()->getSingleResult();
if (isset($results['theCount'])) {
return (int) $results['theCount'];
}
return 0;
}
public function countImportsInProgress(): int
{
return $this->countImportsWithStatuses([Import::IN_PROGRESS]);
}
public function getQueryForStatuses($statuses)
{
$q = $this->createQueryBuilder($this->getTableAlias());
return $q->where($q->expr()->in($this->getTableAlias().'.status', $statuses));
}
public function getTableAlias(): string
{
return 'i';
}
}