forked from WP-API/WP-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass-wp-json-response.php
163 lines (144 loc) · 3.8 KB
/
class-wp-json-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
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
<?php
class WP_JSON_Response implements WP_JSON_ResponseInterface {
/**
* Constructor
*
* @param mixed $data Response data
* @param integer $status HTTP status code
* @param array $headers HTTP header map
*/
public function __construct($data = null, $status = 200, $headers = array()) {
$this->data = $data;
$this->set_status( $status );
$this->set_headers( $headers );
}
/**
* Get headers associated with the response
*
* @return array Map of header name to header value
*/
public function get_headers() {
return $this->headers;
}
/**
* Set all header values
*
* @param array $headers Map of header name to header value
*/
public function set_headers($headers) {
$this->headers = $headers;
}
/**
* Set a single HTTP header
*
* @param string $key Header name
* @param string $value Header value
* @param boolean $replace Replace an existing header of the same name?
*/
public function header($key, $value, $replace = true) {
if ( $replace || ! isset( $this->headers[ $key ] ) ) {
$this->headers[ $key ] = $value;
}
else {
$this->headers[ $key ] .= ', ' . $value;
}
}
/**
* Set a single link header
*
* @internal The $rel parameter is first, as this looks nicer when sending multiple
*
* @link http://tools.ietf.org/html/rfc5988
* @link http://www.iana.org/assignments/link-relations/link-relations.xml
*
* @param string $rel Link relation. Either an IANA registered type, or an absolute URL
* @param string $link Target IRI for the link
* @param array $other Other parameters to send, as an assocative array
*/
public function link_header( $rel, $link, $other = array() ) {
$header = '<' . $link . '>; rel="' . $rel . '"';
//
// For large result sets, this causes gateway errors in nginx.
// We don't use them or need them, so not outputting.
//
/*
foreach ( $other as $key => $value ) {
if ( 'title' == $key )
$value = '"' . $value . '"';
$header .= '; ' . $key . '=' . $value;
}
*/
return $this->header( 'Link', $header, false );
}
/**
* Send navigation-related headers for post collections
*
* @param WP_Query $query
*/
public function query_navigation_headers( $query ) {
$max_page = $query->max_num_pages;
$paged = $query->get('paged');
if ( !$paged )
$paged = 1;
$nextpage = intval($paged) + 1;
if ( ! $query->is_single() ) {
if ( $paged > 1 ) {
$request = remove_query_arg( 'page' );
$request = add_query_arg( 'page', $paged - 1, $request );
$this->link_header( 'prev', $request );
}
if ( $nextpage <= $max_page ) {
$request = remove_query_arg( 'page' );
$request = add_query_arg( 'page', $nextpage, $request );
$this->link_header( 'next', $request );
}
}
$this->header( 'X-WP-Total', $query->found_posts );
$this->header( 'X-WP-TotalPages', $max_page );
do_action('json_query_navigation_headers', $this, $query);
}
/**
* Get the HTTP return code for the response
*
* @return integer 3-digit HTTP status code
*/
public function get_status() {
return $this->status;
}
/**
* Set the HTTP status code
*
* @param int $code HTTP status
*/
public function set_status( $code ) {
$this->status = absint( $code );
}
/**
* Get the response data
*
* @return mixed
*/
public function get_data() {
return $this->data;
}
/**
* Set the response data
*
* @param mixed $data
*/
public function set_data( $data ) {
$this->data = $data;
}
/**
* Get the response data for JSON serialization
*
* It is expected that in most implementations, this will return the same as
* {@see get_data()}, however this may be different if you want to do custom
* JSON data handling.
*
* @return mixed Any JSON-serializable value
*/
public function jsonSerialize() {
return $this->get_data();
}
}