Spaces:
No application file
No application file
File size: 3,455 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
<?php
namespace Mautic\PointBundle\Entity;
use Mautic\CoreBundle\Entity\CommonRepository;
/**
* @extends CommonRepository<Point>
*/
class PointRepository extends CommonRepository
{
public function getEntities(array $args = [])
{
$q = $this->_em
->createQueryBuilder()
->select($this->getTableAlias().', cat')
->from(Point::class, $this->getTableAlias())
->leftJoin($this->getTableAlias().'.category', 'cat')
->leftJoin($this->getTableAlias().'.group', 'pl');
$args['qb'] = $q;
return parent::getEntities($args);
}
public function getTableAlias(): string
{
return 'p';
}
/**
* Get array of published actions based on type.
*
* @param string $type
*
* @return array
*/
public function getPublishedByType($type)
{
$q = $this->createQueryBuilder('p')
->select('partial p.{id, type, name, delta, repeatable, properties}')
->setParameter('type', $type);
// make sure the published up and down dates are good
$expr = $this->getPublishedByDateExpression($q);
$expr->add($q->expr()->eq('p.type', ':type'));
$q->where($expr);
return $q->getQuery()->getResult();
}
/**
* @param string $type
* @param int $leadId
*/
public function getCompletedLeadActions($type, $leadId): array
{
$q = $this->_em->getConnection()->createQueryBuilder()
->select('p.*')
->from(MAUTIC_TABLE_PREFIX.'point_lead_action_log', 'x')
->innerJoin('x', MAUTIC_TABLE_PREFIX.'points', 'p', 'x.point_id = p.id');
// make sure the published up and down dates are good
$q->where(
$q->expr()->and(
$q->expr()->eq('p.type', ':type'),
$q->expr()->eq('x.lead_id', (int) $leadId)
)
)
->setParameter('type', $type);
$results = $q->executeQuery()->fetchAllAssociative();
$return = [];
foreach ($results as $r) {
$return[$r['id']] = $r;
}
return $return;
}
/**
* @param int $leadId
*/
public function getCompletedLeadActionsByLeadId($leadId): array
{
$q = $this->_em->getConnection()->createQueryBuilder()
->select('p.*')
->from(MAUTIC_TABLE_PREFIX.'point_lead_action_log', 'x')
->innerJoin('x', MAUTIC_TABLE_PREFIX.'points', 'p', 'x.point_id = p.id');
// make sure the published up and down dates are good
$q->where(
$q->expr()->and(
$q->expr()->eq('x.lead_id', (int) $leadId)
)
);
$results = $q->executeQuery()->fetchAllAssociative();
$return = [];
foreach ($results as $r) {
$return[$r['id']] = $r;
}
return $return;
}
protected function addCatchAllWhereClause($q, $filter): array
{
return $this->addStandardCatchAllWhereClause($q, $filter, [
'p.name',
'p.description',
]);
}
protected function addSearchCommandWhereClause($q, $filter): array
{
return $this->addStandardSearchCommandWhereClause($q, $filter);
}
/**
* @return string[]
*/
public function getSearchCommands(): array
{
return $this->getStandardSearchCommands();
}
}
|