82 lines
2.6 KiB
PHP
82 lines
2.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\Memories;
|
|
|
|
use OCP\AppFramework\Http;
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
|
|
class Exceptions
|
|
{
|
|
public static function Generic(\Exception $e, int $status = Http::STATUS_INTERNAL_SERVER_ERROR): HttpResponseException
|
|
{
|
|
return new HttpResponseException(new DataResponse([
|
|
'message' => $e->getMessage(),
|
|
], $status));
|
|
}
|
|
|
|
public static function NotLoggedIn(): HttpResponseException
|
|
{
|
|
return new HttpResponseException(new DataResponse([
|
|
'message' => 'User not logged in',
|
|
], Http::STATUS_PRECONDITION_FAILED));
|
|
}
|
|
|
|
public static function NotEnabled(string $app): HttpResponseException
|
|
{
|
|
return new HttpResponseException(new DataResponse([
|
|
'message' => "{$app} app not enabled or not the required version.",
|
|
], Http::STATUS_PRECONDITION_FAILED));
|
|
}
|
|
|
|
public static function NoRequestRoot(): HttpResponseException
|
|
{
|
|
return new HttpResponseException(new DataResponse([
|
|
'message' => 'Request root could not be determined',
|
|
], Http::STATUS_NOT_FOUND));
|
|
}
|
|
|
|
public static function NotFound(string $ctx): HttpResponseException
|
|
{
|
|
return new HttpResponseException(new DataResponse([
|
|
'message' => "Not found ({$ctx})",
|
|
], Http::STATUS_NOT_FOUND));
|
|
}
|
|
|
|
public static function NotFoundFile(null|int|string $identifier): HttpResponseException
|
|
{
|
|
return new HttpResponseException(new DataResponse([
|
|
'message' => "File not found ({$identifier})",
|
|
], Http::STATUS_NOT_FOUND));
|
|
}
|
|
|
|
public static function Forbidden(string $ctx): HttpResponseException
|
|
{
|
|
return new HttpResponseException(new DataResponse([
|
|
'message' => "Forbidden ({$ctx})",
|
|
], Http::STATUS_FORBIDDEN));
|
|
}
|
|
|
|
public static function ForbiddenFileUpdate(string $name): HttpResponseException
|
|
{
|
|
return new HttpResponseException(new DataResponse([
|
|
'message' => "Forbidden ({$name} cannot be updated)",
|
|
], Http::STATUS_FORBIDDEN));
|
|
}
|
|
|
|
public static function MissingParameter(string $name): HttpResponseException
|
|
{
|
|
return new HttpResponseException(new DataResponse([
|
|
'message' => "Missing parameter ({$name})",
|
|
], Http::STATUS_BAD_REQUEST));
|
|
}
|
|
|
|
public static function BadRequest(string $ctx): HttpResponseException
|
|
{
|
|
return new HttpResponseException(new DataResponse([
|
|
'message' => "Bad Request ({$ctx})",
|
|
], Http::STATUS_BAD_REQUEST));
|
|
}
|
|
}
|