175 lines
3.1 KiB
PHP
175 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace Skobkin\Bundle\PointToolsBundle\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* SubscriptionEvent
|
|
*
|
|
* @ORM\Table(name="subscriptions.log", indexes={
|
|
* @ORM\Index(name="author_idx", columns={"author_id"}),
|
|
* @ORM\Index(name="subscriber_idx", columns={"subscriber_id"}),
|
|
* @ORM\Index(name="date_idx", columns={"date"})
|
|
* })
|
|
* @ORM\Entity(repositoryClass="Skobkin\Bundle\PointToolsBundle\Entity\SubscriptionEventRepository")
|
|
* @ORM\HasLifecycleCallbacks
|
|
*/
|
|
class SubscriptionEvent
|
|
{
|
|
const ACTION_SUBSCRIBE = 'subscribe';
|
|
const ACTION_UNSUBSCRIBE = 'unsubscribe';
|
|
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="id", type="integer")
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue(strategy="AUTO")
|
|
*/
|
|
private $id;
|
|
|
|
/**
|
|
* @var User Blog author
|
|
*
|
|
* @ORM\ManyToOne(targetEntity="User", inversedBy="newSubscriberEvents")
|
|
* @ORM\JoinColumn(name="author_id", nullable=false)
|
|
*/
|
|
private $author;
|
|
|
|
/**
|
|
* @var User Blog subscriber
|
|
*
|
|
* @ORM\ManyToOne(targetEntity="User", inversedBy="newSubscriptionEvents")
|
|
* @ORM\JoinColumn(name="subscriber_id", nullable=false)
|
|
*/
|
|
private $subscriber;
|
|
|
|
/**
|
|
* @var \DateTime
|
|
*
|
|
* @ORM\Column(name="date", type="datetime", nullable=false)
|
|
*/
|
|
private $date;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="action", type="string", length=12, nullable=false)
|
|
*/
|
|
private $action;
|
|
|
|
|
|
/**
|
|
* @ORM\PrePersist
|
|
*/
|
|
public function onCreate()
|
|
{
|
|
if (!$this->date) {
|
|
$this->date = new \DateTime();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* Set date
|
|
*
|
|
* @param \DateTime $date
|
|
* @return SubscriptionEvent
|
|
*/
|
|
public function setDate($date)
|
|
{
|
|
$this->date = $date;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get date
|
|
*
|
|
* @return \DateTime
|
|
*/
|
|
public function getDate()
|
|
{
|
|
return $this->date;
|
|
}
|
|
|
|
/**
|
|
* Set subscriber
|
|
*
|
|
* @param User $subscriber
|
|
* @return SubscriptionEvent
|
|
*/
|
|
public function setSubscriber(User $subscriber)
|
|
{
|
|
$this->subscriber = $subscriber;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get subscriber
|
|
*
|
|
* @return User
|
|
*/
|
|
public function getSubscriber()
|
|
{
|
|
return $this->subscriber;
|
|
}
|
|
|
|
/**
|
|
* Set author
|
|
*
|
|
* @param User $author
|
|
* @return SubscriptionEvent
|
|
*/
|
|
public function setAuthor(User $author)
|
|
{
|
|
$this->author = $author;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get author
|
|
*
|
|
* @return User
|
|
*/
|
|
public function getAuthor()
|
|
{
|
|
return $this->author;
|
|
}
|
|
|
|
/**
|
|
* Set action
|
|
*
|
|
* @param string $action
|
|
* @return SubscriptionEvent
|
|
*/
|
|
public function setAction($action)
|
|
{
|
|
$this->action = $action;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get action
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getAction()
|
|
{
|
|
return $this->action;
|
|
}
|
|
}
|