-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApiProblem.php
More file actions
169 lines (144 loc) · 4.34 KB
/
ApiProblem.php
File metadata and controls
169 lines (144 loc) · 4.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<?php
namespace BaseBundle\Api;
use Symfony\Component\HttpFoundation\Response;
/**
* A wrapper for holding data to be used for a application/problem+json response
*/
class ApiProblem
{
const TYPE_VALIDATION_ERROR = 'validation_error';
const TYPE_VALIDATION_NOTICE = 'validation_notice';
const TYPE_INVALID_REQUEST_BODY_FORMAT = 'invalid_body_format';
private static $titles = array(
self::TYPE_VALIDATION_NOTICE => 'There was a validation notice',
self::TYPE_VALIDATION_ERROR => 'There was a validation error',
self::TYPE_INVALID_REQUEST_BODY_FORMAT => 'Invalid JSON format sent',
);
protected $statusCode;
/**
* URL describing the problem type; defaults to HTTP status codes.
*
* @var string
*/
protected $type = 'http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html';
protected $title;
protected $extraData = array();
public function __construct($statusCode, $type = null)
{
$this->statusCode = $statusCode;
if ($type === null) {
// no type? The default is about:blank and the title should
// be the standard status code message
if (in_array($statusCode, array_keys($this->problemStatusTitles))) {
$type = $this->problemStatusTitles[$statusCode];
}
if ($this->getTitle() == null) {
$this->title = isset(Response::$statusTexts[$statusCode])
? Response::$statusTexts[$statusCode]
: 'Unknown status code :(';
}
$title = $this->getTitle();
} else {
if (!isset(self::$titles[$type])) {
throw new \InvalidArgumentException('No title for type '.$type);
}
$title = self::$titles[$type];
}
$this->type = $type;
$this->title = $title;
}
public function toArray()
{
return array_merge(
array(
'title' => $this->title,
'status' => $this->statusCode,
'type' => $this->type,
),
['details' => $this->extraData]
);
}
public function set($name, $value)
{
$this->extraData[$name] = $value;
}
public function setExtra(array $extraDta)
{
$this->extraData[] = $extraDta;
}
public function getStatusCode()
{
return $this->statusCode;
}
public function getTitle()
{
return $this->title;
}
/**
* @param null|string $title
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* @return null|string
*/
public function getType()
{
return $this->type;
}
/**
* @param null|string $type
*/
public function setType($type)
{
$this->type = $type;
}
/**
* Status titles for common problems.
*
* @var array
*/
protected $problemStatusTitles = array(
// CLIENT ERROR
400 => 'Bad Request',
401 => 'Unauthorized',
402 => 'Payment Required',
403 => 'Forbidden',
404 => 'Not Found',
405 => 'Method Not Allowed',
406 => 'Not Acceptable',
407 => 'Proxy Authentication Required',
408 => 'Request Time-out',
409 => 'Conflict',
410 => 'Gone',
411 => 'Length Required',
412 => 'Precondition Failed',
413 => 'Request Entity Too Large',
414 => 'Request-URI Too Large',
415 => 'Unsupported Media Type',
416 => 'Requested range not satisfiable',
417 => 'Expectation Failed',
418 => 'I\'m a teapot',
422 => 'Unprocessable Entity',
423 => 'Locked',
424 => 'Failed Dependency',
425 => 'Unordered Collection',
426 => 'Upgrade Required',
428 => 'Precondition Required',
429 => 'Too Many Requests',
431 => 'Request Header Fields Too Large',
// SERVER ERROR
500 => 'Internal Server Error',
501 => 'Not Implemented',
502 => 'Bad Gateway',
503 => 'Service Unavailable',
504 => 'Gateway Time-out',
505 => 'HTTP Version not supported',
506 => 'Variant Also Negotiates',
507 => 'Insufficient Storage',
508 => 'Loop Detected',
511 => 'Network Authentication Required',
);
}