icingaweb2-module-director/library/Director/Web/Controller/Extension/RestApi.php

115 lines
2.9 KiB
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\Web\Controller\Extension;
use Icinga\Exception\AuthenticationException;
use Icinga\Exception\NotFoundError;
2018-06-14 08:33:11 +02:00
use Icinga\Module\Director\Exception\JsonException;
use Icinga\Web\Response;
2018-06-14 08:33:11 +02:00
use InvalidArgumentException;
use Zend_Controller_Response_Exception;
trait RestApi
{
protected function isApified()
{
if (property_exists($this, 'isApified')) {
return $this->isApified;
} else {
return false;
}
}
2018-06-14 08:33:11 +02:00
/**
* @return bool
*/
protected function sendNotFoundForRestApi()
{
2018-06-14 08:33:11 +02:00
/** @var \Icinga\Web\Request $request */
$request = $this->getRequest();
if ($request->isApiRequest()) {
$this->sendJsonError($this->getResponse(), 'Not found', 404);
return true;
} else {
return false;
}
}
/**
* @return bool
*/
protected function sendNotFoundUnlessRestApi()
{
/** @var \Icinga\Web\Request $request */
$request = $this->getRequest();
if ($request->isApiRequest()) {
return false;
} else {
$this->sendJsonError($this->getResponse(), 'Not found', 404);
return true;
}
}
2018-06-14 08:33:11 +02:00
/**
* @throws AuthenticationException
*/
protected function assertApiPermission()
{
if (! $this->hasPermission('director/api')) {
throw new AuthenticationException('You are not allowed to access this API');
}
}
2018-06-14 08:33:11 +02:00
/**
* @throws AuthenticationException
* @throws NotFoundError
*/
protected function checkForRestApiRequest()
{
2018-06-14 08:33:11 +02:00
/** @var \Icinga\Web\Request $request */
$request = $this->getRequest();
if ($request->isApiRequest()) {
$this->assertApiPermission();
if (! $this->isApified()) {
throw new NotFoundError('No such API endpoint found');
}
}
}
2018-06-14 08:33:11 +02:00
/**
* @param Response $response
* @param $object
*/
protected function sendJson(Response $response, $object)
{
$response->setHeader('Content-Type', 'application/json', true);
echo json_encode($object, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES) . "\n";
}
2018-06-14 08:33:11 +02:00
/**
* @param Response $response
* @param string $message
* @param int|null $code
*/
protected function sendJsonError(Response $response, $message, $code = null)
{
if ($code !== null) {
2018-06-14 08:33:11 +02:00
try {
$response->setHttpResponseCode((int) $code);
} catch (Zend_Controller_Response_Exception $e) {
throw new InvalidArgumentException($e->getMessage(), 0, $e);
}
}
$this->sendJson($response, (object) ['error' => $message]);
}
2018-06-14 08:33:11 +02:00
/**
* @return string
*/
protected function getLastJsonError()
{
2018-06-14 08:33:11 +02:00
return JsonException::getJsonErrorMessage(json_last_error());
}
}