Spaces:
No application file
No application file
File size: 9,134 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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
<?php
namespace Mautic\ReportBundle\Event;
use Doctrine\ORM\Tools\Pagination\Paginator;
use Mautic\ChannelBundle\Helper\ChannelListHelper;
use Mautic\ReportBundle\Builder\MauticReportBuilder;
use Mautic\ReportBundle\Helper\ReportHelper;
use Mautic\ReportBundle\Model\ReportModel;
use Symfony\Contracts\Translation\TranslatorInterface;
class ReportBuilderEvent extends AbstractReportEvent
{
/**
* Container with registered tables and columns.
*/
private array $tableArray = [];
/**
* @var string[]
*/
private array $supportedGraphs = [
'table',
'bar',
'pie',
'line',
];
/**
* @var mixed[]
*/
private array $graphArray = [];
/**
* @param mixed[]|Paginator|array $leadFields list of published array of lead fields
*/
public function __construct(
private TranslatorInterface $translator,
private ChannelListHelper $channelListHelper,
string $context,
private array|Paginator $leadFields,
private ReportHelper $reportHelper,
private ?string $reportSource = null
) {
$this->context = $context;
}
/**
* Add a table with the specified columns to the lookup.
*
* The data should be an associative array with the following data:
* 'display_name' => The translation key to display in the select list
* 'columns' => An array containing the table's columns
*
* @param string $context Context for data
* @param array $data Data array for the table
*
* @return ReportBuilderEvent
*/
public function addTable($context, array $data, $group = null)
{
$data['group'] = (null == $group) ? $context : $group;
foreach ($data['columns'] as $column => &$d) {
$d['label'] = null !== $d['label'] ? $this->translator->trans($d['label']) : '';
if (!isset($d['alias'])) {
$d['alias'] = substr(
$column,
false !== ($pos = strpos($column, '.')) ? $pos + 1 : 0
);
}
}
uasort($data['columns'], fn ($a, $b) => strnatcmp((string) $a['label'], (string) $b['label']));
if (isset($data['filters'])) {
foreach ($data['filters'] as $column => &$d) {
$d['label'] = $this->translator->trans($d['label']);
if (!isset($d['alias'])) {
$d['alias'] = substr(
$column,
false !== ($pos = strpos($column, '.')) ? $pos + 1 : 0
);
}
}
uasort($data['filters'], fn ($a, $b) => strnatcmp((string) $a['label'], (string) $b['label']));
}
$this->tableArray[$context] = $data;
if ($this->context == $context) {
$this->stopPropagation();
}
return $this;
}
/**
* Fetch the tables in the lookup array.
*
* @return array
*/
public function getTables()
{
return $this->tableArray;
}
/**
* Fetch the source of the report.
*/
public function getReportSource(): ?string
{
return $this->reportSource;
}
/**
* Returns standard form fields such as id, name, publish_up, etc.
*
* @param string $prefix
*
* @return array<string,array<string,string>>
*/
public function getStandardColumns($prefix, $removeColumns = [], $idLink = null): array
{
return $this->reportHelper->getStandardColumns($prefix, $removeColumns, (string) $idLink);
}
/**
* Returns lead columns.
*/
public function getLeadColumns($prefix = 'l.'): array
{
$fields = [];
foreach ($this->leadFields as $fieldArray) {
$fields[$prefix.$fieldArray['alias']] = [
'label' => $this->translator->trans('mautic.report.field.lead.label', ['%field%' => $fieldArray['label']]),
'type' => $this->reportHelper->getReportBuilderFieldType($fieldArray['type']),
'alias' => $fieldArray['alias'],
];
}
$fields[$prefix.'id'] = [
'label' => 'mautic.report.field.lead.id',
'type' => 'int',
'link' => 'mautic_contact_action',
'alias' => 'contactId',
];
return $fields;
}
/**
* Get IP Address column.
*
* @param string $prefix
*/
public function getIpColumn($prefix = 'i.'): array
{
return [
$prefix.'ip_address' => [
'label' => 'mautic.core.ipaddress',
'type' => 'string',
],
];
}
/**
* Add category columns.
*
* @param string $prefix
*/
public function getCategoryColumns($prefix = 'c.'): array
{
return [
$prefix.'id' => [
'label' => 'mautic.report.field.category_id',
'type' => 'int',
'alias' => 'category_id',
],
$prefix.'title' => [
'label' => 'mautic.report.field.category_name',
'type' => 'string',
'alias' => 'category_title',
],
];
}
/**
* Add campaign columns joined by the campaign lead event log table.
*/
public function getCampaignByChannelColumns(): array
{
return [
'clel.campaign_id' => [
'label' => 'mautic.campaign.campaign.id',
'type' => 'string',
],
'cmp.name' => [
'label' => 'mautic.campaign.campaign',
'type' => 'string',
],
];
}
/**
* @return array<MauticReportBuilder::*, mixed[]>
*/
public function getChannelColumns(): array
{
$channelColumns = [
MauticReportBuilder::CHANNEL_COLUMN_CATEGORY_ID => [
'label' => 'mautic.report.campaign.channel.category_id',
'type' => 'int',
'alias' => 'channel_category_id',
'channelData' => [],
],
MauticReportBuilder::CHANNEL_COLUMN_CREATED_BY => [
'label' => 'mautic.report.campaign.channel.created_by',
'type' => 'int',
'alias' => 'channel_created_by',
'channelData' => [],
],
MauticReportBuilder::CHANNEL_COLUMN_CREATED_BY_USER => [
'label' => 'mautic.report.campaign.channel.created_by_user',
'type' => 'string',
'alias' => 'channel_created_by_user',
'channelData' => [],
],
MauticReportBuilder::CHANNEL_COLUMN_DATE_ADDED => [
'label' => 'mautic.report.campaign.channel.date_added',
'type' => 'datetime',
'alias' => 'channel_date_added',
'channelData' => [],
],
MauticReportBuilder::CHANNEL_COLUMN_DESCRIPTION => [
'label' => 'mautic.report.campaign.channel.description',
'type' => 'string',
'alias' => 'channel_description',
'channelData' => [],
],
MauticReportBuilder::CHANNEL_COLUMN_NAME => [
'label' => 'mautic.report.campaign.channel.name',
'type' => 'string',
'alias' => 'channel_name',
'channelData' => [],
],
];
foreach ($this->channelListHelper->getChannels() as $channel => $details) {
if (!array_key_exists(ReportModel::CHANNEL_FEATURE, $details)) {
continue;
}
$reportDetails = $details[ReportModel::CHANNEL_FEATURE];
$hasFields = array_key_exists('fields', $reportDetails) && is_array($reportDetails['fields']);
foreach ($channelColumns as $column => $definition) {
$channelColumnName = $hasFields && array_key_exists($column, $reportDetails['fields'])
? $reportDetails['fields'][$column]
: str_replace('channel.', $channel.'.', $column);
$channelColumns[$column]['channelData'][$channel] = [
'prefix' => $channel,
'column' => $channelColumnName,
];
}
}
return $channelColumns;
}
/**
* @param array $options
*
* @return $this
*/
public function addGraph($context, $type, $graphId, $options = [])
{
if (in_array($type, $this->supportedGraphs)) {
$this->graphArray[$context][$graphId] = [
'options' => $options,
'type' => $type,
];
}
return $this;
}
/**
* Get graphs.
*
* @return array
*/
public function getGraphs()
{
return $this->graphArray;
}
}
|