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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
|
<?php
namespace Jasny;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Message\ResponseInterface;
/**
* Controller
*/
abstract class Controller
{
/**
* Server request
* @var ServerRequestInterface
**/
protected $request = null;
/**
* Response
* @var ResponseInterface
**/
protected $response = null;
/**
* Common input and output formats with associated MIME
* @var array
*/
protected $contentFormats = [
'text/html' => 'html',
'application/json' => 'json',
'application/xml' => 'xml',
'text/xml' => 'xml',
'text/plain' => 'text',
'application/javascript' => 'js',
'text/css' => 'css',
'image/png' => 'png',
'image/gif' => 'gif',
'image/jpeg' => 'jpeg',
'image/x-icon' => 'ico',
'application/x-www-form-urlencoded' => 'post',
'multipart/form-data' => 'post'
];
/**
* Run the controller
*
* @return ResponseInterface
*/
abstract public function run();
/**
* Get request, set for controller
*
* @return ServerRequestInterface
*/
public function getRequest()
{
return $this->request;
}
/**
* Get response. set for controller
*
* @return ResponseInterface
*/
public function getResponse()
{
return $this->response;
}
/**
* Run the controller as function
*
* @param ServerRequestInterface $request
* @param ResponseInterface $response
* @return ResponseInterface
*/
public function __invoke(ServerRequestInterface $request, ResponseInterface $response)
{
$this->request = $request;
$this->response = $response;
return $this->run();
}
/**
* Set the headers with HTTP status code and content type.
* @link http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
*
* Examples:
* <code>
* $this->responseWith(200, 'json');
* $this->responseWith(200, 'application/json');
* $this->responseWith(204);
* $this->responseWith("204 Created");
* $this->responseWith('json');
* </code>
*
* @param int $code HTTP status code (may be omitted)
* @param string|array $format Mime or content format
* @return ResponseInterface $response
*/
public function responseWith($code, $format = null)
{
$response = $this->getResponse();
// Shift arguments if $code is omitted
if (!is_int($code) && !preg_match('/^\d{3}\b/', $code)) {
list($code, $format) = array_merge([null], func_get_args());
}
if ($code) {
$response = $response->withStatus((int)$code);
}
if ($format) {
$contentType = $this->getContentType($format);
$response = $response->withHeader('Content-Type', $contentType);
}
return $response;
}
/**
* Response with success 200 code
*
* @return ResponseInterface $response
*/
public function ok()
{
return $this->responseWith(200);
}
/**
* Response with created 201 code, and optionaly redirect to created location
*
* @param string $location Url of created resource
* @return ResponseInterface $response
*/
public function created($location = '')
{
$response = $this->responseWith(201);
if ($location) {
$response = $response->withHeader('Location', $location);
}
return $response;
}
/**
* Response with 204 'No Content'
*
* @return ResponseInterface $response
*/
public function noContent()
{
return $this->responseWith(204);
}
/**
* Redirect to url
*
* @param string $url
* @param int $code 301 (Moved Permanently), 303 (See Other) or 307 (Temporary Redirect)
* @return ResponseInterface $response
*/
public function redirect($url, $code = 303)
{
$response = $this->responseWith($code, 'html');
$response = $response->withHeader('Location', $url);
$response->getBody()->write('You are being redirected to <a href="' . $url . '">' . $url . '</a>');
return $response;
}
/**
* Redirect to previous page, or to home page
*
* @return ResponseInterface $response
*/
public function back()
{
return $this->redirect($this->getLocalReferer() ?: '/');
}
/**
* Route to 401
* Note: While the 401 route is used, we don't respond with a 401 http status code.
*
* @return ResponseInterface $response
*/
public function requireLogin()
{
return $this->redirect('/401');
}
/**
* Alias of requireLogin
*
* @return ResponseInterface $response
*/
public function requireAuth()
{
return $this->requireLogin();
}
/**
* Set response to error 'Bad Request' state
*
* @param string $message
* @param int $code HTTP status code
* @return ResponseInterface $response
*/
public function badRequest($message, $code = 400)
{
return $this->error($message, $code);
}
/**
* Set response to error 'Forbidden' state
*
* @param string $message
* @param int $code HTTP status code
* @return ResponseInterface $response
*/
public function forbidden($message, $code = 403)
{
return $this->error($message, $code);
}
/**
* Set response to error 'Not Found' state
*
* @param string $message
* @param int $code HTTP status code
* @return ResponseInterface $response
*/
public function notFound($message, $code = 404)
{
return $this->error($message, $code);
}
/**
* Set response to error 'Conflict' state
*
* @param string $message
* @param int $code HTTP status code
* @return ResponseInterface $response
*/
public function conflict($message, $code = 409)
{
return $this->error($message, $code);
}
/**
* Set response to error 'Too Many Requests' state
*
* @param string $message
* @param int $code HTTP status code
* @return ResponseInterface $response
*/
public function tooManyRequests($message, $code = 429)
{
return $this->error($message, $code);
}
/**
* Set response to error state
*
* @param string $message
* @param int $code HTTP status code
* @return ResponseInterface $response
*/
public function error($message, $code = 400)
{
$response = $this->getResponse();
$errorResponse = $response->withStatus($code);
$errorResponse->getBody()->write($message);
return $errorResponse;
}
/**
* Check if response is 2xx succesful, or empty
*
* @return boolean
*/
public function isSuccessful()
{
$code = $this->getResponseStatusCode();
return !$code || ($code >= 200 && $code < 300);
}
/**
* Check if response is a 3xx redirect
*
* @return boolean
*/
public function isRedirection()
{
$code = $this->getResponseStatusCode();
return $code >= 300 && $code < 400;
}
/**
* Check if response is a 4xx client error
*
* @return boolean
*/
public function isClientError()
{
$code = $this->getResponseStatusCode();
return $code >= 400 && $code < 500;
}
/**
* Check if response is a 5xx redirect
*
* @return boolean
*/
public function isServerError()
{
return $this->getResponseStatusCode() >= 500;
}
/**
* Check if response is 4xx or 5xx error
*
* @return boolean
*/
public function isError()
{
return $this->isClientError() || $this->isServerError();
}
/**
* Returns the HTTP referer if it is on the current host
*
* @return string
*/
public function getLocalReferer()
{
$request = $this->getRequest();
$referer = $request->getHeaderLine('HTTP_REFERER');
$host = $request->getHeaderLine('HTTP_HOST');
return $referer && parse_url($referer, PHP_URL_HOST) === $host ? $referer : '';
}
/**
* Output result
*
* @param mixed $data
* @param string $format
* @return ResponseInterface $response
*/
public function output($data, $format)
{
$response = $this->getResponse();
$contentType = $this->getContentType($format);
$response = $response->withHeader('Content-Type', $contentType);
$content = is_scalar($data) ? $data : $this->encodeData($data, $format);
$response->getBody()->write($content);
return $response;
}
/**
* Encode data to send to client
*
* @param mixed $data
* @param string $format
* @return string
*/
public function encodeData($data, $format)
{
switch ($format) {
case 'json': return $this->encodeDataAsJson($data);
case 'xml': return $this->encodeDataAsXml($data);
case 'html':
throw new \InvalidArgumentException("To encode HTML please use a view");
default:
throw new \InvalidArgumentException("Can not encode data for format '$format'");
}
}
/**
* Encode data as xml
*
* @param \SimpleXMLElement $data
* @return string
*/
protected function encodeDataAsXml(\SimpleXMLElement $data)
{
return $data->asXML();
}
/**
* Encode data as json
*
* @param mixed
* @return string
*/
protected function encodeDataAsJson($data)
{
$data = json_encode($data);
return $this->isJsonp() ?
$this->getRequest()->getQueryParams()['callback'] . '(' . $data . ')' :
$data;
}
/**
* Check if we should respond with jsonp
*
* @return boolean
*/
protected function isJsonp()
{
$request = $this->getRequest();
return $request && !empty($request->getQueryParams()['callback']);
}
/**
* Get status code of response
*
* @return int
*/
protected function getResponseStatusCode()
{
$response = $this->getResponse();
return $response ? $response->getStatusCode() : 0;
}
/**
* Get valid content type by simple word description
*
* @param string $format
* @return string
*/
protected function getContentType($format)
{
return array_search($format, $this->contentFormats) ?: $format;
}
}
|