mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-08 10:34:34 +00:00
366 lines
6.1 KiB
PHP
366 lines
6.1 KiB
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Model\Entities;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Gedmo\Mapping\Annotation as Gedmo;
|
|
|
|
/**
|
|
* @ORM\Table(name="ApiLogs", indexes={@ORM\Index(name="api_log_account_id", columns={"account_id"})})
|
|
* @ORM\Entity(repositoryClass="Alchemy\Phrasea\Model\Repositories\ApiLogRepository")
|
|
*/
|
|
class ApiLog
|
|
{
|
|
const DATABOXES_RESOURCE = 'databoxes';
|
|
const RECORDS_RESOURCE = 'records';
|
|
const BASKETS_RESOURCE = 'baskets';
|
|
const FEEDS_RESOURCE = 'feeds';
|
|
const QUARANTINE_RESOURCE = 'quarantine';
|
|
const STORIES_RESOURCE = 'stories';
|
|
const MONITOR_RESOURCE = 'monitor';
|
|
|
|
/**
|
|
* @ORM\Column(type="integer")
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue
|
|
*/
|
|
private $id;
|
|
|
|
/**
|
|
* @ORM\ManyToOne(targetEntity="ApiAccount")
|
|
* @ORM\JoinColumn(
|
|
* name="account_id",
|
|
* referencedColumnName="id",
|
|
* nullable=false,
|
|
* onDelete="CASCADE"
|
|
* )
|
|
*
|
|
* @return ApiAccount
|
|
**/
|
|
private $account;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(type="string", length=128, nullable=true)
|
|
*/
|
|
private $route;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(type="string", length=16, nullable=true)
|
|
*/
|
|
private $method;
|
|
|
|
/**
|
|
* @Gedmo\Timestampable(on="create")
|
|
* @ORM\Column(type="datetime")
|
|
*/
|
|
private $created;
|
|
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="status_code", type="integer", nullable=true)
|
|
*/
|
|
private $statusCode;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(type="string", length=64, nullable=true)
|
|
*/
|
|
private $format;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(type="string", length=64, nullable=true)
|
|
*/
|
|
private $resource;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(type="string", length=64, nullable=true)
|
|
*/
|
|
private $general;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(type="string", length=64, nullable=true)
|
|
*/
|
|
private $aspect;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(type="string", length=64, nullable=true)
|
|
*/
|
|
private $action;
|
|
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="error_code", type="integer", nullable=true)
|
|
*/
|
|
private $errorCode;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="error_message", type="text", nullable=true)
|
|
*/
|
|
private $errorMessage;
|
|
|
|
/**
|
|
* @param ApiAccount $account
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setAccount(ApiAccount $account)
|
|
{
|
|
$this->account = $account;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return ApiAccount
|
|
*/
|
|
public function getAccount()
|
|
{
|
|
return $this->account;
|
|
}
|
|
|
|
/**
|
|
* @param string $action
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setAction($action)
|
|
{
|
|
$this->action = $action;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getAction()
|
|
{
|
|
return $this->action;
|
|
}
|
|
|
|
/**
|
|
* @param string $aspect
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setAspect($aspect)
|
|
{
|
|
$this->aspect = $aspect;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getAspect()
|
|
{
|
|
return $this->aspect;
|
|
}
|
|
|
|
/**
|
|
* @param integer $errorCode
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setErrorCode($errorCode)
|
|
{
|
|
$this->errorCode = $errorCode;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return integer
|
|
*/
|
|
public function getErrorCode()
|
|
{
|
|
return $this->errorCode;
|
|
}
|
|
|
|
/**
|
|
* @param string $errorMessage
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setErrorMessage($errorMessage)
|
|
{
|
|
$this->errorMessage = $errorMessage;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getErrorMessage()
|
|
{
|
|
return $this->errorMessage;
|
|
}
|
|
|
|
/**
|
|
* @param string $format
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setFormat($format)
|
|
{
|
|
$this->format = $format;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getFormat()
|
|
{
|
|
return $this->format;
|
|
}
|
|
|
|
/**
|
|
* @param string $general
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setGeneral($general)
|
|
{
|
|
$this->general = $general;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getGeneral()
|
|
{
|
|
return $this->general;
|
|
}
|
|
|
|
/**
|
|
* @param string $resource
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setResource($resource)
|
|
{
|
|
$this->resource = $resource;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getResource()
|
|
{
|
|
return $this->resource;
|
|
}
|
|
|
|
/**
|
|
* @param string $route
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setRoute($route)
|
|
{
|
|
$this->route = $route;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getRoute()
|
|
{
|
|
return $this->route;
|
|
}
|
|
|
|
/**
|
|
* @param integer $statusCode
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setStatusCode($statusCode)
|
|
{
|
|
$this->statusCode = $statusCode;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return integer
|
|
*/
|
|
public function getStatusCode()
|
|
{
|
|
return $this->statusCode;
|
|
}
|
|
|
|
/**
|
|
* @param \DateTime $created
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setCreated(\DateTime $created)
|
|
{
|
|
$this->created = $created;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return \DateTime
|
|
*/
|
|
public function getCreated()
|
|
{
|
|
return $this->created;
|
|
}
|
|
|
|
/**
|
|
* @return integer
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* @param string $method
|
|
*
|
|
* @return ApiLog
|
|
*/
|
|
public function setMethod($method)
|
|
{
|
|
$this->method = $method;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getMethod()
|
|
{
|
|
return $this->method;
|
|
}
|
|
}
|