Spaces:
No application file
No application file
File size: 7,487 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 166 167 168 169 170 171 172 173 174 175 |
<?php
namespace Mautic\LeadBundle\Controller;
use Mautic\CoreBundle\Factory\PageHelperFactoryInterface;
use Mautic\LeadBundle\Entity\LeadRepository;
use Symfony\Component\HttpFoundation\Request;
trait EntityContactsTrait
{
/**
* @param string|int $entityId
* @param int $page
* @param string[]|string $permission
* @param string $sessionVar
* @param string $entityJoinTable Table to join to obtain list of related contacts or a DBAL QueryBuilder object defining custom joins
* @param string|null $dncChannel Channel for this entity to get do not contact records for
* @param string|null $entityIdColumnName If the entity ID in $joinTable is not "id", set the column name here
* @param array|null $contactFilter Array of additional filters for the getEntityContactsWithFields() function
* @param array|null $additionalJoins [ ['type' => 'join|leftJoin', 'from_alias' => '', 'table' => '', 'condition' => ''], ... ]
* @param string|null $contactColumnName Column of the contact in the join table
* @param array|null $routeParameters
* @param string|null $paginationTarget DOM selector for injecting new content when pagination is used
* @param string|null $orderBy optional OrderBy column, to be used to increase performance with joins
* @param string|null $orderByDir optional $orderBy direction, to be used to increase performance with joins
* @param int|null $count optional $count if already known to avoid an extra query
* @param \DateTimeInterface|null $dateFrom optionally limit to leads added between From and To dates
* @param \DateTimeInterface|null $dateTo optionally limit to leads added between From and To dates
*
* @return mixed
*/
protected function generateContactsGrid(
Request $request,
PageHelperFactoryInterface $pageHelperFactory,
$entityId,
$page,
$permission,
$sessionVar,
$entityJoinTable,
$dncChannel = null,
$entityIdColumnName = 'id',
array $contactFilter = null,
array $additionalJoins = null,
$contactColumnName = null,
array $routeParameters = [],
$paginationTarget = null,
$orderBy = null,
$orderByDir = null,
$count = null,
\DateTimeInterface $dateFrom = null,
\DateTimeInterface $dateTo = null
) {
if ($permission && !$this->security->isGranted($permission)) {
return $this->accessDenied();
}
// Set the route if not standardized
$route = "mautic_{$sessionVar}_contacts";
if (method_exists($this, 'getRouteBase') && $this->getRouteBase()) {
$route = 'mautic_'.$this->getRouteBase().'_contacts';
}
// Apply filters
if ('POST' == $request->getMethod()) {
$this->setListFilters($sessionVar.'.contact');
}
$search = $request->get('search', $request->getSession()->get('mautic.'.$sessionVar.'.contact.filter', ''));
$request->getSession()->set('mautic.'.$sessionVar.'.contact.filter', $search);
$pageHelper = $pageHelperFactory->make("mautic.{$sessionVar}", $page);
$filter = ['string' => $search, 'force' => []];
$orderBy = $orderBy ?: $request->getSession()->get('mautic.'.$sessionVar.'.contact.orderby', 'l.id');
$orderByDir = $orderByDir ?: $request->getSession()->get('mautic.'.$sessionVar.'.contact.orderbydir', 'DESC');
$limit = $request->getSession()->get(
'mautic.'.$sessionVar.'.contact.limit',
$this->coreParametersHelper->get('default_pagelimit')
);
$start = (1 === $page) ? 0 : (($page - 1) * $limit);
if ($start < 0) {
$start = 0;
}
/** @var LeadRepository $repo */
$repo = $this->getModel('lead')->getRepository();
$contacts = $repo->getEntityContacts(
[
'withTotalCount' => (null === $count),
'start' => $start,
'limit' => $limit,
'filter' => $filter,
'orderBy' => $orderBy,
'orderByDir' => $orderByDir,
'select' => ListController::SEGMENT_CONTACT_FIELDS,
'route' => $route,
],
$entityJoinTable,
$entityId,
$contactFilter,
$entityIdColumnName,
$additionalJoins,
$contactColumnName,
$dateFrom,
$dateTo
);
// Normalize results regarding withTotalCount.
if (isset($contacts['count'])) {
$count = (int) $contacts['count'];
} else {
$contacts = [
'results' => $contacts,
'count' => $count,
];
}
if ($count && $count < ($start + 1)) {
// the number of entities are now less then the current page so redirect to the last page
$lastPage = $pageHelper->countPage($count);
$pageHelper->rememberPage($lastPage);
$returnUrl = $this->generateUrl($route, array_merge(['objectId' => $entityId, 'page' => $lastPage], $routeParameters));
return $this->postActionRedirect(
[
'returnUrl' => $returnUrl,
'viewParameters' => ['page' => $lastPage, 'objectId' => $entityId],
'contentTemplate' => '@MauticLead/Lead/grid.html.twig',
'forwardController' => false,
'passthroughVars' => [
'mauticContent' => $sessionVar.'Contacts',
],
]
);
}
$pageHelper->rememberPage($page);
// Get DNC for the contact
$dnc = [];
if ($dncChannel && $count > 0) {
$dnc = $this->doctrine->getManager()->getRepository(\Mautic\LeadBundle\Entity\DoNotContact::class)->getChannelList(
$dncChannel,
array_keys($contacts['results'])
);
}
return $this->delegateView(
[
'viewParameters' => [
'page' => $page,
'items' => $contacts['results'],
'totalItems' => $contacts['count'],
'tmpl' => $sessionVar.'Contacts',
'indexMode' => 'grid',
'route' => $route,
'routeParameters' => $routeParameters,
'sessionVar' => $sessionVar.'.contact',
'limit' => $limit,
'objectId' => $entityId,
'noContactList' => $dnc,
'target' => $paginationTarget,
],
'contentTemplate' => '@MauticLead/Lead/grid.html.twig',
'passthroughVars' => [
'mauticContent' => $sessionVar.'Contacts',
'route' => false,
],
]
);
}
}
|