phpOMS/Message/ResponseAbstract.php
2015-11-29 22:03:06 +01:00

162 lines
3.1 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.0
*
* @category TBD
* @package TBD
* @author OMS Development Team <dev@oms.com>
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @copyright 2013 Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://orange-management.com
*/
namespace phpOMS\Message;
use phpOMS\Contract\ArrayableInterface;
use phpOMS\Contract\JsonableInterface;
use phpOMS\Localization\Localization;
use phpOMS\Utils\ArrayUtils;
/**
* Response abstract class.
*
* @category Framework
* @package phpOMS\Response
* @author OMS Development Team <dev@oms.com>
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @license OMS License 1.0
* @link http://orange-management.com
* @since 1.0.0
*/
abstract class ResponseAbstract implements ResponseInterface, ArrayableInterface, JsonableInterface
{
/**
* Localization.
*
* @var Localization
* @since 1.0.0
*/
protected $l11n = null;
/**
* Responses.
*
* @var \string[]
* @since 1.0.0
*/
protected $response = [];
/**
* Response status.
*
* @var \int
* @since 1.0.0
*/
protected $status = 200;
/**
* Account.
*
* @var \int
* @since 1.0.0
*/
protected $account = null;
/**
* {@inheritdoc}
*/
abstract public function setHeader($key, \string $header, \bool $overwrite = true);
/**
* {@inheritdoc}
*/
public function getL11n() : Localization
{
return $this->l11n;
}
/**
* {@inheritdoc}
*/
public function setL11n(Localization $l11n)
{
return $this->l11n = $l11n;
}
/**
* Get response by ID.
*
* @param mixed $id Response ID
*
* @return mixed
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
*/
public function &get($id)
{
return $this->response[$id];
}
/**
* Add response.
*
* @param mixed $key Response id
* @param mixed $response Response to add
* @param \bool $overwrite Overwrite
*
* @return void
*
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
*/
public function set($key, $response, \bool $overwrite = true)
{
$this->response = ArrayUtils::setArray($key, $this->response, $response, ':', $overwrite);
}
/**
* {@inheritdoc}
*/
public function setStatusCode(\string $status)
{
$this->status = $status;
}
/**
* {@inheritdoc}
*/
public function getStatusCode() : \string
{
return $this->status;
}
/**
* {@inheritdoc}
*/
public function getAccount() : \int
{
return $this->account;
}
/**
* {@inheritdoc}
*/
public function setAccount(\int $account)
{
$this->account = $account;
}
/**
* {@inheritdoc}
*/
public function toJson(\int $options = 0) : \string
{
return json_encode($this->toArray());
}
}