mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-21 22:42:48 +01:00
f358c8213b
Signed-off-by: Paul Tirk <paultirk@paultirk.com>
58 lines
1.4 KiB
PHP
58 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Nextcloud - News
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
* @copyright Bernhard Posselt 2014
|
|
*/
|
|
|
|
namespace OCA\News\Controller;
|
|
|
|
use \OCP\AppFramework\Http\JSONResponse;
|
|
|
|
trait JSONHttpErrorTrait
|
|
{
|
|
/**
|
|
* @param \Exception $exception The exception to report
|
|
* @param int $code The http error code
|
|
* @return JSONResponse
|
|
*/
|
|
public function error(\Exception $exception, int $code)
|
|
{
|
|
return new JSONResponse(['message' => $exception->getMessage()], $code);
|
|
}
|
|
|
|
/**
|
|
* @param \Exception $exception
|
|
* @param int $code
|
|
* @return \OCP\AppFramework\Http\JSONResponse
|
|
*/
|
|
public function errorResponseWithExceptionV2(\Exception $exception, int $code): JSONResponse
|
|
{
|
|
return $this->errorResponseV2(
|
|
$exception->getMessage(),
|
|
$exception->getCode(),
|
|
$code
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param string $message
|
|
* @param int $code
|
|
* @param int $httpStatusCode
|
|
* @return \OCP\AppFramework\Http\JSONResponse
|
|
*/
|
|
public function errorResponseV2(string $message, int $code, int $httpStatusCode): JSONResponse
|
|
{
|
|
return new JSONResponse([
|
|
'error' => [
|
|
'code' => $code,
|
|
'message' => $message,
|
|
]
|
|
], $httpStatusCode);
|
|
}
|
|
}
|