mirror of
https://github.com/friendica/friendica
synced 2024-11-10 19:02:53 +00:00
Add HTTPException class files
This commit is contained in:
parent
fd8b9deaaf
commit
b41bf77ec8
21 changed files with 223 additions and 0 deletions
23
src/Network/HTTPException.php
Normal file
23
src/Network/HTTPException.php
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Throwable exceptions to return HTTP status code
|
||||
*
|
||||
* This list of Exception has be extracted from
|
||||
* here http://racksburg.com/choosing-an-http-status-code/
|
||||
*/
|
||||
|
||||
namespace Friendica\Network;
|
||||
|
||||
use Exception;
|
||||
|
||||
class HTTPException extends Exception {
|
||||
var $httpcode = 200;
|
||||
var $httpdesc = "";
|
||||
public function __construct($message = "", $code = 0, Exception $previous = null) {
|
||||
if ($this->httpdesc == "") {
|
||||
$this->httpdesc = preg_replace("|([a-z])([A-Z])|",'$1 $2', str_replace("Exception","",get_class($this)));
|
||||
}
|
||||
parent::__construct($message, $code, $previous);
|
||||
}
|
||||
}
|
10
src/Network/HTTPException/BadGatewayException.php
Normal file
10
src/Network/HTTPException/BadGatewayException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class BadGatewayException extends HTTPException
|
||||
{
|
||||
var $httpcode = 502;
|
||||
}
|
10
src/Network/HTTPException/BadRequestException.php
Normal file
10
src/Network/HTTPException/BadRequestException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class BadRequestException extends HTTPException
|
||||
{
|
||||
var $httpcode = 400;
|
||||
}
|
10
src/Network/HTTPException/ConflictException.php
Normal file
10
src/Network/HTTPException/ConflictException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class ConflictException extends HTTPException
|
||||
{
|
||||
var $httpcode = 409;
|
||||
}
|
10
src/Network/HTTPException/ExpectationFailedException.php
Normal file
10
src/Network/HTTPException/ExpectationFailedException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class ExpectationFailedException extends HTTPException
|
||||
{
|
||||
var $httpcode = 417;
|
||||
}
|
10
src/Network/HTTPException/ForbiddenException.php
Normal file
10
src/Network/HTTPException/ForbiddenException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class ForbiddenException extends HTTPException
|
||||
{
|
||||
var $httpcode = 403;
|
||||
}
|
10
src/Network/HTTPException/GatewayTimeoutException.php
Normal file
10
src/Network/HTTPException/GatewayTimeoutException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class GatewayTimeoutException extends HTTPException
|
||||
{
|
||||
var $httpcode = 504;
|
||||
}
|
10
src/Network/HTTPException/GoneException.php
Normal file
10
src/Network/HTTPException/GoneException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class GoneException extends HTTPException
|
||||
{
|
||||
var $httpcode = 410;
|
||||
}
|
11
src/Network/HTTPException/ImATeapotException.php
Normal file
11
src/Network/HTTPException/ImATeapotException.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class ImATeapotException extends HTTPException
|
||||
{
|
||||
var $httpcode = 418;
|
||||
var $httpdesc = "I'm A Teapot";
|
||||
}
|
10
src/Network/HTTPException/InternalServerErrorException.php
Normal file
10
src/Network/HTTPException/InternalServerErrorException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class InternalServerErrorException extends HTTPException
|
||||
{
|
||||
var $httpcode = 500;
|
||||
}
|
10
src/Network/HTTPException/LenghtRequiredException.php
Normal file
10
src/Network/HTTPException/LenghtRequiredException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class LenghtRequiredException extends HTTPException
|
||||
{
|
||||
var $httpcode = 411;
|
||||
}
|
10
src/Network/HTTPException/MethodNotAllowedException.php
Normal file
10
src/Network/HTTPException/MethodNotAllowedException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class MethodNotAllowedException extends HTTPException
|
||||
{
|
||||
var $httpcode = 405;
|
||||
}
|
10
src/Network/HTTPException/NonAcceptableException.php
Normal file
10
src/Network/HTTPException/NonAcceptableException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class NonAcceptableException extends HTTPException
|
||||
{
|
||||
var $httpcode = 406;
|
||||
}
|
9
src/Network/HTTPException/NotFoundException.php
Normal file
9
src/Network/HTTPException/NotFoundException.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class NotFoundException extends HTTPException {
|
||||
var $httpcode = 404;
|
||||
}
|
10
src/Network/HTTPException/NotImplementedException.php
Normal file
10
src/Network/HTTPException/NotImplementedException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class NotImplementedException extends HTTPException
|
||||
{
|
||||
var $httpcode = 501;
|
||||
}
|
10
src/Network/HTTPException/PreconditionFailedException.php
Normal file
10
src/Network/HTTPException/PreconditionFailedException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class PreconditionFailedException extends HTTPException
|
||||
{
|
||||
var $httpcode = 412;
|
||||
}
|
10
src/Network/HTTPException/ServiceUnavaiableException.php
Normal file
10
src/Network/HTTPException/ServiceUnavaiableException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class ServiceUnavaiableException extends HTTPException
|
||||
{
|
||||
var $httpcode = 503;
|
||||
}
|
10
src/Network/HTTPException/TooManyRequestsException.php
Normal file
10
src/Network/HTTPException/TooManyRequestsException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class TooManyRequestsException extends HTTPException
|
||||
{
|
||||
var $httpcode = 429;
|
||||
}
|
10
src/Network/HTTPException/UnauthorizedException.php
Normal file
10
src/Network/HTTPException/UnauthorizedException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class UnauthorizedException extends HTTPException
|
||||
{
|
||||
var $httpcode = 401;
|
||||
}
|
10
src/Network/HTTPException/UnprocessableEntityException.php
Normal file
10
src/Network/HTTPException/UnprocessableEntityException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class UnprocessableEntityException extends HTTPException
|
||||
{
|
||||
var $httpcode = 422;
|
||||
}
|
10
src/Network/HTTPException/UnsupportedMediaTypeException.php
Normal file
10
src/Network/HTTPException/UnsupportedMediaTypeException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class UnsupportedMediaTypeException extends HTTPException
|
||||
{
|
||||
var $httpcode = 415;
|
||||
}
|
Loading…
Reference in a new issue