Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit e21a76a

Browse files
author
Simon Yousoufov
committed
Initial commit
0 parents  commit e21a76a

26 files changed

+1022
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/vendor
2+
/components
3+
/tests/coverage
4+
composer.phar
5+
composer.lock
6+
.DS_Store

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: php
2+
php:
3+
- '5.6'
4+
- '7.0'
5+
- nightly
6+
install:
7+
- composer install
8+

LICENSE.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015-2016 Fuzz Productions LLC <[email protected]>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Fuzz HTTP Exception
2+
===================
3+
4+
A library containing a set of RESTful HTTP exceptions that use a consistent interface, built upon the ideas set by [symfony/http-kernel](https://github.com/symfony/http-kernel)
5+
6+
## Usage
7+
```php
8+
<?php
9+
10+
use Fuzz\HttpException\AccessDeniedHttpException;
11+
12+
throw new AccessDeniedHttpException('Access denied.');
13+
```
14+
15+
## TODO
16+
1. Support all HTTP status codes
17+
1. Improve exception API

composer.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "fuzz/http-exception",
3+
"description": "A library containing a set of RESTful HTTP exceptions that use a consistent interface.",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Fuzz Web",
8+
"email": "[email protected]"
9+
}
10+
],
11+
"require-dev": {
12+
"phpunit/phpunit": "~5.0"
13+
},
14+
"autoload": {
15+
"psr-4": {
16+
"Fuzz\\HttpException\\": "src/",
17+
"Fuzz\\HttpException\\Tests\\": "tests/"
18+
}
19+
},
20+
"require": {}
21+
}

phpunit.xml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="false"
11+
syntaxCheck="false"
12+
>
13+
<testsuites>
14+
<testsuite name="Package Test Suite">
15+
<directory suffix=".php">./tests/</directory>
16+
</testsuite>
17+
</testsuites>
18+
<filter>
19+
<whitelist>
20+
<directory>src</directory>
21+
</whitelist>
22+
</filter>
23+
</phpunit>

src/AccessDeniedHttpException.php

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?php
2+
3+
namespace Fuzz\HttpException;
4+
5+
class AccessDeniedHttpException extends HttpException
6+
{
7+
/**
8+
* HTTP status code
9+
*
10+
* @const int
11+
*/
12+
const HTTP_CODE = 403;
13+
14+
/**
15+
* Error code storage;
16+
*
17+
* @var string
18+
*/
19+
protected $error_name = 'access_denied';
20+
21+
/**
22+
* NotFoundHttpException constructor.
23+
*
24+
* @param string $message
25+
* @param string $error_formatted
26+
* @param array $error_data
27+
* @param array $headers
28+
* @param \Exception $previous
29+
*/
30+
public function __construct($message = null, $error_formatted = null, array $error_data = [], array $headers = [], \Exception $previous = null)
31+
{
32+
parent::__construct($message, $error_formatted, $error_data, $headers, self::HTTP_CODE, $previous);
33+
}
34+
}

src/BadRequestHttpException.php

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?php
2+
3+
namespace Fuzz\HttpException;
4+
5+
class BadRequestHttpException extends HttpException
6+
{
7+
/**
8+
* HTTP status code
9+
*
10+
* @const int
11+
*/
12+
const HTTP_CODE = 400;
13+
14+
/**
15+
* Error code storage;
16+
*
17+
* @var string
18+
*/
19+
protected $error_name = 'bad_request';
20+
21+
/**
22+
* NotFoundHttpException constructor.
23+
*
24+
* @param string $message
25+
* @param string $error_formatted
26+
* @param array $error_data
27+
* @param array $headers
28+
* @param \Exception $previous
29+
*/
30+
public function __construct($message = null, $error_formatted = null, array $error_data = [], array $headers = [], \Exception $previous = null)
31+
{
32+
parent::__construct($message, $error_formatted, $error_data, $headers, self::HTTP_CODE, $previous);
33+
}
34+
}

src/ConflictHttpException.php

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?php
2+
3+
namespace Fuzz\HttpException;
4+
5+
class ConflictHttpException extends HttpException
6+
{
7+
/**
8+
* HTTP status code
9+
*
10+
* @const int
11+
*/
12+
const HTTP_CODE = 409;
13+
14+
/**
15+
* Error code storage;
16+
*
17+
* @var string
18+
*/
19+
protected $error_name = 'conflict';
20+
21+
/**
22+
* NotFoundHttpException constructor.
23+
*
24+
* @param string $message
25+
* @param string $error_formatted
26+
* @param array $error_data
27+
* @param array $headers
28+
* @param \Exception $previous
29+
*/
30+
public function __construct($message = null, $error_formatted = null, array $error_data = [], array $headers = [], \Exception $previous = null)
31+
{
32+
parent::__construct($message, $error_formatted, $error_data, $headers, self::HTTP_CODE, $previous);
33+
}
34+
}
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php
2+
3+
namespace Fuzz\HttpException\Contracts;
4+
5+
interface HttpExceptionInterface
6+
{
7+
/**
8+
* The HTTP status code
9+
*
10+
* @return int
11+
*/
12+
public function getStatusCode();
13+
14+
/**
15+
* Return headers
16+
*
17+
* @return array
18+
*/
19+
public function getHeaders();
20+
21+
/**
22+
* Data corresponding to the error
23+
*
24+
* @return array
25+
*/
26+
public function getErrorData();
27+
28+
/**
29+
* String code of the error
30+
*
31+
* i.e. not_found or access_denied
32+
*
33+
* @return string
34+
*/
35+
public function getErrorName();
36+
37+
/**
38+
* A user-friendly error description
39+
*
40+
* @return string
41+
*/
42+
public function getErrorFormatted();
43+
}

src/GoneHttpException.php

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?php
2+
3+
namespace Fuzz\HttpException;
4+
5+
class GoneHttpException extends HttpException
6+
{
7+
/**
8+
* HTTP status code
9+
*
10+
* @const int
11+
*/
12+
const HTTP_CODE = 410;
13+
14+
/**
15+
* Error code storage;
16+
*
17+
* @var string
18+
*/
19+
protected $error_name = 'gone';
20+
21+
/**
22+
* NotFoundHttpException constructor.
23+
*
24+
* @param string $message
25+
* @param string $error_formatted
26+
* @param array $error_data
27+
* @param array $headers
28+
* @param \Exception $previous
29+
*/
30+
public function __construct($message = null, $error_formatted = null, array $error_data = [], array $headers = [], \Exception $previous = null)
31+
{
32+
parent::__construct($message, $error_formatted, $error_data, $headers, self::HTTP_CODE, $previous);
33+
}
34+
}

0 commit comments

Comments
 (0)