This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwp-wordpresscom-api.php
552 lines (458 loc) · 12.4 KB
/
wp-wordpresscom-api.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
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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
<?php
/**
* Library for accessing the WordPress.com API on WordPress
*
* @link https://developer.wordpress.com/docs/ API Documentation
* @link https://developer.wordpress.com/docs/api/console/ Console
* @package WP-API-Libraries\WP-WordPressCom-API
*/
/*
* Plugin Name: WordPress.com API
* Plugin URI: https://wp-api-libraries.com/
* Description: Perform API requests.
* Author: WP API Libraries
* Version: 1.0.0
* Author URI: https://wp-api-libraries.com
* GitHub Plugin URI: https://github.com/wp-api-libraries/wp-wordpresscom-api
* GitHub Branch: master
*/
/* Exit if accessed directly */
if ( ! defined( 'ABSPATH' ) ) {
exit; }
if ( ! class_exists( 'WordPressComAPI' ) ) {
/**
* WordPressComAPI class.
*/
class WordPressComAPI {
/**
* API Key.
*
* @var string
*/
protected static $oauth_token;
/**
* CloudFlare BaseAPI Endpoint
*
* @var string
* @access protected
*/
protected $base_uri = 'https://public-api.wordpress.com/rest/v1.1/';
/**
* Route being called.
*
* @var string
*/
protected $route = '';
/**
* Class constructor.
*
* @param string $oauth_token Wordpress.com oauth Key.
*/
public function __construct( $oauth_token ) {
static::$oauth_token = trim( $oauth_token );
}
/**
* Prepares API request.
*
* @param string $route API route to make the call to.
* @param array $args Arguments to pass into the API call.
* @param array $method HTTP Method to use for request.
* @return self Returns an instance of itself so it can be chained to the fetch method.
*/
protected function build_request( $route, $args = array(), $method = 'GET' ) {
// Start building query.
$this->set_headers();
$this->args['method'] = $method;
$this->route = $route;
// Generate query string for GET requests.
if ( 'GET' === $method ) {
$this->route = add_query_arg( array_filter( $args ), $route );
} elseif ( 'application/json' === $this->args['headers']['Content-Type'] ) {
$this->args['body'] = wp_json_encode( $args );
} else {
$this->args['body'] = $args;
}
return $this;
}
/**
* Fetch the request from the API.
*
* @access private
* @return array|WP_Error Request results or WP_Error on request failure.
*/
protected function fetch() {
// Make the request.
$response = wp_remote_request( $this->base_uri . $this->route, $this->args );
// Retrieve Status code & body.
$code = wp_remote_retrieve_response_code( $response );
$body = json_decode( wp_remote_retrieve_body( $response ) );
$this->clear();
// Return WP_Error if request is not successful.
if ( ! $this->is_status_ok( $code ) ) {
return new WP_Error( 'response-error', sprintf( __( 'Status: %d', 'wp-postmark-api' ), $code ), $body );
}
return $body;
}
/**
* Set request headers.
*/
protected function set_headers() {
// Set request headers.
$this->args['timeout'] = 30;
$this->args['headers'] = array(
'Authorization' => 'Bearer ' . static::$oauth_token,
'Content-Type' => 'application/json',
);
}
/**
* Clear query data.
*/
protected function clear() {
$this->args = array();
}
/**
* Check if HTTP status code is a success.
*
* @param int $code HTTP status code.
* @return boolean True if status is within valid range.
*/
protected function is_status_ok( $code ) {
return ( 200 <= $code && 300 > $code );
}
/**
* Get a list of the current user's sites.
*
* @api GET
* @see https://developer.wordpress.com/docs/api/1.1/get/me/sites/ Documentation.
* @access public
* @param array $args Array with optional parameters. See API docs for details.
* @return array Array of user's sites.
*/
public function me_sites( $args = array() ) {
return $this->build_request( 'me/sites', $args )->fetch();
}
/* USERS. */
/**
* get_users function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_users( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/users', $args )->fetch();
}
public function update_user() {
}
public function get_user() {
}
/* SITES. */
public function get_rendered_shortcode( $site, $args = array() ) {
}
/**
* get_available_shortcodes function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_available_shortcodes( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/shortcodes', $args )->fetch();
}
/**
* get_available_embeds function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_available_embeds( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/embeds', $args )->fetch();
}
/**
* get_widgets function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_widgets( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/widgets', $args )->fetch();
}
/**
* get_post_types function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_post_types( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/post-types', $args )->fetch();
}
/**
* get_post_types_count function.
*
* @access public
* @param mixed $site
* @param mixed $post_type
* @param array $args (default: array())
* @return void
*/
public function get_post_types_count( $site, $post_type, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/post-counts/' . $post_type, $args )->fetch();
}
/**
* get_page_templates function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_page_templates( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/page-templates', $args )->fetch();
}
/* POSTS. */
/**
* get_posts function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_posts( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/posts', $args )->fetch();
}
/* COMMENTS. */
/* TAXONOMY. */
/**
* get_categories function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_categories( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/categories', $args )->fetch();
}
/**
* get_tags function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_tags( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/tags', $args )->fetch();
}
/* FOLLOW. */
/* SHARING. */
/* FRESHLY PRESSED. */
/* NOTIFICATIONS. */
/* INSIGHTS. */
/* READER. */
/* STATS. */
/**
* Get Stats.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_stats( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats', $args )->fetch();
}
/**
* get_stats_summary function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_stats_summary( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/summary', $args )->fetch();
}
/**
* get_top_posts function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_top_posts( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/top-posts', $args )->fetch();
}
/**
* get_video_stats function.
*
* @access public
* @param mixed $site
* @param mixed $post_id
* @param array $args (default: array())
* @return void
*/
public function get_video_stats( $site, $post_id, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/video/' . $post_id, $args )->fetch();
}
/**
* get_site_referrers function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_site_referrers( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/referrers', $args )->fetch();
}
/**
* get_site_country_views function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_site_country_views( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/country-views', $args )->fetch();
}
/**
* get_site_outbound_clicks function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_site_outbound_clicks( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/clicks', $args )->fetch();
}
/**
* get_site_stats_by_tags function.
*
* @access public
* @return void
*/
public function get_site_stats_by_tags( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/tags', $args )->fetch();
}
/**
* get_site_top_authors function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_site_top_authors( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/top-authors', $args )->fetch();
}
/**
* get_site_stats_comments function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_site_stats_comments( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/comments', $args )->fetch();
}
/**
* get_site_stats_video_plays function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_site_stats_video_plays( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/video-plays', $args )->fetch();
}
/**
* get_site_followers function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_site_followers( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/followers', $args )->fetch();
}
/**
* get_site_activity function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_site_activity( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/stats/activity', $args )->fetch();
}
/* MEDIA. */
public function delete_media() {
}
public function post_media_item() {
}
/**
* get_all_media function.
*
* @access public
* @param mixed $site
* @param array $args (default: array())
* @return void
*/
public function get_all_media( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/media/', $args )->fetch();
}
public function upload_media() {
}
public function update_media_item() {
}
/* MENUS. */
public function create_menu() {
}
public function update_menu() {
}
/**
* get_menu function.
*
* @access public
* @param mixed $site
* @param mixed $menu_id
* @param mixed $args
* @return void
*/
public function get_menu( $site, $menu_id, $args ) {
return $this->build_request( 'sites/' . $site . '/menus/' . $menu_id, $args )->fetch();
}
/**
* get_all_menus function.
*
* @access public
* @param mixed $site
* @param mixed $args
* @return void
*/
public function get_menus( $site, $args = array() ) {
return $this->build_request( 'sites/' . $site . '/menus', $args )->fetch();
}
public function delete_menu() {
}
/* BATCH. */
/* VIDEOS. */
}
}