Spaces:
No application file
No application file
File size: 5,263 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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
<?php
namespace Mautic\LeadBundle\Entity;
use Doctrine\DBAL\ArrayParameterType;
use Doctrine\ORM\Tools\Pagination\Paginator;
use Mautic\CoreBundle\Entity\CommonRepository;
/**
* @extends CommonRepository<LeadEventLog>
*/
class LeadEventLogRepository extends CommonRepository
{
use TimelineTrait;
/**
* Returns paginator with failed rows.
*
* @param string $bundle
* @param string $object
*
* @return Paginator
*/
public function getFailedRows($importId, array $args = [], $bundle = 'lead', $object = 'import')
{
return $this->getSpecificRows($importId, 'failed', $args, $bundle, $object);
}
public function getEntities(array $args = [])
{
$entities = parent::getEntities($args);
$entities = iterator_to_array($entities);
foreach ($entities as $key => $row) {
if (
isset($row['properties']['error'])
&& preg_match('/SQLSTATE\[\w+\]: (.*)/', $row['properties']['error'], $matches)
) {
$entities[$key]['properties']['error'] = $matches[1];
}
}
return $entities;
}
/**
* Returns paginator with specific type of rows.
*
* @param string $bundle
* @param string $object
*
* @return Paginator
*/
public function getSpecificRows($objectId, $action, array $args = [], $bundle = 'lead', $object = 'import')
{
return $this->getEntities(
array_merge(
[
'start' => 0,
'limit' => 100,
'orderBy' => $this->getTableAlias().'.dateAdded',
'orderByDir' => 'ASC',
'filter' => [
'force' => [
[
'column' => $this->getTableAlias().'.bundle',
'expr' => 'eq',
'value' => $bundle,
],
[
'column' => $this->getTableAlias().'.object',
'expr' => 'eq',
'value' => $object,
],
[
'column' => $this->getTableAlias().'.action',
'expr' => 'eq',
'value' => $action,
],
[
'column' => $this->getTableAlias().'.objectId',
'expr' => 'eq',
'value' => $objectId,
],
],
],
'hydration_mode' => 'HYDRATE_ARRAY',
],
$args
)
);
}
/**
* @param ?string $bundle
* @param ?string $object
* @param array|string|null $actions
*
* @return array
*/
public function getEvents(Lead $contact = null, $bundle = null, $object = null, $actions = null, array $options = [])
{
$alias = $this->getTableAlias();
$qb = $this->getEntityManager()->getConnection()->createQueryBuilder()
->select('*')
->from(MAUTIC_TABLE_PREFIX.'lead_event_log', $alias);
if ($contact) {
$qb->andWhere($alias.'.lead_id = :lead')
->setParameter('lead', $contact->getId());
}
if ($bundle) {
$qb->andWhere($alias.'.bundle = :bundle')
->setParameter('bundle', $bundle);
}
if ($object) {
$qb->andWhere($alias.'.object = :object')
->setParameter('object', $object);
}
if ($actions) {
if (is_array($actions)) {
$qb->andWhere(
$qb->expr()->in($alias.'.action', ':actions')
)
->setParameter('actions', $actions, ArrayParameterType::STRING);
} else {
$qb->andWhere($alias.'.action = :action')
->setParameter('action', $actions);
}
}
if (!empty($options['search'])) {
$qb->andWhere($qb->expr()->like('LOWER('.$alias.'.properties)', $qb->expr()->literal('%'.strtolower($options['search']).'%')));
}
return $this->getTimelineResults($qb, $options, $alias.'.action', $alias.'.date_added', [], ['date_added']);
}
/**
* Updates lead ID (e.g. after a lead merge).
*
* @param int $fromLeadId
* @param int $toLeadId
*/
public function updateLead($fromLeadId, $toLeadId): void
{
$q = $this->_em->getConnection()->createQueryBuilder();
$q->update(MAUTIC_TABLE_PREFIX.'lead_event_log')
->set('lead_id', (int) $toLeadId)
->where('lead_id = '.(int) $fromLeadId)
->executeStatement();
}
/**
* Defines default table alias for lead_event_log table.
*/
public function getTableAlias(): string
{
return 'lel';
}
}
|