Spaces:
No application file
No application file
File size: 4,706 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 |
<?php
namespace Mautic\LeadBundle\Helper;
use Mautic\CoreBundle\Helper\DateTimeHelper;
use Mautic\CoreBundle\Helper\ParamsLoaderHelper;
class TokenHelper
{
/**
* @var array
*/
private static $parameters;
/**
* @param string $content
* @param array $lead
* @param bool $replace If true, search/replace will be executed on $content and the modified $content returned
* rather than an array of found matches
*
* @return array|string
*/
public static function findLeadTokens($content, $lead, $replace = false)
{
if (!$lead) {
return $replace ? $content : [];
}
// Search for bracket or bracket encoded
$tokenList = [];
$foundMatches = preg_match_all('/({|%7B)contactfield=(.*?)(}|%7D)/', $content, $matches);
if ($foundMatches) {
foreach ($matches[2] as $key => $match) {
$token = $matches[0][$key];
if (isset($tokenList[$token])) {
continue;
}
$alias = self::getFieldAlias($match);
$defaultValue = self::getTokenDefaultValue($match);
$tokenList[$token] = self::getTokenValue($lead, $alias, $defaultValue);
}
if ($replace) {
$content = str_replace(array_keys($tokenList), $tokenList, $content);
}
}
return $replace ? $content : $tokenList;
}
/**
* Returns correct token value from provided list of tokens and the concrete token.
*
* @param array $tokens like ['{contactfield=website}' => 'https://mautic.org']
* @param string $token like '{contactfield=website|https://default.url}'
*
* @return string empty string if no match
*/
public static function getValueFromTokens(array $tokens, $token)
{
$token = str_replace(['{', '}'], '', $token);
$alias = self::getFieldAlias($token);
$default = self::getTokenDefaultValue($token);
return empty($tokens["{{$alias}}"]) ? $default : $tokens["{{$alias}}"];
}
/**
* @return mixed
*/
private static function getTokenValue(array $lead, $alias, $defaultValue)
{
$value = '';
if (isset($lead[$alias])) {
$value = $lead[$alias];
} elseif (!empty($lead['companies'])) {
foreach ($lead['companies'] as $company) {
if (isset($company['is_primary'], $company[$alias]) && 1 === (int) $company['is_primary']) {
$value = $company[$alias];
break;
}
}
}
if ('' !== $value) {
switch ($defaultValue) {
case 'true':
$value = urlencode($value);
break;
case 'datetime':
case 'date':
case 'time':
$dt = new DateTimeHelper($value);
$date = $dt->getDateTime()->format(
self::getParameter('date_format_dateonly')
);
$time = $dt->getDateTime()->format(
self::getParameter('date_format_timeonly')
);
switch ($defaultValue) {
case 'datetime':
$value = $date.' '.$time;
break;
case 'date':
$value = $date;
break;
case 'time':
$value = $time;
break;
}
break;
}
}
if (in_array($defaultValue, ['true', 'date', 'time', 'datetime'])) {
return $value;
} else {
return '' !== $value ? $value : $defaultValue;
}
}
private static function getTokenDefaultValue($match): string
{
$fallbackCheck = explode('|', $match);
if (!isset($fallbackCheck[1])) {
return '';
}
return $fallbackCheck[1];
}
private static function getFieldAlias($match): string
{
$fallbackCheck = explode('|', $match);
return $fallbackCheck[0];
}
/**
* @param string $parameter
*
* @return mixed
*/
private static function getParameter($parameter)
{
if (null === self::$parameters) {
self::$parameters = (new ParamsLoaderHelper())->getParameters();
}
return self::$parameters[$parameter];
}
}
|