PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 6.4
Jetpack – WP Security, Backup, Speed, & Growth v6.4
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / sal / class.json-api-links.php
class.json-api-links.php
284 lines 9.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 require_once dirname( __FILE__ ) . '/../class.json-api.php';
4
5 class WPCOM_JSON_API_Links {
6 private $api;
7 private static $instance;
8 private $closest_endpoint_cache_by_version = array();
9 private $matches_by_version = array();
10 private $cache_result = null;
11
12 public static function getInstance() {
13 if ( null === self::$instance ) {
14 self::$instance = new self();
15 }
16
17 return self::$instance;
18 }
19
20 // protect these methods for singleton
21 protected function __construct() {
22 $this->api = WPCOM_JSON_API::init();
23 }
24 private function __clone() { }
25 private function __wakeup() { }
26
27 /**
28 * Generate a URL to an endpoint
29 *
30 * Used to construct meta links in API responses
31 *
32 * @param mixed $args Optional arguments to be appended to URL
33 * @return string Endpoint URL
34 **/
35 function get_link() {
36 $args = func_get_args();
37 $format = array_shift( $args );
38 $base = WPCOM_JSON_API__BASE;
39
40 $path = array_pop( $args );
41
42 if ( $path ) {
43 $path = '/' . ltrim( $path, '/' );
44 // tack the path onto the end of the format string
45 // have to escape %'s in the path as %% because
46 // we're about to pass it through sprintf and we don't
47 // want it to see the % as a placeholder
48 $format .= str_replace( '%', '%%', $path );
49 }
50
51 // Escape any % in args before using sprintf
52 $escaped_args = array();
53 foreach ( $args as $arg_key => $arg_value ) {
54 $escaped_args[ $arg_key ] = str_replace( '%', '%%', $arg_value );
55 }
56
57 $relative_path = vsprintf( $format, $escaped_args );
58
59 if ( ! wp_startswith( $relative_path, '.' ) ) {
60 // Generic version. Match the requested version as best we can
61 $api_version = $this->get_closest_version_of_endpoint( $format, $relative_path );
62 $base = substr( $base, 0, - 1 ) . $api_version;
63 }
64
65 // escape any % in the relative path before running it through sprintf again
66 $relative_path = str_replace( '%', '%%', $relative_path );
67 // http, WPCOM_JSON_API__BASE, ... , path
68 // %s , %s , $format, %s
69 return esc_url_raw( sprintf( "https://%s$relative_path", $base ) );
70 }
71
72 function get_me_link( $path = '' ) {
73 return $this->get_link( '/me', $path );
74 }
75
76 function get_taxonomy_link( $blog_id, $taxonomy_id, $taxonomy_type, $path = '' ) {
77 switch ( $taxonomy_type ) {
78 case 'category':
79 return $this->get_link( '/sites/%d/categories/slug:%s', $blog_id, $taxonomy_id, $path );
80
81 case 'post_tag':
82 return $this->get_link( '/sites/%d/tags/slug:%s', $blog_id, $taxonomy_id, $path );
83
84 default:
85 return $this->get_link( '/sites/%d/taxonomies/%s/terms/slug:%s', $blog_id, $taxonomy_type, $taxonomy_id, $path );
86 }
87 }
88
89 function get_media_link( $blog_id, $media_id, $path = '' ) {
90 return $this->get_link( '/sites/%d/media/%d', $blog_id, $media_id, $path );
91 }
92
93 function get_site_link( $blog_id, $path = '' ) {
94 return $this->get_link( '/sites/%d', $blog_id, $path );
95 }
96
97 function get_post_link( $blog_id, $post_id, $path = '' ) {
98 return $this->get_link( '/sites/%d/posts/%d', $blog_id, $post_id, $path );
99 }
100
101 function get_comment_link( $blog_id, $comment_id, $path = '' ) {
102 return $this->get_link( '/sites/%d/comments/%d', $blog_id, $comment_id, $path );
103 }
104
105 function get_publicize_connection_link( $blog_id, $publicize_connection_id, $path = '' ) {
106 return $this->get_link( '.1/sites/%d/publicize-connections/%d', $blog_id, $publicize_connection_id, $path );
107 }
108
109 function get_publicize_connections_link( $keyring_token_id, $path = '' ) {
110 return $this->get_link( '.1/me/publicize-connections/?keyring_connection_ID=%d', $keyring_token_id, $path );
111 }
112
113 function get_keyring_connection_link( $keyring_token_id, $path = '' ) {
114 return $this->get_link( '.1/me/keyring-connections/%d', $keyring_token_id, $path );
115 }
116
117 function get_external_service_link( $external_service, $path = '' ) {
118 return $this->get_link( '.1/meta/external-services/%s', $external_service, $path );
119 }
120
121 /**
122 * Try to find the closest supported version of an endpoint to the current endpoint
123 *
124 * For example, if we were looking at the path /animals/panda:
125 * - if the current endpoint is v1.3 and there is a v1.3 of /animals/%s available, we return 1.3
126 * - if the current endpoint is v1.3 and there is no v1.3 of /animals/%s known, we fall back to the
127 * maximum available version of /animals/%s, e.g. 1.1
128 *
129 * This method is used in get_link() to construct meta links for API responses.
130 *
131 * @param $template_path string The generic endpoint path, e.g. /sites/%s
132 * @param $path string The current endpoint path, relative to the version, e.g. /sites/12345
133 * @param $request_method string Request method used to access the endpoint path
134 * @return string The current version, or otherwise the maximum version available
135 */
136 function get_closest_version_of_endpoint( $template_path, $path, $request_method = 'GET' ) {
137 $closest_endpoint_cache_by_version = & $this->closest_endpoint_cache_by_version;
138
139 $closest_endpoint_cache = & $closest_endpoint_cache_by_version[ $this->api->version ];
140 if ( !$closest_endpoint_cache ) {
141 $closest_endpoint_cache_by_version[ $this->api->version ] = array();
142 $closest_endpoint_cache = & $closest_endpoint_cache_by_version[ $this->api->version ];
143 }
144
145 if ( ! isset( $closest_endpoint_cache[ $template_path ] ) ) {
146 $closest_endpoint_cache[ $template_path ] = array();
147 } elseif ( isset( $closest_endpoint_cache[ $template_path ][ $request_method ] ) ) {
148 return $closest_endpoint_cache[ $template_path ][ $request_method ];
149 }
150
151 $path = untrailingslashit( $path );
152
153 // /help is a special case - always use the current request version
154 if ( wp_endswith( $path, '/help' ) ) {
155 $closest_endpoint_cache[ $template_path ][ $request_method ] = $this->api->version;
156 return $this->api->version;
157 }
158
159 $matches_by_version = & $this->matches_by_version;
160
161 // try to match out of saved matches
162 if ( ! isset( $matches_by_version[ $this->api->version ] ) ) {
163 $matches_by_version[ $this->api->version ] = array();
164 }
165 foreach ( $matches_by_version[ $this->api->version ] as $match ) {
166 $regex = $match->regex;
167 if ( preg_match( "#^$regex\$#", $path ) ) {
168 $closest_endpoint_cache[ $template_path ][ $request_method ] = $match->version;
169 return $match->version;
170 }
171 }
172
173 $endpoint_path_versions = $this->get_endpoint_path_versions();
174 $last_path_segment = $this->get_last_segment_of_relative_path( $path );
175 $max_version_found = null;
176
177 foreach ( $endpoint_path_versions as $endpoint_last_path_segment => $endpoints ) {
178
179 // Does the last part of the path match the path key? (e.g. 'posts')
180 // If the last part contains a placeholder (e.g. %s), we want to carry on
181 if ( $last_path_segment != $endpoint_last_path_segment && ! strstr( $endpoint_last_path_segment, '%' ) ) {
182 continue;
183 }
184
185 foreach ( $endpoints as $endpoint ) {
186 // Does the request method match?
187 if ( ! in_array( $request_method, $endpoint['request_methods'] ) ) {
188 continue;
189 }
190
191 $endpoint_path = untrailingslashit( $endpoint['path'] );
192 $endpoint_path_regex = str_replace( array( '%s', '%d' ), array( '([^/?&]+)', '(\d+)' ), $endpoint_path );
193
194 if ( ! preg_match( "#^$endpoint_path_regex\$#", $path ) ) {
195 continue;
196 }
197
198 // Make sure the endpoint exists at the same version
199 if ( version_compare( $this->api->version, $endpoint['min_version'], '>=') &&
200 version_compare( $this->api->version, $endpoint['max_version'], '<=') ) {
201 array_push(
202 $matches_by_version[ $this->api->version ],
203 (object) array( 'version' => $this->api->version, 'regex' => $endpoint_path_regex )
204 );
205 $closest_endpoint_cache[ $template_path ][ $request_method ] = $this->api->version;
206 return $this->api->version;
207 }
208
209 // If the endpoint doesn't exist at the same version, record the max version we found
210 if ( empty( $max_version_found ) || version_compare( $max_version_found['version'], $endpoint['max_version'], '<' ) ) {
211 $max_version_found = array( 'version' => $endpoint['max_version'], 'regex' => $endpoint_path_regex );
212 }
213 }
214 }
215
216 // If the endpoint version is less than the requested endpoint version, return the max version found
217 if ( ! empty( $max_version_found ) ) {
218 array_push(
219 $matches_by_version[ $this->api->version ],
220 (object) $max_version_found
221 );
222 $closest_endpoint_cache[ $template_path ][ $request_method ] = $max_version_found['version'];
223 return $max_version_found['version'];
224 }
225
226 // Otherwise, use the API version of the current request
227 return $this->api->version;
228 }
229
230 /**
231 * Get an array of endpoint paths with their associated versions
232 *
233 * @return array Array of endpoint paths, min_versions and max_versions, keyed by last segment of path
234 **/
235 protected function get_endpoint_path_versions() {
236
237 if ( ! empty ( $this->cache_result ) ) {
238 return $this->cache_result;
239 }
240
241 /*
242 * Create a map of endpoints and their min/max versions keyed by the last segment of the path (e.g. 'posts')
243 * This reduces the search space when finding endpoint matches in get_closest_version_of_endpoint()
244 */
245 $endpoint_path_versions = array();
246
247 foreach ( $this->api->endpoints as $key => $endpoint_objects ) {
248
249 // The key contains a serialized path, min_version and max_version
250 list( $path, $min_version, $max_version ) = unserialize( $key );
251
252 // Grab the last component of the relative path to use as the top-level key
253 $last_path_segment = $this->get_last_segment_of_relative_path( $path );
254
255 $endpoint_path_versions[ $last_path_segment ][] = array(
256 'path' => $path,
257 'min_version' => $min_version,
258 'max_version' => $max_version,
259 'request_methods' => array_keys( $endpoint_objects )
260 );
261 }
262
263 $this->cache_result = $endpoint_path_versions;
264
265 return $endpoint_path_versions;
266 }
267
268 /**
269 * Grab the last segment of a relative path
270 *
271 * @param string $path Path
272 * @return string Last path segment
273 */
274 protected function get_last_segment_of_relative_path( $path) {
275 $path_parts = array_filter( explode( '/', $path ) );
276
277 if ( empty( $path_parts ) ) {
278 return null;
279 }
280
281 return end( $path_parts );
282 }
283 }
284