This repository was archived by the owner on Aug 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResponse.php
78 lines (63 loc) · 1.65 KB
/
Response.php
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
<?php
namespace WPLibs\Http;
use ArrayObject;
use JsonSerializable;
use Illuminate\Contracts\Support\Jsonable;
use Illuminate\Contracts\Support\Arrayable;
use Symfony\Component\HttpFoundation\Response as Symfony_Response;
class Response extends Symfony_Response {
use Response_Trait;
/**
* {@inheritdoc}
*/
public function send() {
$this->sendHeaders();
$this->sendContent();
return $this;
}
/**
* Set the content on the response.
*
* Overwrite: \Symfony\Component\HttpFoundation\Response::setContent()
*
* @param mixed $content Content that can be cast to string or JSONable.
* @return $this
*/
public function setContent( $content ) {
$this->original = $content;
if ( $this->should_be_json( $content ) ) {
$this->header( 'Content-Type', 'application/json' );
$content = $this->prepare_json_content( $content );
}
parent::setContent( $content );
return $this;
}
/**
* Determine if the given content should be turned into JSON.
*
* @param mixed $content The mixed content.
* @return bool
*/
protected function should_be_json( $content ) {
return $content instanceof Jsonable ||
$content instanceof Arrayable ||
$content instanceof ArrayObject ||
$content instanceof JsonSerializable ||
is_array( $content );
}
/**
* Morph the given content into JSON.
*
* @param mixed $content The mixed content.
* @return string
*/
protected function prepare_json_content( $content ) {
if ( $content instanceof Jsonable ) {
return $content->toJson();
}
if ( $content instanceof Arrayable ) {
return json_encode( $content->toArray() );
}
return json_encode( $content );
}
}