Spaces:
No application file
No application file
File size: 6,747 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 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
<?php
namespace Mautic\LeadBundle\Entity;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Mautic\ApiBundle\Serializer\Driver\ApiMetadataDriver;
use Mautic\CoreBundle\Doctrine\Mapping\ClassMetadataBuilder;
/**
* Store here contact events.
*/
class LeadEventLog
{
/**
* @var string
*/
public const INDEX_SEARCH = 'IDX_SEARCH';
/**
* @var string
*/
protected $id;
/**
* @var Lead|null
*/
protected $lead;
/**
* @var int|null
*/
protected $userId;
/**
* @var string|null
*/
protected $userName;
/**
* @var string|null
*/
protected $bundle;
/**
* @var string|null
*/
protected $object;
/**
* @var int|null
*/
protected $objectId;
/**
* @var string|null
*/
protected $action;
/**
* @var \DateTimeInterface
*/
protected $dateAdded;
/**
* @var array|null
*/
private $properties = [];
public function __construct()
{
$this->setDateAdded(new \DateTime());
}
public static function loadMetadata(ORM\ClassMetadata $metadata): void
{
$builder = new ClassMetadataBuilder($metadata);
$builder->setTable('lead_event_log')
->setCustomRepositoryClass(LeadEventLogRepository::class)
->addIndex(['lead_id'], 'lead_id_index')
->addIndex(['object', 'object_id'], 'lead_object_index')
->addIndex(['bundle', 'object', 'action', 'object_id'], 'lead_timeline_index')
->addIndex(['bundle', 'object', 'action', 'object_id', 'date_added'], self::INDEX_SEARCH)
->addIndex(['action'], 'lead_timeline_action_index')
->addIndex(['date_added'], 'lead_date_added_index')
->addBigIntIdField()
->addNullableField('userId', Types::INTEGER, 'user_id')
->addNullableField('userName', Types::STRING, 'user_name')
->addNullableField('bundle', Types::STRING)
->addNullableField('object', Types::STRING)
->addNullableField('action', Types::STRING)
->addNullableField('objectId', Types::INTEGER, 'object_id')
->addNamedField('dateAdded', Types::DATETIME_MUTABLE, 'date_added')
->addNullableField('properties', Types::JSON);
$builder->createManyToOne('lead', Lead::class)
->addJoinColumn('lead_id', 'id', true, false, 'CASCADE')
->inversedBy('eventLog')
->build();
}
/**
* Prepares the metadata for API usage.
*/
public static function loadApiMetadata(ApiMetadataDriver $metadata): void
{
$metadata->setGroupPrefix('import')
->addListProperties(
[
'id',
'leadId',
'userId',
'userName',
'bundle',
'object',
'action',
'objectId',
'dateAdded',
'properties',
]
)
->build();
}
/**
* Get id.
*/
public function getId(): int
{
return (int) $this->id;
}
/**
* Set lead.
*
* @return LeadEventLog
*/
public function setLead(Lead $lead)
{
$this->lead = $lead;
return $this;
}
/**
* Get lead.
*
* @return Lead|null
*/
public function getLead()
{
return $this->lead;
}
/**
* Set userId.
*
* @param int $userId
*
* @return LeadEventLog
*/
public function setUserId($userId)
{
$this->userId = $userId;
return $this;
}
/**
* Get userId.
*
* @return int
*/
public function getUserId()
{
return $this->userId;
}
/**
* Set object.
*
* @param string $object
*
* @return LeadEventLog
*/
public function setObject($object)
{
$this->object = $object;
return $this;
}
/**
* Get object.
*
* @return string
*/
public function getObject()
{
return $this->object;
}
/**
* Set objectId.
*
* @param int $objectId
*
* @return LeadEventLog
*/
public function setObjectId($objectId)
{
$this->objectId = $objectId;
return $this;
}
/**
* Get objectId.
*
* @return int
*/
public function getObjectId()
{
return $this->objectId;
}
/**
* Set action.
*
* @param string $action
*
* @return LeadEventLog
*/
public function setAction($action)
{
$this->action = $action;
return $this;
}
/**
* Get action.
*
* @return string
*/
public function getAction()
{
return $this->action;
}
/**
* Set properties.
*
* @return LeadEventLog
*/
public function setProperties(array $properties)
{
$this->properties = $properties;
return $this;
}
/**
* Set one property into the properties array.
*
* @param string $key
* @param string $value
*
* @return LeadEventLog
*/
public function addProperty($key, $value)
{
$this->properties[$key] = $value;
return $this;
}
/**
* Get properties.
*
* @return array
*/
public function getProperties()
{
return $this->properties;
}
/**
* Set dateAdded.
*
* @param \DateTime $dateAdded
*
* @return LeadEventLog
*/
public function setDateAdded($dateAdded)
{
$this->dateAdded = $dateAdded;
return $this;
}
/**
* Get dateAdded.
*
* @return \DateTimeInterface
*/
public function getDateAdded()
{
return $this->dateAdded;
}
/**
* Set bundle.
*
* @param string $bundle
*
* @return LeadEventLog
*/
public function setBundle($bundle)
{
$this->bundle = $bundle;
return $this;
}
/**
* Get bundle.
*
* @return string
*/
public function getBundle()
{
return $this->bundle;
}
/**
* Set userName.
*
* @param string $userName
*
* @return LeadEventLog
*/
public function setUserName($userName)
{
$this->userName = $userName;
return $this;
}
/**
* Get userName.
*
* @return string
*/
public function getUserName()
{
return $this->userName;
}
}
|