Spaces:
No application file
No application file
File size: 7,102 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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
<?php
namespace Mautic\LeadBundle\Report;
use Mautic\LeadBundle\Entity\LeadField;
use Mautic\LeadBundle\Model\FieldModel;
use Mautic\LeadBundle\Model\LeadModel;
use Mautic\LeadBundle\Model\ListModel;
use Mautic\UserBundle\Model\UserModel;
class FieldsBuilder
{
public function __construct(
private FieldModel $fieldModel,
private ListModel $listModel,
private UserModel $userModel,
private LeadModel $leadModel
) {
}
/**
* @param string $prefix
*/
public function getLeadFieldsColumns($prefix): array
{
$baseColumns = $this->getBaseLeadColumns();
$leadFields = $this->fieldModel->getLeadFields();
$fieldColumns = $this->getFieldColumns($leadFields, $prefix);
return array_merge($baseColumns, $fieldColumns);
}
/**
* @param string $prefix
* @param string $segmentPrefix
*/
public function getLeadFilter($prefix, $segmentPrefix): array
{
$filters = $this->getLeadFieldsColumns($prefix);
$segmentPrefix = $this->sanitizePrefix($segmentPrefix);
$prefix = $this->sanitizePrefix($prefix);
// Append segment filters
$userSegments = $this->listModel->getUserLists();
$list = [];
foreach ($userSegments as $segment) {
$list[$segment['id']] = $segment['name'];
}
$segmentKey = $segmentPrefix.'leadlist_id';
$filters[$segmentKey] = [
'alias' => 'segment_id',
'label' => 'mautic.core.filter.lists',
'type' => 'select',
'list' => $list,
'operators' => [
'eq' => 'mautic.core.operator.equals',
],
];
$aTags = [];
$aTagsList = $this->leadModel->getTagList();
foreach ($aTagsList as $aTemp) {
$aTags[$aTemp['value']] = $aTemp['label'];
}
$filters['tag'] = [
'label' => 'mautic.core.filter.tags',
'type' => 'multiselect',
'list' => $aTags,
'operators' => [
'in' => 'mautic.core.operator.in',
'notIn' => 'mautic.core.operator.notin',
'empty' => 'mautic.core.operator.isempty',
'notEmpty' => 'mautic.core.operator.isnotempty',
],
];
$ownerPrefix = $prefix.'owner_id';
$ownersList = [];
$owners = $this->userModel->getUserList('', 0);
foreach ($owners as $owner) {
$ownersList[$owner['id']] = sprintf('%s %s', $owner['firstName'], $owner['lastName']);
}
$filters[$ownerPrefix] = [
'label' => 'mautic.lead.list.filter.owner',
'type' => 'select',
'list' => $ownersList,
];
return $filters;
}
/**
* @param string $prefix
*/
public function getCompanyFieldsColumns($prefix): array
{
$baseColumns = $this->getBaseCompanyColumns();
$companyFields = $this->fieldModel->getCompanyFields();
$fieldColumns = $this->getFieldColumns($companyFields, $prefix);
return array_merge($baseColumns, $fieldColumns);
}
private function getBaseLeadColumns(): array
{
return [
'l.id' => [
'label' => 'mautic.lead.report.contact_id',
'type' => 'int',
'link' => 'mautic_contact_action',
],
'i.ip_address' => [
'label' => 'mautic.core.ipaddress',
'type' => 'text',
],
'l.date_identified' => [
'label' => 'mautic.lead.report.date_identified',
'type' => 'datetime',
'groupByFormula' => 'DATE(l.date_identified)',
],
'l.date_added' => [
'label' => 'mautic.core.date.added',
'type' => 'datetime',
'groupByFormula' => 'DATE(l.date_added)',
],
'l.points' => [
'label' => 'mautic.lead.points',
'type' => 'int',
],
'l.owner_id' => [
'label' => 'mautic.lead.report.owner_id',
'type' => 'int',
],
'u.first_name' => [
'label' => 'mautic.lead.report.owner_firstname',
'type' => 'string',
],
'u.last_name' => [
'label' => 'mautic.lead.report.owner_lastname',
'type' => 'string',
],
];
}
private function getBaseCompanyColumns(): array
{
return [
'comp.id' => [
'label' => 'mautic.lead.report.company.company_id',
'type' => 'int',
'link' => 'mautic_company_action',
],
'comp.companyname' => [
'label' => 'mautic.lead.report.company.company_name',
'type' => 'string',
'link' => 'mautic_company_action',
],
'comp.companycity' => [
'label' => 'mautic.lead.report.company.company_city',
'type' => 'string',
'link' => 'mautic_company_action',
],
'comp.companystate' => [
'label' => 'mautic.lead.report.company.company_state',
'type' => 'string',
'link' => 'mautic_company_action',
],
'comp.companycountry' => [
'label' => 'mautic.lead.report.company.company_country',
'type' => 'string',
'link' => 'mautic_company_action',
],
'comp.companyindustry' => [
'label' => 'mautic.lead.report.company.company_industry',
'type' => 'string',
'link' => 'mautic_company_action',
],
];
}
/**
* @param LeadField[] $fields
* @param string $prefix
*/
private function getFieldColumns($fields, $prefix): array
{
$prefix = $this->sanitizePrefix($prefix);
$columns = [];
foreach ($fields as $field) {
$type = match ($field->getType()) {
'boolean' => 'bool',
'date' => 'date',
'datetime' => 'datetime',
'time' => 'time',
'url' => 'url',
'email' => 'email',
'number' => 'float',
default => 'string',
};
$columns[$prefix.$field->getAlias()] = [
'label' => $field->getLabel(),
'type' => $type,
];
}
return $columns;
}
/**
* @param string $prefix
*/
private function sanitizePrefix($prefix): string
{
if (!str_contains($prefix, '.')) {
$prefix .= '.';
}
return $prefix;
}
}
|