forked from times/acf-to-wp-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acf-to-wp-api.php
520 lines (471 loc) · 12.3 KB
/
acf-to-wp-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
<?php
/**
* Plugin Name: ACF to WP API
* Description: Puts all ACF fields from posts, pages, custom post types, attachments and taxonomy terms, into the WP-API output under the 'acf' key
* Author: Chris Hutchinson
* Author URI: http://www.chrishutchinson.me
* Version: 1.3.0
* Plugin URI: https://wordpress.org/plugins/acf-to-wp-api/
*/
class ACFtoWPAPI {
/**
* @var object $plugin All base plugin configuration is stored here
*/
protected $plugin;
/**
* @var string $apiVersion Stores the version number of the REST API
*/
protected $apiVersion;
/**
* Constructor
*
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @since 1.3.0 Updated to support version 2 of the WP-API
* @since 1.0.0
*/
function __construct() {
// Setup defaults
$this->plugin = new StdClass;
$this->plugin->title = 'ACF to WP API';
$this->plugin->name = 'acf-to-wp-api';
$this->plugin->folder = WP_PLUGIN_DIR . '/' . $this->plugin->name;
$this->plugin->url = WP_PLUGIN_URL . '/' . str_replace(basename( __FILE__), "", plugin_basename(__FILE__));
$this->plugin->version = '1.3.0';
$this->apiVersion = get_option( 'rest_api_plugin_version', get_option( 'json_api_plugin_version', null ) );
// Version One
if($this->_isAPIVersionOne()) {
$this->_versionOneSetup();
}
// Version Two
if($this->_isAPIVersionTwo()) {
$this->_versionTwoSetup();
}
}
/**
* Die and dump
*
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @param mixed $data The data to be dumped to the screen
*
* @return void
*
* @since 1.3.0
*/
private function dd($data) {
if( WP_DEBUG ) {
echo '<pre>';
print_r($data);
echo '</pre>';
die();
}
}
/**
* Adds the required filters and hooks for version 1 of the REST API
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @return void
*
* @since 1.3.0
*/
private function _versionOneSetup() {
// Filters
add_filter( 'json_prepare_post', array( $this, 'addACFDataPost'), 10, 3 ); // Posts
add_filter( 'json_prepare_term', array( $this, 'addACFDataTerm'), 10, 3 ); // Taxonomy Terms
add_filter( 'json_prepare_user', array( $this, 'addACFDataUser'), 10, 3 ); // Users
add_filter( 'json_prepare_comment', array( $this, 'addACFDataComment'), 10, 3 ); // Comments
// Endpoints
add_filter( 'json_endpoints', array( $this, 'registerRoutes' ), 10, 3 );
}
/**
* Adds the required filters and hooks for version 2 of the REST API
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @return void
*
* @since 1.3.0
*/
private function _versionTwoSetup() {
// Actions
add_action( 'rest_api_init', array( $this, 'addACFDataPostV2' ) ); // Posts and post types
add_action( 'rest_api_init', array( $this, 'addACFDataTermV2' ) ); // Taxonomy Terms
add_action( 'rest_api_init', array( $this, 'addACFDataUserV2' ) ); // Users
add_action( 'rest_api_init', array( $this, 'addACFDataCommentV2' ) ); // Comments
add_action( 'rest_api_init', array( $this, 'addACFOptionRouteV2') );
}
/**
* Gets the version number of the WP REST API
*
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @return int The base version number
*
* @since 1.3.0
*/
private function _getAPIBaseVersion() {
$version = $this->apiVersion;
if( is_null( $version ) ) {
return false;
}
$baseNumber = substr( $version, 0, 1 );
if( $baseNumber === '1' ) {
return 1;
}
if( $baseNumber === '2' ) {
return 2;
}
return false;
}
/**
* Check if the current API base version is version 1
*
* @return boolean True if the current API version is 1
*
* @since 1.3.0
*/
private function _isAPIVersionOne() {
if($this->_getAPIBaseVersion() === 1) {
return true;
}
return false;
}
/**
* Check if the current API base version is version 2
*
* @return boolean True if the current API version is 2
*
* @since 1.3.0
*/
private function _isAPIVersionTwo() {
if($this->_getAPIBaseVersion() === 2) {
return true;
}
return false;
}
/**
* Add data to users
*
* @param array $data The current ACF data
* @param int $user The ID of the user
* @param string $context The context the data is being requested in
*
* @since 1.1.0
*/
function addACFDataUser( $data, $user, $context ) {
$data['acf'] = $this->_getData( $user->ID, 'user' );
return $data;
}
/**
* Add data to terms
*
* @param array $data The current ACF data
* @param int $term The ID of the term
* @param string $context The context the data is being requested in
*
* @since 1.1.0
*/
function addACFDataTerm( $data, $term, $context = null ) {
$data['acf'] = get_fields( $term, 'term' );
return $data;
}
/**
* Add data to Posts, Custom Post Types, Pages & Attachments
*
* @param array $data The current ACF data
* @param int $post The ID of the record
* @param string $context The context the data is being requested in
*
* @since 1.1.0
*/
function addACFDataPost( $data, $post, $context ) {
$data['acf'] = $this->_getData( $post['ID'] );
return $data;
}
/**
* Registers the `acf` field against posts
*
* @return void
*
* @since 1.3.0
*/
function addACFDataPostV2() {
$post_types = get_post_types( '', 'names' );
foreach($post_types as $post_type){
register_api_field( $post_type,
'acf',
array(
'get_callback' => array( $this, 'addACFDataPostV2cb' ),
'update_callback' => null,
'schema' => null,
)
);
}
}
/**
* Returns the ACF data to be added to the JSON response posts
*
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @param array $object The object to get data for
* @param string $fieldName The name of the field being completed
* @param object $request The WP_REST_REQUEST object
*
* @return array The data for this object type
*
* @see ACFtoWPAPI::addACFDataPostV2()
*
* @since 1.3.0
*/
function addACFDataPostV2cb($object, $fieldName, $request) {
return $this->_getData($object['id']);
}
/**
* Registers the `acf` field against taxonomy terms
*
* @return void
*
* @since 1.3.0
*/
function addACFDataTermV2() {
register_api_field( 'term',
'acf',
array(
'get_callback' => array( $this, 'addACFDataTermV2cb' ),
'update_callback' => null,
'schema' => null,
)
);
}
/**
* Returns the ACF data to be added to the JSON response for taxonomy terms
*
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @param array $object The object to get data for
* @param string $fieldName The name of the field being completed
* @param object $request The WP_REST_REQUEST object
*
* @return array The data for this object type
*
* @see ACFtoWPAPI::addACFDataTermV2()
*
* @since 1.3.0
*/
function addACFDataTermV2cb($object, $fieldName, $request) {
return $this->_getData($object['id'], 'term', $object);
}
/**
* Registers the `acf` field against users
*
* @return void
*
* @since 1.3.0
*/
function addACFDataUserV2() {
register_api_field( 'user',
'acf',
array(
'get_callback' => array( $this, 'addACFDataUserV2cb' ),
'update_callback' => null,
'schema' => null,
)
);
}
/**
* Returns the ACF data to be added to the JSON response for users
*
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @param array $object The object to get data for
* @param string $fieldName The name of the field being completed
* @param object $request The WP_REST_REQUEST object
*
* @return array The data for this object type
*
* @see ACFtoWPAPI::addACFDataUserV2()
*
* @since 1.3.0
*/
function addACFDataUserV2cb($object, $fieldName, $request) {
return $this->_getData( $object['id'], 'user' );
}
/**
* Registers the `acf` field against comments
*
* @return void
*
* @since 1.3.0
*/
function addACFDataCommentV2() {
register_api_field( 'comment',
'acf',
array(
'get_callback' => array( $this, 'addACFDataCommentV2cb' ),
'update_callback' => null,
'schema' => null,
)
);
}
/**
* Returns the ACF data to be added to the JSON response for comments
*
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @param array $object The object to get data for
* @param string $fieldName The name of the field being completed
* @param object $request The WP_REST_REQUEST object
*
* @return array The data for this object type
*
* @see ACFtoWPAPI::addACFDataCommentV2()
*
* @since 1.3.0
*/
function addACFDataCommentV2cb( $object, $fieldName, $request ) {
return $this->_getData( $object['id'], 'comment' );
}
/**
* Returns an array of Advanced Custom Fields data for the given record
*
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @param int $id The ID of the object to get
* @param string $type The type of the object to get
* @param array $object The full object being requested, only required for specific $types
*
* @return array The Advanced Custom Fields data for the supplied record
*
* @since 1.3.0
*/
private function _getData($id, $type = 'post', $object = array()) {
switch($type) {
case 'post':
default:
return get_fields($id);
break;
case 'term':
return get_fields($object['taxonomy'] . '_' . $id);
break;
case 'user':
return get_fields('user_' . $id);
break;
case 'comment':
return get_fields('comment_' . $id);
break;
case 'options':
return get_fields('option');
break;
}
}
/**
* Registers the routes for all and single options
*
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @return void
*
* @since 1.3.0
*/
function addACFOptionRouteV2() {
register_rest_route( 'wp/v2/acf', '/options', [
'methods' => [
'GET'
],
'callback' => array( $this, 'addACFOptionRouteV2cb' )
] );
register_rest_route( 'wp/v2/acf', '/options/(?P<option>.+)', [
'methods' => [
'GET'
],
'callback' => array( $this, 'addACFOptionRouteV2cb' )
] );
}
/**
* The callback for the `wp/v2/acf/options` endpoint
*
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @param WP_REST_Request $request The WP_REST_Request object
*
* @return array|string The single requested option, or all options
*
* @see ACFtoWPAPI::addACFOptionRouteV2()
*
* @since 1.3.0
*/
function addACFOptionRouteV2cb( WP_REST_Request $request ) {
if($request['option']) {
return get_field($request['option'], 'option');
}
return get_fields('option');
}
/**
* Returns data for comments (WP API v1)
*
* @author Chris Hutchinson <chris_hutchinson@me.com>
*
* @param array $data The response data to be extended
* @param object $comment The comment being requested
* @param string $context The context the data is being requested in
*
* @return array The extended $data array, with ACF data
*
* @since 1.1.0
*
*/
function addACFDataComment($data, $comment, $context) {
$data['acf'] = $this->_getData('comment_' . $comment->comment_ID);
return $data;
}
/**
* Returns data for options (WP API v1)
*
* @author github.com/kokarn
*
* @return array The options data
*
* @since 1.1.0
*
*/
function getACFOptions() {
return get_fields('options');
}
/**
* Returns a single option based on the supplied name (WP API v1)
*
* @author github.com/asquel
*
* @param string $name The option name being requested
*
* @return mixed The data for the supplied option
*
* @since 1.3.0
*/
function getACFOption($name) {
return get_field($name, 'option');
}
/**
* Registers additional routes (WP API v1)
*
* @author github.com/kokarn
*
* @return array The routes data
*
* @since 1.1.0
*
*/
function registerRoutes( $routes ) {
$routes['/option'] = array(
array( array( $this, 'getACFOptions' ), WP_JSON_Server::READABLE )
);
$routes['/options'] = array(
array( array( $this, 'getACFOptions' ), WP_JSON_Server::READABLE )
);
$routes['/options/(?P<name>[\w-]+)'] = array(
array( array( $this, 'getACFOption' ), WP_JSON_Server::READABLE ),
);
return $routes;
}
}
$ACFtoWPAPI = new ACFtoWPAPI();