Spaces:
No application file
No application file
File size: 7,864 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 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 |
<?php
namespace MauticPlugin\MauticSocialBundle\Entity;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Mautic\ApiBundle\Serializer\Driver\ApiMetadataDriver;
use Mautic\CoreBundle\Doctrine\Mapping\ClassMetadataBuilder;
use Mautic\LeadBundle\Entity\Lead as TheLead;
class TweetStat
{
/**
* @var int
*/
private $id;
/**
* ID of the tweet from Twitter.
*
* @var string|null
*/
private $twitterTweetId;
/**
* @var Tweet|null
*/
private $tweet;
/**
* @var TheLead|null
*/
private $lead;
/**
* @var string
*/
private $handle;
/**
* @var DateTime
*/
private $dateSent;
/**
* @var bool|null
*/
private $isFailed = false;
/**
* @var int|null
*/
private $retryCount = 0;
/**
* @var string|null
*/
private $source;
/**
* @var int|null
*/
private $sourceId;
/**
* @var int|null
*/
private $favoriteCount = 0;
/**
* @var int|null
*/
private $retweetCount = 0;
/**
* @var array|null
*/
private $responseDetails = [];
public static function loadMetadata(ORM\ClassMetadata $metadata): void
{
$builder = new ClassMetadataBuilder($metadata);
$builder->setTable('tweet_stats')
->setCustomRepositoryClass(TweetStatRepository::class)
->addIndex(['tweet_id', 'lead_id'], 'stat_tweet_search')
->addIndex(['lead_id', 'tweet_id'], 'stat_tweet_search2')
->addIndex(['is_failed'], 'stat_tweet_failed_search')
->addIndex(['source', 'source_id'], 'stat_tweet_source_search')
->addIndex(['favorite_count'], 'favorite_count_index')
->addIndex(['retweet_count'], 'retweet_count_index')
->addIndex(['date_sent'], 'tweet_date_sent')
->addIndex(['twitter_tweet_id'], 'twitter_tweet_id_index');
$builder->addId();
$builder->createManyToOne('tweet', 'Tweet')
->inversedBy('stats')
->addJoinColumn('tweet_id', 'id', true, false, 'SET NULL')
->build();
$builder->createField('twitterTweetId', 'string')
->columnName('twitter_tweet_id')
->nullable()
->build();
$builder->addLead(true, 'SET NULL');
$builder->createField('handle', 'string')
->build();
$builder->createField('dateSent', 'datetime')
->columnName('date_sent')
->nullable()
->build();
$builder->createField('isFailed', 'boolean')
->columnName('is_failed')
->nullable()
->build();
$builder->createField('retryCount', 'integer')
->columnName('retry_count')
->nullable()
->build();
$builder->createField('source', 'string')
->nullable()
->build();
$builder->createField('sourceId', 'integer')
->columnName('source_id')
->nullable()
->build();
$builder->addNullableField('favoriteCount', 'integer', 'favorite_count');
$builder->addNullableField('retweetCount', 'integer', 'retweet_count');
$builder->addNullableField('responseDetails', Types::JSON, 'response_details');
}
/**
* Prepares the metadata for API usage.
*/
public static function loadApiMetadata(ApiMetadataDriver $metadata): void
{
$metadata->setGroupPrefix('stat')
->addProperties(
[
'id',
'tweetId',
'handle',
'dateSent',
'isFailed',
'retryCount',
'favoriteCount',
'retweetCount',
'source',
'sourceId',
'lead',
'tweet',
'responseDetails',
]
)
->build();
}
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @return string|null
*/
public function getTwitterTweetId()
{
return $this->twitterTweetId;
}
/**
* @param string $twitterTweetId
*
* @return $this
*/
public function setTwitterTweetId($twitterTweetId)
{
$this->twitterTweetId = $twitterTweetId;
return $this;
}
/**
* @return mixed
*/
public function getDateSent()
{
return $this->dateSent;
}
/**
* @param mixed $dateSent
*/
public function setDateSent($dateSent): void
{
$this->dateSent = $dateSent;
}
/**
* @return Tweet
*/
public function getTweet()
{
return $this->tweet;
}
/**
* @param mixed $tweet
*/
public function setTweet(Tweet $tweet = null): void
{
$this->tweet = $tweet;
}
/**
* @return TheLead
*/
public function getLead()
{
return $this->lead;
}
/**
* @param mixed $lead
*/
public function setLead(TheLead $lead = null): void
{
$this->lead = $lead;
}
/**
* @return mixed
*/
public function getRetryCount()
{
return $this->retryCount;
}
/**
* @param mixed $retryCount
*/
public function setRetryCount($retryCount): void
{
$this->retryCount = $retryCount;
}
public function retryCountUp(): void
{
$this->setRetryCount($this->getRetryCount() + 1);
}
/**
* @return int
*/
public function getFavoriteCount()
{
return $this->favoriteCount;
}
/**
* @param int $favoriteCount
*
* @return $this
*/
public function setFavoriteCount($favoriteCount)
{
$this->favoriteCount = $favoriteCount;
return $this;
}
/**
* @return int
*/
public function getRetweetCount()
{
return $this->retweetCount;
}
/**
* @param int $retweetCount
*
* @return $this
*/
public function setRetweetCount($retweetCount)
{
$this->retweetCount = $retweetCount;
return $this;
}
/**
* @return mixed
*/
public function getIsFailed()
{
return $this->isFailed;
}
/**
* @param mixed $isFailed
*/
public function setIsFailed($isFailed): void
{
$this->isFailed = $isFailed;
}
/**
* @return mixed
*/
public function isFailed()
{
return $this->getIsFailed();
}
/**
* @return string|null
*/
public function getHandle()
{
return $this->handle;
}
/**
* @param mixed $handle
*/
public function setHandle($handle): void
{
$this->handle = $handle;
}
/**
* @return mixed
*/
public function getSource()
{
return $this->source;
}
/**
* @param mixed $source
*/
public function setSource($source): void
{
$this->source = $source;
}
/**
* @return mixed
*/
public function getSourceId()
{
return $this->sourceId;
}
/**
* @param mixed $sourceId
*/
public function setSourceId($sourceId): void
{
$this->sourceId = (int) $sourceId;
}
/**
* @return mixed
*/
public function getResponseDetails()
{
return $this->responseDetails;
}
/**
* @param mixed $responseDetails
*
* @return Stat
*/
public function setResponseDetails($responseDetails)
{
$this->responseDetails = $responseDetails;
return $this;
}
}
|