@@ -23,1340 +23,1340 @@ |
||
23 | 23 | class EED_Core_Rest_Api extends \EED_Module |
24 | 24 | { |
25 | 25 | |
26 | - const ee_api_namespace = Domain::API_NAMESPACE; |
|
27 | - |
|
28 | - const ee_api_namespace_for_regex = 'ee\/v([^/]*)\/'; |
|
29 | - |
|
30 | - const saved_routes_option_names = 'ee_core_routes'; |
|
31 | - |
|
32 | - /** |
|
33 | - * string used in _links response bodies to make them globally unique. |
|
34 | - * |
|
35 | - * @see http://v2.wp-api.org/extending/linking/ |
|
36 | - */ |
|
37 | - const ee_api_link_namespace = 'https://api.eventespresso.com/'; |
|
38 | - |
|
39 | - /** |
|
40 | - * @var CalculatedModelFields |
|
41 | - */ |
|
42 | - protected static $_field_calculator; |
|
43 | - |
|
44 | - |
|
45 | - /** |
|
46 | - * @return EED_Core_Rest_Api|EED_Module |
|
47 | - */ |
|
48 | - public static function instance() |
|
49 | - { |
|
50 | - self::$_field_calculator = LoaderFactory::getLoader()->load('EventEspresso\core\libraries\rest_api\CalculatedModelFields'); |
|
51 | - return parent::get_instance(__CLASS__); |
|
52 | - } |
|
53 | - |
|
54 | - |
|
55 | - /** |
|
56 | - * set_hooks - for hooking into EE Core, other modules, etc |
|
57 | - * |
|
58 | - * @access public |
|
59 | - * @return void |
|
60 | - */ |
|
61 | - public static function set_hooks() |
|
62 | - { |
|
63 | - self::set_hooks_both(); |
|
64 | - } |
|
65 | - |
|
66 | - |
|
67 | - /** |
|
68 | - * set_hooks_admin - for hooking into EE Admin Core, other modules, etc |
|
69 | - * |
|
70 | - * @access public |
|
71 | - * @return void |
|
72 | - */ |
|
73 | - public static function set_hooks_admin() |
|
74 | - { |
|
75 | - self::set_hooks_both(); |
|
76 | - } |
|
77 | - |
|
78 | - |
|
79 | - public static function set_hooks_both() |
|
80 | - { |
|
81 | - add_action('rest_api_init', array('EED_Core_Rest_Api', 'set_hooks_rest_api'), 5); |
|
82 | - add_action('rest_api_init', array('EED_Core_Rest_Api', 'register_routes'), 10); |
|
83 | - add_filter('rest_route_data', array('EED_Core_Rest_Api', 'hide_old_endpoints'), 10, 2); |
|
84 | - add_filter( |
|
85 | - 'rest_index', |
|
86 | - array('EventEspresso\core\libraries\rest_api\controllers\model\Meta', 'filterEeMetadataIntoIndex') |
|
87 | - ); |
|
88 | - EED_Core_Rest_Api::invalidate_cached_route_data_on_version_change(); |
|
89 | - } |
|
90 | - |
|
91 | - |
|
92 | - /** |
|
93 | - * sets up hooks which only need to be included as part of REST API requests; |
|
94 | - * other requests like to the frontend or admin etc don't need them |
|
95 | - * |
|
96 | - * @throws \EE_Error |
|
97 | - */ |
|
98 | - public static function set_hooks_rest_api() |
|
99 | - { |
|
100 | - // set hooks which account for changes made to the API |
|
101 | - EED_Core_Rest_Api::_set_hooks_for_changes(); |
|
102 | - } |
|
103 | - |
|
104 | - |
|
105 | - /** |
|
106 | - * public wrapper of _set_hooks_for_changes. |
|
107 | - * Loads all the hooks which make requests to old versions of the API |
|
108 | - * appear the same as they always did |
|
109 | - * |
|
110 | - * @throws EE_Error |
|
111 | - */ |
|
112 | - public static function set_hooks_for_changes() |
|
113 | - { |
|
114 | - self::_set_hooks_for_changes(); |
|
115 | - } |
|
116 | - |
|
117 | - |
|
118 | - /** |
|
119 | - * Loads all the hooks which make requests to old versions of the API |
|
120 | - * appear the same as they always did |
|
121 | - * |
|
122 | - * @throws EE_Error |
|
123 | - */ |
|
124 | - protected static function _set_hooks_for_changes() |
|
125 | - { |
|
126 | - $folder_contents = EEH_File::get_contents_of_folders(array(EE_LIBRARIES . 'rest_api/changes'), false); |
|
127 | - foreach ($folder_contents as $classname_in_namespace => $filepath) { |
|
128 | - // ignore the base parent class |
|
129 | - // and legacy named classes |
|
130 | - if ($classname_in_namespace === 'ChangesInBase' |
|
131 | - || strpos($classname_in_namespace, 'Changes_In_') === 0 |
|
132 | - ) { |
|
133 | - continue; |
|
134 | - } |
|
135 | - $full_classname = 'EventEspresso\core\libraries\rest_api\changes\\' . $classname_in_namespace; |
|
136 | - if (class_exists($full_classname)) { |
|
137 | - $instance_of_class = new $full_classname; |
|
138 | - if ($instance_of_class instanceof ChangesInBase) { |
|
139 | - $instance_of_class->setHooks(); |
|
140 | - } |
|
141 | - } |
|
142 | - } |
|
143 | - } |
|
144 | - |
|
145 | - |
|
146 | - /** |
|
147 | - * Filters the WP routes to add our EE-related ones. This takes a bit of time |
|
148 | - * so we actually prefer to only do it when an EE plugin is activated or upgraded |
|
149 | - * |
|
150 | - * @throws \EE_Error |
|
151 | - */ |
|
152 | - public static function register_routes() |
|
153 | - { |
|
154 | - foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_routes) { |
|
155 | - foreach ($relative_routes as $relative_route => $data_for_multiple_endpoints) { |
|
156 | - /** |
|
157 | - * @var array $data_for_multiple_endpoints numerically indexed array |
|
158 | - * but can also contain route options like { |
|
159 | - * @type array $schema { |
|
160 | - * @type callable $schema_callback |
|
161 | - * @type array $callback_args arguments that will be passed to the callback, after the |
|
162 | - * WP_REST_Request of course |
|
163 | - * } |
|
164 | - * } |
|
165 | - */ |
|
166 | - // when registering routes, register all the endpoints' data at the same time |
|
167 | - $multiple_endpoint_args = array(); |
|
168 | - foreach ($data_for_multiple_endpoints as $endpoint_key => $data_for_single_endpoint) { |
|
169 | - /** |
|
170 | - * @var array $data_for_single_endpoint { |
|
171 | - * @type callable $callback |
|
172 | - * @type string methods |
|
173 | - * @type array args |
|
174 | - * @type array _links |
|
175 | - * @type array $callback_args arguments that will be passed to the callback, after the |
|
176 | - * WP_REST_Request of course |
|
177 | - * } |
|
178 | - */ |
|
179 | - // skip route options |
|
180 | - if (! is_numeric($endpoint_key)) { |
|
181 | - continue; |
|
182 | - } |
|
183 | - if (! isset($data_for_single_endpoint['callback'], $data_for_single_endpoint['methods'])) { |
|
184 | - throw new EE_Error( |
|
185 | - esc_html__( |
|
186 | - // @codingStandardsIgnoreStart |
|
187 | - 'Endpoint configuration data needs to have entries "callback" (callable) and "methods" (comma-separated list of accepts HTTP methods).', |
|
188 | - // @codingStandardsIgnoreEnd |
|
189 | - 'event_espresso' |
|
190 | - ) |
|
191 | - ); |
|
192 | - } |
|
193 | - $callback = $data_for_single_endpoint['callback']; |
|
194 | - $single_endpoint_args = array( |
|
195 | - 'methods' => $data_for_single_endpoint['methods'], |
|
196 | - 'args' => isset($data_for_single_endpoint['args']) ? $data_for_single_endpoint['args'] |
|
197 | - : array(), |
|
198 | - ); |
|
199 | - if (isset($data_for_single_endpoint['_links'])) { |
|
200 | - $single_endpoint_args['_links'] = $data_for_single_endpoint['_links']; |
|
201 | - } |
|
202 | - if (isset($data_for_single_endpoint['callback_args'])) { |
|
203 | - $callback_args = $data_for_single_endpoint['callback_args']; |
|
204 | - $single_endpoint_args['callback'] = function (\WP_REST_Request $request) use ( |
|
205 | - $callback, |
|
206 | - $callback_args |
|
207 | - ) { |
|
208 | - array_unshift($callback_args, $request); |
|
209 | - return call_user_func_array( |
|
210 | - $callback, |
|
211 | - $callback_args |
|
212 | - ); |
|
213 | - }; |
|
214 | - } else { |
|
215 | - $single_endpoint_args['callback'] = $data_for_single_endpoint['callback']; |
|
216 | - } |
|
217 | - // As of WordPress 5.5, if a permission_callback is not provided, |
|
218 | - // the REST API will issue a _doing_it_wrong notice. |
|
219 | - // Since the EE REST API defers capabilities to the db model system, |
|
220 | - // we will just use the generic WP callback for public endpoints |
|
221 | - if (! isset($single_endpoint_args['permission_callback'])) { |
|
222 | - $single_endpoint_args['permission_callback'] = '__return_true'; |
|
223 | - } |
|
224 | - $multiple_endpoint_args[] = $single_endpoint_args; |
|
225 | - } |
|
226 | - if (isset($data_for_multiple_endpoints['schema'])) { |
|
227 | - $schema_route_data = $data_for_multiple_endpoints['schema']; |
|
228 | - $schema_callback = $schema_route_data['schema_callback']; |
|
229 | - $callback_args = $schema_route_data['callback_args']; |
|
230 | - $multiple_endpoint_args['schema'] = function () use ($schema_callback, $callback_args) { |
|
231 | - return call_user_func_array( |
|
232 | - $schema_callback, |
|
233 | - $callback_args |
|
234 | - ); |
|
235 | - }; |
|
236 | - } |
|
237 | - register_rest_route( |
|
238 | - $namespace, |
|
239 | - $relative_route, |
|
240 | - $multiple_endpoint_args |
|
241 | - ); |
|
242 | - } |
|
243 | - } |
|
244 | - } |
|
245 | - |
|
246 | - |
|
247 | - /** |
|
248 | - * Checks if there was a version change or something that merits invalidating the cached |
|
249 | - * route data. If so, invalidates the cached route data so that it gets refreshed |
|
250 | - * next time the WP API is used |
|
251 | - */ |
|
252 | - public static function invalidate_cached_route_data_on_version_change() |
|
253 | - { |
|
254 | - if (EE_System::instance()->detect_req_type() !== EE_System::req_type_normal) { |
|
255 | - EED_Core_Rest_Api::invalidate_cached_route_data(); |
|
256 | - } |
|
257 | - foreach (EE_Registry::instance()->addons as $addon) { |
|
258 | - if ($addon instanceof EE_Addon && $addon->detect_req_type() !== EE_System::req_type_normal) { |
|
259 | - EED_Core_Rest_Api::invalidate_cached_route_data(); |
|
260 | - } |
|
261 | - } |
|
262 | - } |
|
263 | - |
|
264 | - |
|
265 | - /** |
|
266 | - * Removes the cached route data so it will get refreshed next time the WP API is used |
|
267 | - */ |
|
268 | - public static function invalidate_cached_route_data() |
|
269 | - { |
|
270 | - // delete the saved EE REST API routes |
|
271 | - foreach (EED_Core_Rest_Api::versions_served() as $version => $hidden) { |
|
272 | - delete_option(EED_Core_Rest_Api::saved_routes_option_names . $version); |
|
273 | - } |
|
274 | - } |
|
275 | - |
|
276 | - |
|
277 | - /** |
|
278 | - * Gets the EE route data |
|
279 | - * |
|
280 | - * @return array top-level key is the namespace, next-level key is the route and its value is array{ |
|
281 | - * @throws \EE_Error |
|
282 | - * @type string|array $callback |
|
283 | - * @type string $methods |
|
284 | - * @type boolean $hidden_endpoint |
|
285 | - * } |
|
286 | - */ |
|
287 | - public static function get_ee_route_data() |
|
288 | - { |
|
289 | - $ee_routes = array(); |
|
290 | - foreach (self::versions_served() as $version => $hidden_endpoints) { |
|
291 | - $ee_routes[ self::ee_api_namespace . $version ] = self::_get_ee_route_data_for_version( |
|
292 | - $version, |
|
293 | - $hidden_endpoints |
|
294 | - ); |
|
295 | - } |
|
296 | - return $ee_routes; |
|
297 | - } |
|
298 | - |
|
299 | - |
|
300 | - /** |
|
301 | - * Gets the EE route data from the wp options if it exists already, |
|
302 | - * otherwise re-generates it and saves it to the option |
|
303 | - * |
|
304 | - * @param string $version |
|
305 | - * @param boolean $hidden_endpoints |
|
306 | - * @return array |
|
307 | - * @throws \EE_Error |
|
308 | - */ |
|
309 | - protected static function _get_ee_route_data_for_version($version, $hidden_endpoints = false) |
|
310 | - { |
|
311 | - $ee_routes = get_option(self::saved_routes_option_names . $version, null); |
|
312 | - if (! $ee_routes || EED_Core_Rest_Api::debugMode()) { |
|
313 | - $ee_routes = self::_save_ee_route_data_for_version($version, $hidden_endpoints); |
|
314 | - } |
|
315 | - return $ee_routes; |
|
316 | - } |
|
317 | - |
|
318 | - |
|
319 | - /** |
|
320 | - * Saves the EE REST API route data to a wp option and returns it |
|
321 | - * |
|
322 | - * @param string $version |
|
323 | - * @param boolean $hidden_endpoints |
|
324 | - * @return mixed|null |
|
325 | - * @throws \EE_Error |
|
326 | - */ |
|
327 | - protected static function _save_ee_route_data_for_version($version, $hidden_endpoints = false) |
|
328 | - { |
|
329 | - $instance = self::instance(); |
|
330 | - $routes = apply_filters( |
|
331 | - 'EED_Core_Rest_Api__save_ee_route_data_for_version__routes', |
|
332 | - array_replace_recursive( |
|
333 | - $instance->_get_config_route_data_for_version($version, $hidden_endpoints), |
|
334 | - $instance->_get_meta_route_data_for_version($version, $hidden_endpoints), |
|
335 | - $instance->_get_model_route_data_for_version($version, $hidden_endpoints), |
|
336 | - $instance->_get_rpc_route_data_for_version($version, $hidden_endpoints) |
|
337 | - ) |
|
338 | - ); |
|
339 | - $option_name = self::saved_routes_option_names . $version; |
|
340 | - if (get_option($option_name)) { |
|
341 | - update_option($option_name, $routes, true); |
|
342 | - } else { |
|
343 | - add_option($option_name, $routes, null, 'no'); |
|
344 | - } |
|
345 | - return $routes; |
|
346 | - } |
|
347 | - |
|
348 | - |
|
349 | - /** |
|
350 | - * Calculates all the EE routes and saves it to a WordPress option so we don't |
|
351 | - * need to calculate it on every request |
|
352 | - * |
|
353 | - * @deprecated since version 4.9.1 |
|
354 | - * @return void |
|
355 | - */ |
|
356 | - public static function save_ee_routes() |
|
357 | - { |
|
358 | - if (EE_Maintenance_Mode::instance()->models_can_query()) { |
|
359 | - $instance = self::instance(); |
|
360 | - $routes = apply_filters( |
|
361 | - 'EED_Core_Rest_Api__save_ee_routes__routes', |
|
362 | - array_replace_recursive( |
|
363 | - $instance->_register_config_routes(), |
|
364 | - $instance->_register_meta_routes(), |
|
365 | - $instance->_register_model_routes(), |
|
366 | - $instance->_register_rpc_routes() |
|
367 | - ) |
|
368 | - ); |
|
369 | - update_option(self::saved_routes_option_names, $routes, true); |
|
370 | - } |
|
371 | - } |
|
372 | - |
|
373 | - |
|
374 | - /** |
|
375 | - * Gets all the route information relating to EE models |
|
376 | - * |
|
377 | - * @return array @see get_ee_route_data |
|
378 | - * @deprecated since version 4.9.1 |
|
379 | - */ |
|
380 | - protected function _register_model_routes() |
|
381 | - { |
|
382 | - $model_routes = array(); |
|
383 | - foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
384 | - $model_routes[ EED_Core_Rest_Api::ee_api_namespace |
|
385 | - . $version ] = $this->_get_config_route_data_for_version($version, $hidden_endpoint); |
|
386 | - } |
|
387 | - return $model_routes; |
|
388 | - } |
|
389 | - |
|
390 | - |
|
391 | - /** |
|
392 | - * Decides whether or not to add write endpoints for this model. |
|
393 | - * |
|
394 | - * Currently, this defaults to exclude all global tables and models |
|
395 | - * which would allow inserting WP core data (we don't want to duplicate |
|
396 | - * what WP API does, as it's unnecessary, extra work, and potentially extra bugs) |
|
397 | - * |
|
398 | - * @param EEM_Base $model |
|
399 | - * @return bool |
|
400 | - */ |
|
401 | - public static function should_have_write_endpoints(EEM_Base $model) |
|
402 | - { |
|
403 | - if ($model->is_wp_core_model()) { |
|
404 | - return false; |
|
405 | - } |
|
406 | - foreach ($model->get_tables() as $table) { |
|
407 | - if ($table->is_global()) { |
|
408 | - return false; |
|
409 | - } |
|
410 | - } |
|
411 | - return true; |
|
412 | - } |
|
413 | - |
|
414 | - |
|
415 | - /** |
|
416 | - * Gets the names of all models which should have plural routes (eg `ee/v4.8.36/events`) |
|
417 | - * in this versioned namespace of EE4 |
|
418 | - * |
|
419 | - * @param $version |
|
420 | - * @return array keys are model names (eg 'Event') and values ar either classnames (eg 'EEM_Event') |
|
421 | - */ |
|
422 | - public static function model_names_with_plural_routes($version) |
|
423 | - { |
|
424 | - $model_version_info = new ModelVersionInfo($version); |
|
425 | - $models_to_register = $model_version_info->modelsForRequestedVersion(); |
|
426 | - // let's not bother having endpoints for extra metas |
|
427 | - unset( |
|
428 | - $models_to_register['Extra_Meta'], |
|
429 | - $models_to_register['Extra_Join'], |
|
430 | - $models_to_register['Post_Meta'] |
|
431 | - ); |
|
432 | - return apply_filters( |
|
433 | - 'FHEE__EED_Core_REST_API___register_model_routes', |
|
434 | - $models_to_register |
|
435 | - ); |
|
436 | - } |
|
437 | - |
|
438 | - |
|
439 | - /** |
|
440 | - * Gets the route data for EE models in the specified version |
|
441 | - * |
|
442 | - * @param string $version |
|
443 | - * @param boolean $hidden_endpoint |
|
444 | - * @return array |
|
445 | - * @throws EE_Error |
|
446 | - */ |
|
447 | - protected function _get_model_route_data_for_version($version, $hidden_endpoint = false) |
|
448 | - { |
|
449 | - $model_routes = array(); |
|
450 | - $model_version_info = new ModelVersionInfo($version); |
|
451 | - foreach (EED_Core_Rest_Api::model_names_with_plural_routes($version) as $model_name => $model_classname) { |
|
452 | - $model = \EE_Registry::instance()->load_model($model_name); |
|
453 | - // if this isn't a valid model then let's skip iterate to the next item in the loop. |
|
454 | - if (! $model instanceof EEM_Base) { |
|
455 | - continue; |
|
456 | - } |
|
457 | - // yes we could just register one route for ALL models, but then they wouldn't show up in the index |
|
458 | - $plural_model_route = EED_Core_Rest_Api::get_collection_route($model); |
|
459 | - $singular_model_route = EED_Core_Rest_Api::get_entity_route($model, '(?P<id>[^\/]+)'); |
|
460 | - $model_routes[ $plural_model_route ] = array( |
|
461 | - array( |
|
462 | - 'callback' => array( |
|
463 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
464 | - 'handleRequestGetAll', |
|
465 | - ), |
|
466 | - 'callback_args' => array($version, $model_name), |
|
467 | - 'methods' => WP_REST_Server::READABLE, |
|
468 | - 'hidden_endpoint' => $hidden_endpoint, |
|
469 | - 'args' => $this->_get_read_query_params($model, $version), |
|
470 | - '_links' => array( |
|
471 | - 'self' => rest_url(EED_Core_Rest_Api::ee_api_namespace . $version . $singular_model_route), |
|
472 | - ), |
|
473 | - ), |
|
474 | - 'schema' => array( |
|
475 | - 'schema_callback' => array( |
|
476 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
477 | - 'handleSchemaRequest', |
|
478 | - ), |
|
479 | - 'callback_args' => array($version, $model_name), |
|
480 | - ), |
|
481 | - ); |
|
482 | - $model_routes[ $singular_model_route ] = array( |
|
483 | - array( |
|
484 | - 'callback' => array( |
|
485 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
486 | - 'handleRequestGetOne', |
|
487 | - ), |
|
488 | - 'callback_args' => array($version, $model_name), |
|
489 | - 'methods' => WP_REST_Server::READABLE, |
|
490 | - 'hidden_endpoint' => $hidden_endpoint, |
|
491 | - 'args' => $this->_get_response_selection_query_params($model, $version, true), |
|
492 | - ), |
|
493 | - ); |
|
494 | - if (apply_filters( |
|
495 | - 'FHEE__EED_Core_Rest_Api___get_model_route_data_for_version__add_write_endpoints', |
|
496 | - EED_Core_Rest_Api::should_have_write_endpoints($model), |
|
497 | - $model |
|
498 | - )) { |
|
499 | - $model_routes[ $plural_model_route ][] = array( |
|
500 | - 'callback' => array( |
|
501 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
502 | - 'handleRequestInsert', |
|
503 | - ), |
|
504 | - 'callback_args' => array($version, $model_name), |
|
505 | - 'methods' => WP_REST_Server::CREATABLE, |
|
506 | - 'hidden_endpoint' => $hidden_endpoint, |
|
507 | - 'args' => $this->_get_write_params($model_name, $model_version_info, true), |
|
508 | - ); |
|
509 | - $model_routes[ $singular_model_route ] = array_merge( |
|
510 | - $model_routes[ $singular_model_route ], |
|
511 | - array( |
|
512 | - array( |
|
513 | - 'callback' => array( |
|
514 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
515 | - 'handleRequestUpdate', |
|
516 | - ), |
|
517 | - 'callback_args' => array($version, $model_name), |
|
518 | - 'methods' => WP_REST_Server::EDITABLE, |
|
519 | - 'hidden_endpoint' => $hidden_endpoint, |
|
520 | - 'args' => $this->_get_write_params($model_name, $model_version_info), |
|
521 | - ), |
|
522 | - array( |
|
523 | - 'callback' => array( |
|
524 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
525 | - 'handleRequestDelete', |
|
526 | - ), |
|
527 | - 'callback_args' => array($version, $model_name), |
|
528 | - 'methods' => WP_REST_Server::DELETABLE, |
|
529 | - 'hidden_endpoint' => $hidden_endpoint, |
|
530 | - 'args' => $this->_get_delete_query_params($model, $version), |
|
531 | - ), |
|
532 | - ) |
|
533 | - ); |
|
534 | - } |
|
535 | - foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
536 | - $related_route = EED_Core_Rest_Api::get_relation_route_via( |
|
537 | - $model, |
|
538 | - '(?P<id>[^\/]+)', |
|
539 | - $relation_obj |
|
540 | - ); |
|
541 | - $model_routes[ $related_route ] = array( |
|
542 | - array( |
|
543 | - 'callback' => array( |
|
544 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
545 | - 'handleRequestGetRelated', |
|
546 | - ), |
|
547 | - 'callback_args' => array($version, $model_name, $relation_name), |
|
548 | - 'methods' => WP_REST_Server::READABLE, |
|
549 | - 'hidden_endpoint' => $hidden_endpoint, |
|
550 | - 'args' => $this->_get_read_query_params($relation_obj->get_other_model(), $version), |
|
551 | - ), |
|
552 | - ); |
|
553 | - |
|
554 | - $related_write_route = $related_route . '/' . '(?P<related_id>[^\/]+)'; |
|
555 | - $model_routes[ $related_write_route ] = array( |
|
556 | - array( |
|
557 | - 'callback' => array( |
|
558 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
559 | - 'handleRequestAddRelation', |
|
560 | - ), |
|
561 | - 'callback_args' => array($version, $model_name, $relation_name), |
|
562 | - 'methods' => WP_REST_Server::EDITABLE, |
|
563 | - 'hidden_endpoint' => $hidden_endpoint, |
|
564 | - 'args' => $this->_get_add_relation_query_params($model, $relation_obj->get_other_model(), $version) |
|
565 | - ), |
|
566 | - array( |
|
567 | - 'callback' => array( |
|
568 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
569 | - 'handleRequestRemoveRelation', |
|
570 | - ), |
|
571 | - 'callback_args' => array($version, $model_name, $relation_name), |
|
572 | - 'methods' => WP_REST_Server::DELETABLE, |
|
573 | - 'hidden_endpoint' => $hidden_endpoint, |
|
574 | - 'args' => array() |
|
575 | - ), |
|
576 | - ); |
|
577 | - } |
|
578 | - } |
|
579 | - return $model_routes; |
|
580 | - } |
|
581 | - |
|
582 | - |
|
583 | - /** |
|
584 | - * Gets the relative URI to a model's REST API plural route, after the EE4 versioned namespace, |
|
585 | - * excluding the preceding slash. |
|
586 | - * Eg you pass get_plural_route_to('Event') = 'events' |
|
587 | - * |
|
588 | - * @param EEM_Base $model |
|
589 | - * @return string |
|
590 | - */ |
|
591 | - public static function get_collection_route(EEM_Base $model) |
|
592 | - { |
|
593 | - return EEH_Inflector::pluralize_and_lower($model->get_this_model_name()); |
|
594 | - } |
|
595 | - |
|
596 | - |
|
597 | - /** |
|
598 | - * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace, |
|
599 | - * excluding the preceding slash. |
|
600 | - * Eg you pass get_plural_route_to('Event', 12) = 'events/12' |
|
601 | - * |
|
602 | - * @param EEM_Base $model eg Event or Venue |
|
603 | - * @param string $id |
|
604 | - * @return string |
|
605 | - */ |
|
606 | - public static function get_entity_route($model, $id) |
|
607 | - { |
|
608 | - return EED_Core_Rest_Api::get_collection_route($model) . '/' . $id; |
|
609 | - } |
|
610 | - |
|
611 | - |
|
612 | - /** |
|
613 | - * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace, |
|
614 | - * excluding the preceding slash. |
|
615 | - * Eg you pass get_plural_route_to('Event', 12) = 'events/12' |
|
616 | - * |
|
617 | - * @param EEM_Base $model eg Event or Venue |
|
618 | - * @param string $id |
|
619 | - * @param EE_Model_Relation_Base $relation_obj |
|
620 | - * @return string |
|
621 | - */ |
|
622 | - public static function get_relation_route_via(EEM_Base $model, $id, EE_Model_Relation_Base $relation_obj) |
|
623 | - { |
|
624 | - $related_model_name_endpoint_part = ModelRead::getRelatedEntityName( |
|
625 | - $relation_obj->get_other_model()->get_this_model_name(), |
|
626 | - $relation_obj |
|
627 | - ); |
|
628 | - return EED_Core_Rest_Api::get_entity_route($model, $id) . '/' . $related_model_name_endpoint_part; |
|
629 | - } |
|
630 | - |
|
631 | - |
|
632 | - /** |
|
633 | - * Adds onto the $relative_route the EE4 REST API versioned namespace. |
|
634 | - * Eg if given '4.8.36' and 'events', will return 'ee/v4.8.36/events' |
|
635 | - * |
|
636 | - * @param string $relative_route |
|
637 | - * @param string $version |
|
638 | - * @return string |
|
639 | - */ |
|
640 | - public static function get_versioned_route_to($relative_route, $version = '4.8.36') |
|
641 | - { |
|
642 | - return '/' . EED_Core_Rest_Api::ee_api_namespace . $version . '/' . $relative_route; |
|
643 | - } |
|
644 | - |
|
645 | - |
|
646 | - /** |
|
647 | - * Adds all the RPC-style routes (remote procedure call-like routes, ie |
|
648 | - * routes that don't conform to the traditional REST CRUD-style). |
|
649 | - * |
|
650 | - * @deprecated since 4.9.1 |
|
651 | - */ |
|
652 | - protected function _register_rpc_routes() |
|
653 | - { |
|
654 | - $routes = array(); |
|
655 | - foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
656 | - $routes[ self::ee_api_namespace . $version ] = $this->_get_rpc_route_data_for_version( |
|
657 | - $version, |
|
658 | - $hidden_endpoint |
|
659 | - ); |
|
660 | - } |
|
661 | - return $routes; |
|
662 | - } |
|
663 | - |
|
664 | - |
|
665 | - /** |
|
666 | - * @param string $version |
|
667 | - * @param boolean $hidden_endpoint |
|
668 | - * @return array |
|
669 | - */ |
|
670 | - protected function _get_rpc_route_data_for_version($version, $hidden_endpoint = false) |
|
671 | - { |
|
672 | - $this_versions_routes = array(); |
|
673 | - // checkin endpoint |
|
674 | - $this_versions_routes['registrations/(?P<REG_ID>\d+)/toggle_checkin_for_datetime/(?P<DTT_ID>\d+)'] = array( |
|
675 | - array( |
|
676 | - 'callback' => array( |
|
677 | - 'EventEspresso\core\libraries\rest_api\controllers\rpc\Checkin', |
|
678 | - 'handleRequestToggleCheckin', |
|
679 | - ), |
|
680 | - 'methods' => WP_REST_Server::CREATABLE, |
|
681 | - 'hidden_endpoint' => $hidden_endpoint, |
|
682 | - 'args' => array( |
|
683 | - 'force' => array( |
|
684 | - 'required' => false, |
|
685 | - 'default' => false, |
|
686 | - 'description' => __( |
|
687 | - // @codingStandardsIgnoreStart |
|
688 | - 'Whether to force toggle checkin, or to verify the registration status and allowed ticket uses', |
|
689 | - // @codingStandardsIgnoreEnd |
|
690 | - 'event_espresso' |
|
691 | - ), |
|
692 | - ), |
|
693 | - ), |
|
694 | - 'callback_args' => array($version), |
|
695 | - ), |
|
696 | - ); |
|
697 | - return apply_filters( |
|
698 | - 'FHEE__EED_Core_Rest_Api___register_rpc_routes__this_versions_routes', |
|
699 | - $this_versions_routes, |
|
700 | - $version, |
|
701 | - $hidden_endpoint |
|
702 | - ); |
|
703 | - } |
|
704 | - |
|
705 | - |
|
706 | - /** |
|
707 | - * Gets the query params that can be used when request one or many |
|
708 | - * |
|
709 | - * @param EEM_Base $model |
|
710 | - * @param string $version |
|
711 | - * @return array |
|
712 | - */ |
|
713 | - protected function _get_response_selection_query_params(\EEM_Base $model, $version, $single_only = false) |
|
714 | - { |
|
715 | - $query_params = array( |
|
716 | - 'include' => array( |
|
717 | - 'required' => false, |
|
718 | - 'default' => '*', |
|
719 | - 'type' => 'string', |
|
720 | - ), |
|
721 | - 'calculate' => array( |
|
722 | - 'required' => false, |
|
723 | - 'default' => '', |
|
724 | - 'enum' => self::$_field_calculator->retrieveCalculatedFieldsForModel($model), |
|
725 | - 'type' => 'string', |
|
726 | - // because we accept a CSV'd list of the enumerated strings, WP core validation and sanitization |
|
727 | - // freaks out. We'll just validate this argument while handling the request |
|
728 | - 'validate_callback' => null, |
|
729 | - 'sanitize_callback' => null, |
|
730 | - ), |
|
731 | - 'password' => array( |
|
732 | - 'required' => false, |
|
733 | - 'default' => '', |
|
734 | - 'type' => 'string' |
|
735 | - ) |
|
736 | - ); |
|
737 | - return apply_filters( |
|
738 | - 'FHEE__EED_Core_Rest_Api___get_response_selection_query_params', |
|
739 | - $query_params, |
|
740 | - $model, |
|
741 | - $version |
|
742 | - ); |
|
743 | - } |
|
744 | - |
|
745 | - |
|
746 | - /** |
|
747 | - * Gets the parameters acceptable for delete requests |
|
748 | - * |
|
749 | - * @param \EEM_Base $model |
|
750 | - * @param string $version |
|
751 | - * @return array |
|
752 | - */ |
|
753 | - protected function _get_delete_query_params(\EEM_Base $model, $version) |
|
754 | - { |
|
755 | - $params_for_delete = array( |
|
756 | - 'allow_blocking' => array( |
|
757 | - 'required' => false, |
|
758 | - 'default' => true, |
|
759 | - 'type' => 'boolean', |
|
760 | - ), |
|
761 | - ); |
|
762 | - $params_for_delete['force'] = array( |
|
763 | - 'required' => false, |
|
764 | - 'default' => false, |
|
765 | - 'type' => 'boolean', |
|
766 | - ); |
|
767 | - return apply_filters( |
|
768 | - 'FHEE__EED_Core_Rest_Api___get_delete_query_params', |
|
769 | - $params_for_delete, |
|
770 | - $model, |
|
771 | - $version |
|
772 | - ); |
|
773 | - } |
|
774 | - |
|
775 | - protected function _get_add_relation_query_params(\EEM_Base $source_model, \EEM_Base $related_model, $version) |
|
776 | - { |
|
777 | - // if they're related through a HABTM relation, check for any non-FKs |
|
778 | - $all_relation_settings = $source_model->relation_settings(); |
|
779 | - $relation_settings = $all_relation_settings[ $related_model->get_this_model_name() ]; |
|
780 | - $params = array(); |
|
781 | - if ($relation_settings instanceof EE_HABTM_Relation && $relation_settings->hasNonKeyFields()) { |
|
782 | - foreach ($relation_settings->getNonKeyFields() as $field) { |
|
783 | - /* @var $field EE_Model_Field_Base */ |
|
784 | - $params[ $field->get_name() ] = array( |
|
785 | - 'required' => ! $field->is_nullable(), |
|
786 | - 'default' => ModelDataTranslator::prepareFieldValueForJson($field, $field->get_default_value(), $version), |
|
787 | - 'type' => $field->getSchemaType(), |
|
788 | - 'validate_callbaack' => null, |
|
789 | - 'sanitize_callback' => null |
|
790 | - ); |
|
791 | - } |
|
792 | - } |
|
793 | - return $params; |
|
794 | - } |
|
795 | - |
|
796 | - |
|
797 | - /** |
|
798 | - * Gets info about reading query params that are acceptable |
|
799 | - * |
|
800 | - * @param \EEM_Base $model eg 'Event' or 'Venue' |
|
801 | - * @param string $version |
|
802 | - * @return array describing the args acceptable when querying this model |
|
803 | - * @throws EE_Error |
|
804 | - */ |
|
805 | - protected function _get_read_query_params(\EEM_Base $model, $version) |
|
806 | - { |
|
807 | - $default_orderby = array(); |
|
808 | - foreach ($model->get_combined_primary_key_fields() as $key_field) { |
|
809 | - $default_orderby[ $key_field->get_name() ] = 'ASC'; |
|
810 | - } |
|
811 | - return array_merge( |
|
812 | - $this->_get_response_selection_query_params($model, $version), |
|
813 | - array( |
|
814 | - 'where' => array( |
|
815 | - 'required' => false, |
|
816 | - 'default' => array(), |
|
817 | - 'type' => 'object', |
|
818 | - // because we accept an almost infinite list of possible where conditions, WP |
|
819 | - // core validation and sanitization freaks out. We'll just validate this argument |
|
820 | - // while handling the request |
|
821 | - 'validate_callback' => null, |
|
822 | - 'sanitize_callback' => null, |
|
823 | - ), |
|
824 | - 'limit' => array( |
|
825 | - 'required' => false, |
|
826 | - 'default' => EED_Core_Rest_Api::get_default_query_limit(), |
|
827 | - 'type' => array( |
|
828 | - 'array', |
|
829 | - 'string', |
|
830 | - 'integer', |
|
831 | - ), |
|
832 | - // because we accept a variety of types, WP core validation and sanitization |
|
833 | - // freaks out. We'll just validate this argument while handling the request |
|
834 | - 'validate_callback' => null, |
|
835 | - 'sanitize_callback' => null, |
|
836 | - ), |
|
837 | - 'order_by' => array( |
|
838 | - 'required' => false, |
|
839 | - 'default' => $default_orderby, |
|
840 | - 'type' => array( |
|
841 | - 'object', |
|
842 | - 'string', |
|
843 | - ),// because we accept a variety of types, WP core validation and sanitization |
|
844 | - // freaks out. We'll just validate this argument while handling the request |
|
845 | - 'validate_callback' => null, |
|
846 | - 'sanitize_callback' => null, |
|
847 | - ), |
|
848 | - 'group_by' => array( |
|
849 | - 'required' => false, |
|
850 | - 'default' => null, |
|
851 | - 'type' => array( |
|
852 | - 'object', |
|
853 | - 'string', |
|
854 | - ), |
|
855 | - // because we accept an almost infinite list of possible groupings, |
|
856 | - // WP core validation and sanitization |
|
857 | - // freaks out. We'll just validate this argument while handling the request |
|
858 | - 'validate_callback' => null, |
|
859 | - 'sanitize_callback' => null, |
|
860 | - ), |
|
861 | - 'having' => array( |
|
862 | - 'required' => false, |
|
863 | - 'default' => null, |
|
864 | - 'type' => 'object', |
|
865 | - // because we accept an almost infinite list of possible where conditions, WP |
|
866 | - // core validation and sanitization freaks out. We'll just validate this argument |
|
867 | - // while handling the request |
|
868 | - 'validate_callback' => null, |
|
869 | - 'sanitize_callback' => null, |
|
870 | - ), |
|
871 | - 'caps' => array( |
|
872 | - 'required' => false, |
|
873 | - 'default' => EEM_Base::caps_read, |
|
874 | - 'type' => 'string', |
|
875 | - 'enum' => array( |
|
876 | - EEM_Base::caps_read, |
|
877 | - EEM_Base::caps_read_admin, |
|
878 | - EEM_Base::caps_edit, |
|
879 | - EEM_Base::caps_delete, |
|
880 | - ), |
|
881 | - ), |
|
882 | - ) |
|
883 | - ); |
|
884 | - } |
|
885 | - |
|
886 | - |
|
887 | - /** |
|
888 | - * Gets parameter information for a model regarding writing data |
|
889 | - * |
|
890 | - * @param string $model_name |
|
891 | - * @param ModelVersionInfo $model_version_info |
|
892 | - * @param boolean $create whether this is for request to create (in |
|
893 | - * which case we need all required params) or |
|
894 | - * just to update (in which case we don't |
|
895 | - * need those on every request) |
|
896 | - * @return array |
|
897 | - */ |
|
898 | - protected function _get_write_params( |
|
899 | - $model_name, |
|
900 | - ModelVersionInfo $model_version_info, |
|
901 | - $create = false |
|
902 | - ) { |
|
903 | - $model = EE_Registry::instance()->load_model($model_name); |
|
904 | - $fields = $model_version_info->fieldsOnModelInThisVersion($model); |
|
905 | - $args_info = array(); |
|
906 | - foreach ($fields as $field_name => $field_obj) { |
|
907 | - if ($field_obj->is_auto_increment()) { |
|
908 | - // totally ignore auto increment IDs |
|
909 | - continue; |
|
910 | - } |
|
911 | - $arg_info = $field_obj->getSchema(); |
|
912 | - $required = $create && ! $field_obj->is_nullable() && $field_obj->get_default_value() === null; |
|
913 | - $arg_info['required'] = $required; |
|
914 | - // remove the read-only flag. If it were read-only we wouldn't list it as an argument while writing, right? |
|
915 | - unset($arg_info['readonly']); |
|
916 | - $schema_properties = $field_obj->getSchemaProperties(); |
|
917 | - if (isset($schema_properties['raw']) |
|
918 | - && $field_obj->getSchemaType() === 'object' |
|
919 | - ) { |
|
920 | - // if there's a "raw" form of this argument, use those properties instead |
|
921 | - $arg_info = array_replace( |
|
922 | - $arg_info, |
|
923 | - $schema_properties['raw'] |
|
924 | - ); |
|
925 | - } |
|
926 | - $arg_info['default'] = ModelDataTranslator::prepareFieldValueForJson( |
|
927 | - $field_obj, |
|
928 | - $field_obj->get_default_value(), |
|
929 | - $model_version_info->requestedVersion() |
|
930 | - ); |
|
931 | - // we do our own validation and sanitization within the controller |
|
932 | - if (function_exists('rest_validate_value_from_schema')) { |
|
933 | - $sanitize_callback = array( |
|
934 | - 'EED_Core_Rest_Api', |
|
935 | - 'default_sanitize_callback', |
|
936 | - ); |
|
937 | - } else { |
|
938 | - $sanitize_callback = null; |
|
939 | - } |
|
940 | - $arg_info['sanitize_callback'] = $sanitize_callback; |
|
941 | - $args_info[ $field_name ] = $arg_info; |
|
942 | - if ($field_obj instanceof EE_Datetime_Field) { |
|
943 | - $gmt_arg_info = $arg_info; |
|
944 | - $gmt_arg_info['description'] = sprintf( |
|
945 | - esc_html__( |
|
946 | - '%1$s - the value for this field in UTC. Ignored if %2$s is provided.', |
|
947 | - 'event_espresso' |
|
948 | - ), |
|
949 | - $field_obj->get_nicename(), |
|
950 | - $field_name |
|
951 | - ); |
|
952 | - $args_info[ $field_name . '_gmt' ] = $gmt_arg_info; |
|
953 | - } |
|
954 | - } |
|
955 | - return $args_info; |
|
956 | - } |
|
957 | - |
|
958 | - |
|
959 | - /** |
|
960 | - * Replacement for WP API's 'rest_parse_request_arg'. |
|
961 | - * If the value is blank but not required, don't bother validating it. |
|
962 | - * Also, it uses our email validation instead of WP API's default. |
|
963 | - * |
|
964 | - * @param $value |
|
965 | - * @param WP_REST_Request $request |
|
966 | - * @param $param |
|
967 | - * @return bool|true|WP_Error |
|
968 | - * @throws InvalidArgumentException |
|
969 | - * @throws InvalidInterfaceException |
|
970 | - * @throws InvalidDataTypeException |
|
971 | - */ |
|
972 | - public static function default_sanitize_callback($value, WP_REST_Request $request, $param) |
|
973 | - { |
|
974 | - $attributes = $request->get_attributes(); |
|
975 | - if (! isset($attributes['args'][ $param ]) |
|
976 | - || ! is_array($attributes['args'][ $param ])) { |
|
977 | - $validation_result = true; |
|
978 | - } else { |
|
979 | - $args = $attributes['args'][ $param ]; |
|
980 | - if (( |
|
981 | - $value === '' |
|
982 | - || $value === null |
|
983 | - ) |
|
984 | - && (! isset($args['required']) |
|
985 | - || $args['required'] === false |
|
986 | - ) |
|
987 | - ) { |
|
988 | - // not required and not provided? that's cool |
|
989 | - $validation_result = true; |
|
990 | - } elseif (isset($args['format']) |
|
991 | - && $args['format'] === 'email' |
|
992 | - ) { |
|
993 | - $validation_result = true; |
|
994 | - if (! self::_validate_email($value)) { |
|
995 | - $validation_result = new WP_Error( |
|
996 | - 'rest_invalid_param', |
|
997 | - esc_html__( |
|
998 | - 'The email address is not valid or does not exist.', |
|
999 | - 'event_espresso' |
|
1000 | - ) |
|
1001 | - ); |
|
1002 | - } |
|
1003 | - } else { |
|
1004 | - $validation_result = rest_validate_value_from_schema($value, $args, $param); |
|
1005 | - } |
|
1006 | - } |
|
1007 | - if (is_wp_error($validation_result)) { |
|
1008 | - return $validation_result; |
|
1009 | - } |
|
1010 | - return rest_sanitize_request_arg($value, $request, $param); |
|
1011 | - } |
|
1012 | - |
|
1013 | - |
|
1014 | - /** |
|
1015 | - * Returns whether or not this email address is valid. Copied from EE_Email_Validation_Strategy::_validate_email() |
|
1016 | - * |
|
1017 | - * @param $email |
|
1018 | - * @return bool |
|
1019 | - * @throws InvalidArgumentException |
|
1020 | - * @throws InvalidInterfaceException |
|
1021 | - * @throws InvalidDataTypeException |
|
1022 | - */ |
|
1023 | - protected static function _validate_email($email) |
|
1024 | - { |
|
1025 | - try { |
|
1026 | - EmailAddressFactory::create($email); |
|
1027 | - return true; |
|
1028 | - } catch (EmailValidationException $e) { |
|
1029 | - return false; |
|
1030 | - } |
|
1031 | - } |
|
1032 | - |
|
1033 | - |
|
1034 | - /** |
|
1035 | - * Gets routes for the config |
|
1036 | - * |
|
1037 | - * @return array @see _register_model_routes |
|
1038 | - * @deprecated since version 4.9.1 |
|
1039 | - */ |
|
1040 | - protected function _register_config_routes() |
|
1041 | - { |
|
1042 | - $config_routes = array(); |
|
1043 | - foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
1044 | - $config_routes[ self::ee_api_namespace . $version ] = $this->_get_config_route_data_for_version( |
|
1045 | - $version, |
|
1046 | - $hidden_endpoint |
|
1047 | - ); |
|
1048 | - } |
|
1049 | - return $config_routes; |
|
1050 | - } |
|
1051 | - |
|
1052 | - |
|
1053 | - /** |
|
1054 | - * Gets routes for the config for the specified version |
|
1055 | - * |
|
1056 | - * @param string $version |
|
1057 | - * @param boolean $hidden_endpoint |
|
1058 | - * @return array |
|
1059 | - */ |
|
1060 | - protected function _get_config_route_data_for_version($version, $hidden_endpoint) |
|
1061 | - { |
|
1062 | - return array( |
|
1063 | - 'config' => array( |
|
1064 | - array( |
|
1065 | - 'callback' => array( |
|
1066 | - 'EventEspresso\core\libraries\rest_api\controllers\config\Read', |
|
1067 | - 'handleRequest', |
|
1068 | - ), |
|
1069 | - 'methods' => WP_REST_Server::READABLE, |
|
1070 | - 'hidden_endpoint' => $hidden_endpoint, |
|
1071 | - 'callback_args' => array($version), |
|
1072 | - ), |
|
1073 | - ), |
|
1074 | - 'site_info' => array( |
|
1075 | - array( |
|
1076 | - 'callback' => array( |
|
1077 | - 'EventEspresso\core\libraries\rest_api\controllers\config\Read', |
|
1078 | - 'handleRequestSiteInfo', |
|
1079 | - ), |
|
1080 | - 'methods' => WP_REST_Server::READABLE, |
|
1081 | - 'hidden_endpoint' => $hidden_endpoint, |
|
1082 | - 'callback_args' => array($version), |
|
1083 | - ), |
|
1084 | - ), |
|
1085 | - ); |
|
1086 | - } |
|
1087 | - |
|
1088 | - |
|
1089 | - /** |
|
1090 | - * Gets the meta info routes |
|
1091 | - * |
|
1092 | - * @return array @see _register_model_routes |
|
1093 | - * @deprecated since version 4.9.1 |
|
1094 | - */ |
|
1095 | - protected function _register_meta_routes() |
|
1096 | - { |
|
1097 | - $meta_routes = array(); |
|
1098 | - foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
1099 | - $meta_routes[ self::ee_api_namespace . $version ] = $this->_get_meta_route_data_for_version( |
|
1100 | - $version, |
|
1101 | - $hidden_endpoint |
|
1102 | - ); |
|
1103 | - } |
|
1104 | - return $meta_routes; |
|
1105 | - } |
|
1106 | - |
|
1107 | - |
|
1108 | - /** |
|
1109 | - * @param string $version |
|
1110 | - * @param boolean $hidden_endpoint |
|
1111 | - * @return array |
|
1112 | - */ |
|
1113 | - protected function _get_meta_route_data_for_version($version, $hidden_endpoint = false) |
|
1114 | - { |
|
1115 | - return array( |
|
1116 | - 'resources' => array( |
|
1117 | - array( |
|
1118 | - 'callback' => array( |
|
1119 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Meta', |
|
1120 | - 'handleRequestModelsMeta', |
|
1121 | - ), |
|
1122 | - 'methods' => WP_REST_Server::READABLE, |
|
1123 | - 'hidden_endpoint' => $hidden_endpoint, |
|
1124 | - 'callback_args' => array($version), |
|
1125 | - ), |
|
1126 | - ), |
|
1127 | - ); |
|
1128 | - } |
|
1129 | - |
|
1130 | - |
|
1131 | - /** |
|
1132 | - * Tries to hide old 4.6 endpoints from the |
|
1133 | - * |
|
1134 | - * @param array $route_data |
|
1135 | - * @return array |
|
1136 | - * @throws \EE_Error |
|
1137 | - */ |
|
1138 | - public static function hide_old_endpoints($route_data) |
|
1139 | - { |
|
1140 | - // allow API clients to override which endpoints get hidden, in case |
|
1141 | - // they want to discover particular endpoints |
|
1142 | - // also, we don't have access to the request so we have to just grab it from the superglobal |
|
1143 | - $force_show_ee_namespace = ltrim( |
|
1144 | - EEH_Array::is_set($_REQUEST, 'force_show_ee_namespace', ''), |
|
1145 | - '/' |
|
1146 | - ); |
|
1147 | - foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_urls) { |
|
1148 | - foreach ($relative_urls as $resource_name => $endpoints) { |
|
1149 | - foreach ($endpoints as $key => $endpoint) { |
|
1150 | - // skip schema and other route options |
|
1151 | - if (! is_numeric($key)) { |
|
1152 | - continue; |
|
1153 | - } |
|
1154 | - // by default, hide "hidden_endpoint"s, unless the request indicates |
|
1155 | - // to $force_show_ee_namespace, in which case only show that one |
|
1156 | - // namespace's endpoints (and hide all others) |
|
1157 | - if (($force_show_ee_namespace !== '' && $force_show_ee_namespace !== $namespace) |
|
1158 | - || ($endpoint['hidden_endpoint'] && $force_show_ee_namespace === '') |
|
1159 | - ) { |
|
1160 | - $full_route = '/' . ltrim($namespace, '/'); |
|
1161 | - $full_route .= '/' . ltrim($resource_name, '/'); |
|
1162 | - unset($route_data[ $full_route ]); |
|
1163 | - } |
|
1164 | - } |
|
1165 | - } |
|
1166 | - } |
|
1167 | - return $route_data; |
|
1168 | - } |
|
1169 | - |
|
1170 | - |
|
1171 | - /** |
|
1172 | - * Returns an array describing which versions of core support serving requests for. |
|
1173 | - * Keys are core versions' major and minor version, and values are the |
|
1174 | - * LOWEST requested version they can serve. Eg, 4.7 can serve requests for 4.6-like |
|
1175 | - * data by just removing a few models and fields from the responses. However, 4.15 might remove |
|
1176 | - * the answers table entirely, in which case it would be very difficult for |
|
1177 | - * it to serve 4.6-style responses. |
|
1178 | - * Versions of core that are missing from this array are unknowns. |
|
1179 | - * previous ver |
|
1180 | - * |
|
1181 | - * @return array |
|
1182 | - */ |
|
1183 | - public static function version_compatibilities() |
|
1184 | - { |
|
1185 | - return apply_filters( |
|
1186 | - 'FHEE__EED_Core_REST_API__version_compatibilities', |
|
1187 | - array( |
|
1188 | - '4.8.29' => '4.8.29', |
|
1189 | - '4.8.33' => '4.8.29', |
|
1190 | - '4.8.34' => '4.8.29', |
|
1191 | - '4.8.36' => '4.8.29', |
|
1192 | - ) |
|
1193 | - ); |
|
1194 | - } |
|
1195 | - |
|
1196 | - |
|
1197 | - /** |
|
1198 | - * Gets the latest API version served. Eg if there |
|
1199 | - * are two versions served of the API, 4.8.29 and 4.8.32, and |
|
1200 | - * we are on core version 4.8.34, it will return the string "4.8.32" |
|
1201 | - * |
|
1202 | - * @return string |
|
1203 | - */ |
|
1204 | - public static function latest_rest_api_version() |
|
1205 | - { |
|
1206 | - $versions_served = \EED_Core_Rest_Api::versions_served(); |
|
1207 | - $versions_served_keys = array_keys($versions_served); |
|
1208 | - return end($versions_served_keys); |
|
1209 | - } |
|
1210 | - |
|
1211 | - |
|
1212 | - /** |
|
1213 | - * Using EED_Core_Rest_Api::version_compatibilities(), determines what version of |
|
1214 | - * EE the API can serve requests for. Eg, if we are on 4.15 of core, and |
|
1215 | - * we can serve requests from 4.12 or later, this will return array( '4.12', '4.13', '4.14', '4.15' ). |
|
1216 | - * We also indicate whether or not this version should be put in the index or not |
|
1217 | - * |
|
1218 | - * @return array keys are API version numbers (just major and minor numbers), and values |
|
1219 | - * are whether or not they should be hidden |
|
1220 | - */ |
|
1221 | - public static function versions_served() |
|
1222 | - { |
|
1223 | - $versions_served = array(); |
|
1224 | - $possibly_served_versions = EED_Core_Rest_Api::version_compatibilities(); |
|
1225 | - $lowest_compatible_version = end($possibly_served_versions); |
|
1226 | - reset($possibly_served_versions); |
|
1227 | - $versions_served_historically = array_keys($possibly_served_versions); |
|
1228 | - $latest_version = end($versions_served_historically); |
|
1229 | - reset($versions_served_historically); |
|
1230 | - // for each version of core we have ever served: |
|
1231 | - foreach ($versions_served_historically as $key_versioned_endpoint) { |
|
1232 | - // if it's not above the current core version, and it's compatible with the current version of core |
|
1233 | - |
|
1234 | - if ($key_versioned_endpoint === $latest_version) { |
|
1235 | - // don't hide the latest version in the index |
|
1236 | - $versions_served[ $key_versioned_endpoint ] = false; |
|
1237 | - } elseif (version_compare($key_versioned_endpoint, $lowest_compatible_version, '>=') |
|
1238 | - && version_compare($key_versioned_endpoint, EED_Core_Rest_Api::core_version(), '<') |
|
1239 | - ) { |
|
1240 | - // include, but hide, previous versions which are still supported |
|
1241 | - $versions_served[ $key_versioned_endpoint ] = true; |
|
1242 | - } elseif (apply_filters( |
|
1243 | - 'FHEE__EED_Core_Rest_Api__versions_served__include_incompatible_versions', |
|
1244 | - false, |
|
1245 | - $possibly_served_versions |
|
1246 | - )) { |
|
1247 | - // if a version is no longer supported, don't include it in index or list of versions served |
|
1248 | - $versions_served[ $key_versioned_endpoint ] = true; |
|
1249 | - } |
|
1250 | - } |
|
1251 | - return $versions_served; |
|
1252 | - } |
|
1253 | - |
|
1254 | - |
|
1255 | - /** |
|
1256 | - * Gets the major and minor version of EE core's version string |
|
1257 | - * |
|
1258 | - * @return string |
|
1259 | - */ |
|
1260 | - public static function core_version() |
|
1261 | - { |
|
1262 | - return apply_filters( |
|
1263 | - 'FHEE__EED_Core_REST_API__core_version', |
|
1264 | - implode( |
|
1265 | - '.', |
|
1266 | - array_slice( |
|
1267 | - explode( |
|
1268 | - '.', |
|
1269 | - espresso_version() |
|
1270 | - ), |
|
1271 | - 0, |
|
1272 | - 3 |
|
1273 | - ) |
|
1274 | - ) |
|
1275 | - ); |
|
1276 | - } |
|
1277 | - |
|
1278 | - |
|
1279 | - /** |
|
1280 | - * Gets the default limit that should be used when querying for resources |
|
1281 | - * |
|
1282 | - * @return int |
|
1283 | - */ |
|
1284 | - public static function get_default_query_limit() |
|
1285 | - { |
|
1286 | - // we actually don't use a const because we want folks to always use |
|
1287 | - // this method, not the const directly |
|
1288 | - return apply_filters( |
|
1289 | - 'FHEE__EED_Core_Rest_Api__get_default_query_limit', |
|
1290 | - 50 |
|
1291 | - ); |
|
1292 | - } |
|
1293 | - |
|
1294 | - |
|
1295 | - /** |
|
1296 | - * |
|
1297 | - * @param string $version api version string (i.e. '4.8.36') |
|
1298 | - * @return array |
|
1299 | - */ |
|
1300 | - public static function getCollectionRoutesIndexedByModelName($version = '') |
|
1301 | - { |
|
1302 | - $version = empty($version) ? self::latest_rest_api_version() : $version; |
|
1303 | - $model_names = self::model_names_with_plural_routes($version); |
|
1304 | - $collection_routes = array(); |
|
1305 | - foreach ($model_names as $model_name => $model_class_name) { |
|
1306 | - $collection_routes[ strtolower($model_name) ] = '/' . self::ee_api_namespace . $version . '/' |
|
1307 | - . EEH_Inflector::pluralize_and_lower($model_name); |
|
1308 | - } |
|
1309 | - return $collection_routes; |
|
1310 | - } |
|
1311 | - |
|
1312 | - |
|
1313 | - /** |
|
1314 | - * Returns an array of primary key names indexed by model names. |
|
1315 | - * @param string $version |
|
1316 | - * @return array |
|
1317 | - */ |
|
1318 | - public static function getPrimaryKeyNamesIndexedByModelName($version = '') |
|
1319 | - { |
|
1320 | - $version = empty($version) ? self::latest_rest_api_version() : $version; |
|
1321 | - $model_names = self::model_names_with_plural_routes($version); |
|
1322 | - $primary_key_items = array(); |
|
1323 | - foreach ($model_names as $model_name => $model_class_name) { |
|
1324 | - $primary_keys = $model_class_name::instance()->get_combined_primary_key_fields(); |
|
1325 | - foreach ($primary_keys as $primary_key_name => $primary_key_field) { |
|
1326 | - if (count($primary_keys) > 1) { |
|
1327 | - $primary_key_items[ strtolower($model_name) ][] = $primary_key_name; |
|
1328 | - } else { |
|
1329 | - $primary_key_items[ strtolower($model_name) ] = $primary_key_name; |
|
1330 | - } |
|
1331 | - } |
|
1332 | - } |
|
1333 | - return $primary_key_items; |
|
1334 | - } |
|
1335 | - |
|
1336 | - /** |
|
1337 | - * Determines the EE REST API debug mode is activated, or not. |
|
1338 | - * @since 4.9.76.p |
|
1339 | - * @return bool |
|
1340 | - */ |
|
1341 | - public static function debugMode() |
|
1342 | - { |
|
1343 | - static $debug_mode = null; // could be class prop |
|
1344 | - if ($debug_mode === null) { |
|
1345 | - $debug_mode = defined('EE_REST_API_DEBUG_MODE') && EE_REST_API_DEBUG_MODE; |
|
1346 | - } |
|
1347 | - return $debug_mode; |
|
1348 | - } |
|
1349 | - |
|
1350 | - |
|
1351 | - |
|
1352 | - /** |
|
1353 | - * run - initial module setup |
|
1354 | - * |
|
1355 | - * @access public |
|
1356 | - * @param WP $WP |
|
1357 | - * @return void |
|
1358 | - */ |
|
1359 | - public function run($WP) |
|
1360 | - { |
|
1361 | - } |
|
26 | + const ee_api_namespace = Domain::API_NAMESPACE; |
|
27 | + |
|
28 | + const ee_api_namespace_for_regex = 'ee\/v([^/]*)\/'; |
|
29 | + |
|
30 | + const saved_routes_option_names = 'ee_core_routes'; |
|
31 | + |
|
32 | + /** |
|
33 | + * string used in _links response bodies to make them globally unique. |
|
34 | + * |
|
35 | + * @see http://v2.wp-api.org/extending/linking/ |
|
36 | + */ |
|
37 | + const ee_api_link_namespace = 'https://api.eventespresso.com/'; |
|
38 | + |
|
39 | + /** |
|
40 | + * @var CalculatedModelFields |
|
41 | + */ |
|
42 | + protected static $_field_calculator; |
|
43 | + |
|
44 | + |
|
45 | + /** |
|
46 | + * @return EED_Core_Rest_Api|EED_Module |
|
47 | + */ |
|
48 | + public static function instance() |
|
49 | + { |
|
50 | + self::$_field_calculator = LoaderFactory::getLoader()->load('EventEspresso\core\libraries\rest_api\CalculatedModelFields'); |
|
51 | + return parent::get_instance(__CLASS__); |
|
52 | + } |
|
53 | + |
|
54 | + |
|
55 | + /** |
|
56 | + * set_hooks - for hooking into EE Core, other modules, etc |
|
57 | + * |
|
58 | + * @access public |
|
59 | + * @return void |
|
60 | + */ |
|
61 | + public static function set_hooks() |
|
62 | + { |
|
63 | + self::set_hooks_both(); |
|
64 | + } |
|
65 | + |
|
66 | + |
|
67 | + /** |
|
68 | + * set_hooks_admin - for hooking into EE Admin Core, other modules, etc |
|
69 | + * |
|
70 | + * @access public |
|
71 | + * @return void |
|
72 | + */ |
|
73 | + public static function set_hooks_admin() |
|
74 | + { |
|
75 | + self::set_hooks_both(); |
|
76 | + } |
|
77 | + |
|
78 | + |
|
79 | + public static function set_hooks_both() |
|
80 | + { |
|
81 | + add_action('rest_api_init', array('EED_Core_Rest_Api', 'set_hooks_rest_api'), 5); |
|
82 | + add_action('rest_api_init', array('EED_Core_Rest_Api', 'register_routes'), 10); |
|
83 | + add_filter('rest_route_data', array('EED_Core_Rest_Api', 'hide_old_endpoints'), 10, 2); |
|
84 | + add_filter( |
|
85 | + 'rest_index', |
|
86 | + array('EventEspresso\core\libraries\rest_api\controllers\model\Meta', 'filterEeMetadataIntoIndex') |
|
87 | + ); |
|
88 | + EED_Core_Rest_Api::invalidate_cached_route_data_on_version_change(); |
|
89 | + } |
|
90 | + |
|
91 | + |
|
92 | + /** |
|
93 | + * sets up hooks which only need to be included as part of REST API requests; |
|
94 | + * other requests like to the frontend or admin etc don't need them |
|
95 | + * |
|
96 | + * @throws \EE_Error |
|
97 | + */ |
|
98 | + public static function set_hooks_rest_api() |
|
99 | + { |
|
100 | + // set hooks which account for changes made to the API |
|
101 | + EED_Core_Rest_Api::_set_hooks_for_changes(); |
|
102 | + } |
|
103 | + |
|
104 | + |
|
105 | + /** |
|
106 | + * public wrapper of _set_hooks_for_changes. |
|
107 | + * Loads all the hooks which make requests to old versions of the API |
|
108 | + * appear the same as they always did |
|
109 | + * |
|
110 | + * @throws EE_Error |
|
111 | + */ |
|
112 | + public static function set_hooks_for_changes() |
|
113 | + { |
|
114 | + self::_set_hooks_for_changes(); |
|
115 | + } |
|
116 | + |
|
117 | + |
|
118 | + /** |
|
119 | + * Loads all the hooks which make requests to old versions of the API |
|
120 | + * appear the same as they always did |
|
121 | + * |
|
122 | + * @throws EE_Error |
|
123 | + */ |
|
124 | + protected static function _set_hooks_for_changes() |
|
125 | + { |
|
126 | + $folder_contents = EEH_File::get_contents_of_folders(array(EE_LIBRARIES . 'rest_api/changes'), false); |
|
127 | + foreach ($folder_contents as $classname_in_namespace => $filepath) { |
|
128 | + // ignore the base parent class |
|
129 | + // and legacy named classes |
|
130 | + if ($classname_in_namespace === 'ChangesInBase' |
|
131 | + || strpos($classname_in_namespace, 'Changes_In_') === 0 |
|
132 | + ) { |
|
133 | + continue; |
|
134 | + } |
|
135 | + $full_classname = 'EventEspresso\core\libraries\rest_api\changes\\' . $classname_in_namespace; |
|
136 | + if (class_exists($full_classname)) { |
|
137 | + $instance_of_class = new $full_classname; |
|
138 | + if ($instance_of_class instanceof ChangesInBase) { |
|
139 | + $instance_of_class->setHooks(); |
|
140 | + } |
|
141 | + } |
|
142 | + } |
|
143 | + } |
|
144 | + |
|
145 | + |
|
146 | + /** |
|
147 | + * Filters the WP routes to add our EE-related ones. This takes a bit of time |
|
148 | + * so we actually prefer to only do it when an EE plugin is activated or upgraded |
|
149 | + * |
|
150 | + * @throws \EE_Error |
|
151 | + */ |
|
152 | + public static function register_routes() |
|
153 | + { |
|
154 | + foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_routes) { |
|
155 | + foreach ($relative_routes as $relative_route => $data_for_multiple_endpoints) { |
|
156 | + /** |
|
157 | + * @var array $data_for_multiple_endpoints numerically indexed array |
|
158 | + * but can also contain route options like { |
|
159 | + * @type array $schema { |
|
160 | + * @type callable $schema_callback |
|
161 | + * @type array $callback_args arguments that will be passed to the callback, after the |
|
162 | + * WP_REST_Request of course |
|
163 | + * } |
|
164 | + * } |
|
165 | + */ |
|
166 | + // when registering routes, register all the endpoints' data at the same time |
|
167 | + $multiple_endpoint_args = array(); |
|
168 | + foreach ($data_for_multiple_endpoints as $endpoint_key => $data_for_single_endpoint) { |
|
169 | + /** |
|
170 | + * @var array $data_for_single_endpoint { |
|
171 | + * @type callable $callback |
|
172 | + * @type string methods |
|
173 | + * @type array args |
|
174 | + * @type array _links |
|
175 | + * @type array $callback_args arguments that will be passed to the callback, after the |
|
176 | + * WP_REST_Request of course |
|
177 | + * } |
|
178 | + */ |
|
179 | + // skip route options |
|
180 | + if (! is_numeric($endpoint_key)) { |
|
181 | + continue; |
|
182 | + } |
|
183 | + if (! isset($data_for_single_endpoint['callback'], $data_for_single_endpoint['methods'])) { |
|
184 | + throw new EE_Error( |
|
185 | + esc_html__( |
|
186 | + // @codingStandardsIgnoreStart |
|
187 | + 'Endpoint configuration data needs to have entries "callback" (callable) and "methods" (comma-separated list of accepts HTTP methods).', |
|
188 | + // @codingStandardsIgnoreEnd |
|
189 | + 'event_espresso' |
|
190 | + ) |
|
191 | + ); |
|
192 | + } |
|
193 | + $callback = $data_for_single_endpoint['callback']; |
|
194 | + $single_endpoint_args = array( |
|
195 | + 'methods' => $data_for_single_endpoint['methods'], |
|
196 | + 'args' => isset($data_for_single_endpoint['args']) ? $data_for_single_endpoint['args'] |
|
197 | + : array(), |
|
198 | + ); |
|
199 | + if (isset($data_for_single_endpoint['_links'])) { |
|
200 | + $single_endpoint_args['_links'] = $data_for_single_endpoint['_links']; |
|
201 | + } |
|
202 | + if (isset($data_for_single_endpoint['callback_args'])) { |
|
203 | + $callback_args = $data_for_single_endpoint['callback_args']; |
|
204 | + $single_endpoint_args['callback'] = function (\WP_REST_Request $request) use ( |
|
205 | + $callback, |
|
206 | + $callback_args |
|
207 | + ) { |
|
208 | + array_unshift($callback_args, $request); |
|
209 | + return call_user_func_array( |
|
210 | + $callback, |
|
211 | + $callback_args |
|
212 | + ); |
|
213 | + }; |
|
214 | + } else { |
|
215 | + $single_endpoint_args['callback'] = $data_for_single_endpoint['callback']; |
|
216 | + } |
|
217 | + // As of WordPress 5.5, if a permission_callback is not provided, |
|
218 | + // the REST API will issue a _doing_it_wrong notice. |
|
219 | + // Since the EE REST API defers capabilities to the db model system, |
|
220 | + // we will just use the generic WP callback for public endpoints |
|
221 | + if (! isset($single_endpoint_args['permission_callback'])) { |
|
222 | + $single_endpoint_args['permission_callback'] = '__return_true'; |
|
223 | + } |
|
224 | + $multiple_endpoint_args[] = $single_endpoint_args; |
|
225 | + } |
|
226 | + if (isset($data_for_multiple_endpoints['schema'])) { |
|
227 | + $schema_route_data = $data_for_multiple_endpoints['schema']; |
|
228 | + $schema_callback = $schema_route_data['schema_callback']; |
|
229 | + $callback_args = $schema_route_data['callback_args']; |
|
230 | + $multiple_endpoint_args['schema'] = function () use ($schema_callback, $callback_args) { |
|
231 | + return call_user_func_array( |
|
232 | + $schema_callback, |
|
233 | + $callback_args |
|
234 | + ); |
|
235 | + }; |
|
236 | + } |
|
237 | + register_rest_route( |
|
238 | + $namespace, |
|
239 | + $relative_route, |
|
240 | + $multiple_endpoint_args |
|
241 | + ); |
|
242 | + } |
|
243 | + } |
|
244 | + } |
|
245 | + |
|
246 | + |
|
247 | + /** |
|
248 | + * Checks if there was a version change or something that merits invalidating the cached |
|
249 | + * route data. If so, invalidates the cached route data so that it gets refreshed |
|
250 | + * next time the WP API is used |
|
251 | + */ |
|
252 | + public static function invalidate_cached_route_data_on_version_change() |
|
253 | + { |
|
254 | + if (EE_System::instance()->detect_req_type() !== EE_System::req_type_normal) { |
|
255 | + EED_Core_Rest_Api::invalidate_cached_route_data(); |
|
256 | + } |
|
257 | + foreach (EE_Registry::instance()->addons as $addon) { |
|
258 | + if ($addon instanceof EE_Addon && $addon->detect_req_type() !== EE_System::req_type_normal) { |
|
259 | + EED_Core_Rest_Api::invalidate_cached_route_data(); |
|
260 | + } |
|
261 | + } |
|
262 | + } |
|
263 | + |
|
264 | + |
|
265 | + /** |
|
266 | + * Removes the cached route data so it will get refreshed next time the WP API is used |
|
267 | + */ |
|
268 | + public static function invalidate_cached_route_data() |
|
269 | + { |
|
270 | + // delete the saved EE REST API routes |
|
271 | + foreach (EED_Core_Rest_Api::versions_served() as $version => $hidden) { |
|
272 | + delete_option(EED_Core_Rest_Api::saved_routes_option_names . $version); |
|
273 | + } |
|
274 | + } |
|
275 | + |
|
276 | + |
|
277 | + /** |
|
278 | + * Gets the EE route data |
|
279 | + * |
|
280 | + * @return array top-level key is the namespace, next-level key is the route and its value is array{ |
|
281 | + * @throws \EE_Error |
|
282 | + * @type string|array $callback |
|
283 | + * @type string $methods |
|
284 | + * @type boolean $hidden_endpoint |
|
285 | + * } |
|
286 | + */ |
|
287 | + public static function get_ee_route_data() |
|
288 | + { |
|
289 | + $ee_routes = array(); |
|
290 | + foreach (self::versions_served() as $version => $hidden_endpoints) { |
|
291 | + $ee_routes[ self::ee_api_namespace . $version ] = self::_get_ee_route_data_for_version( |
|
292 | + $version, |
|
293 | + $hidden_endpoints |
|
294 | + ); |
|
295 | + } |
|
296 | + return $ee_routes; |
|
297 | + } |
|
298 | + |
|
299 | + |
|
300 | + /** |
|
301 | + * Gets the EE route data from the wp options if it exists already, |
|
302 | + * otherwise re-generates it and saves it to the option |
|
303 | + * |
|
304 | + * @param string $version |
|
305 | + * @param boolean $hidden_endpoints |
|
306 | + * @return array |
|
307 | + * @throws \EE_Error |
|
308 | + */ |
|
309 | + protected static function _get_ee_route_data_for_version($version, $hidden_endpoints = false) |
|
310 | + { |
|
311 | + $ee_routes = get_option(self::saved_routes_option_names . $version, null); |
|
312 | + if (! $ee_routes || EED_Core_Rest_Api::debugMode()) { |
|
313 | + $ee_routes = self::_save_ee_route_data_for_version($version, $hidden_endpoints); |
|
314 | + } |
|
315 | + return $ee_routes; |
|
316 | + } |
|
317 | + |
|
318 | + |
|
319 | + /** |
|
320 | + * Saves the EE REST API route data to a wp option and returns it |
|
321 | + * |
|
322 | + * @param string $version |
|
323 | + * @param boolean $hidden_endpoints |
|
324 | + * @return mixed|null |
|
325 | + * @throws \EE_Error |
|
326 | + */ |
|
327 | + protected static function _save_ee_route_data_for_version($version, $hidden_endpoints = false) |
|
328 | + { |
|
329 | + $instance = self::instance(); |
|
330 | + $routes = apply_filters( |
|
331 | + 'EED_Core_Rest_Api__save_ee_route_data_for_version__routes', |
|
332 | + array_replace_recursive( |
|
333 | + $instance->_get_config_route_data_for_version($version, $hidden_endpoints), |
|
334 | + $instance->_get_meta_route_data_for_version($version, $hidden_endpoints), |
|
335 | + $instance->_get_model_route_data_for_version($version, $hidden_endpoints), |
|
336 | + $instance->_get_rpc_route_data_for_version($version, $hidden_endpoints) |
|
337 | + ) |
|
338 | + ); |
|
339 | + $option_name = self::saved_routes_option_names . $version; |
|
340 | + if (get_option($option_name)) { |
|
341 | + update_option($option_name, $routes, true); |
|
342 | + } else { |
|
343 | + add_option($option_name, $routes, null, 'no'); |
|
344 | + } |
|
345 | + return $routes; |
|
346 | + } |
|
347 | + |
|
348 | + |
|
349 | + /** |
|
350 | + * Calculates all the EE routes and saves it to a WordPress option so we don't |
|
351 | + * need to calculate it on every request |
|
352 | + * |
|
353 | + * @deprecated since version 4.9.1 |
|
354 | + * @return void |
|
355 | + */ |
|
356 | + public static function save_ee_routes() |
|
357 | + { |
|
358 | + if (EE_Maintenance_Mode::instance()->models_can_query()) { |
|
359 | + $instance = self::instance(); |
|
360 | + $routes = apply_filters( |
|
361 | + 'EED_Core_Rest_Api__save_ee_routes__routes', |
|
362 | + array_replace_recursive( |
|
363 | + $instance->_register_config_routes(), |
|
364 | + $instance->_register_meta_routes(), |
|
365 | + $instance->_register_model_routes(), |
|
366 | + $instance->_register_rpc_routes() |
|
367 | + ) |
|
368 | + ); |
|
369 | + update_option(self::saved_routes_option_names, $routes, true); |
|
370 | + } |
|
371 | + } |
|
372 | + |
|
373 | + |
|
374 | + /** |
|
375 | + * Gets all the route information relating to EE models |
|
376 | + * |
|
377 | + * @return array @see get_ee_route_data |
|
378 | + * @deprecated since version 4.9.1 |
|
379 | + */ |
|
380 | + protected function _register_model_routes() |
|
381 | + { |
|
382 | + $model_routes = array(); |
|
383 | + foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
384 | + $model_routes[ EED_Core_Rest_Api::ee_api_namespace |
|
385 | + . $version ] = $this->_get_config_route_data_for_version($version, $hidden_endpoint); |
|
386 | + } |
|
387 | + return $model_routes; |
|
388 | + } |
|
389 | + |
|
390 | + |
|
391 | + /** |
|
392 | + * Decides whether or not to add write endpoints for this model. |
|
393 | + * |
|
394 | + * Currently, this defaults to exclude all global tables and models |
|
395 | + * which would allow inserting WP core data (we don't want to duplicate |
|
396 | + * what WP API does, as it's unnecessary, extra work, and potentially extra bugs) |
|
397 | + * |
|
398 | + * @param EEM_Base $model |
|
399 | + * @return bool |
|
400 | + */ |
|
401 | + public static function should_have_write_endpoints(EEM_Base $model) |
|
402 | + { |
|
403 | + if ($model->is_wp_core_model()) { |
|
404 | + return false; |
|
405 | + } |
|
406 | + foreach ($model->get_tables() as $table) { |
|
407 | + if ($table->is_global()) { |
|
408 | + return false; |
|
409 | + } |
|
410 | + } |
|
411 | + return true; |
|
412 | + } |
|
413 | + |
|
414 | + |
|
415 | + /** |
|
416 | + * Gets the names of all models which should have plural routes (eg `ee/v4.8.36/events`) |
|
417 | + * in this versioned namespace of EE4 |
|
418 | + * |
|
419 | + * @param $version |
|
420 | + * @return array keys are model names (eg 'Event') and values ar either classnames (eg 'EEM_Event') |
|
421 | + */ |
|
422 | + public static function model_names_with_plural_routes($version) |
|
423 | + { |
|
424 | + $model_version_info = new ModelVersionInfo($version); |
|
425 | + $models_to_register = $model_version_info->modelsForRequestedVersion(); |
|
426 | + // let's not bother having endpoints for extra metas |
|
427 | + unset( |
|
428 | + $models_to_register['Extra_Meta'], |
|
429 | + $models_to_register['Extra_Join'], |
|
430 | + $models_to_register['Post_Meta'] |
|
431 | + ); |
|
432 | + return apply_filters( |
|
433 | + 'FHEE__EED_Core_REST_API___register_model_routes', |
|
434 | + $models_to_register |
|
435 | + ); |
|
436 | + } |
|
437 | + |
|
438 | + |
|
439 | + /** |
|
440 | + * Gets the route data for EE models in the specified version |
|
441 | + * |
|
442 | + * @param string $version |
|
443 | + * @param boolean $hidden_endpoint |
|
444 | + * @return array |
|
445 | + * @throws EE_Error |
|
446 | + */ |
|
447 | + protected function _get_model_route_data_for_version($version, $hidden_endpoint = false) |
|
448 | + { |
|
449 | + $model_routes = array(); |
|
450 | + $model_version_info = new ModelVersionInfo($version); |
|
451 | + foreach (EED_Core_Rest_Api::model_names_with_plural_routes($version) as $model_name => $model_classname) { |
|
452 | + $model = \EE_Registry::instance()->load_model($model_name); |
|
453 | + // if this isn't a valid model then let's skip iterate to the next item in the loop. |
|
454 | + if (! $model instanceof EEM_Base) { |
|
455 | + continue; |
|
456 | + } |
|
457 | + // yes we could just register one route for ALL models, but then they wouldn't show up in the index |
|
458 | + $plural_model_route = EED_Core_Rest_Api::get_collection_route($model); |
|
459 | + $singular_model_route = EED_Core_Rest_Api::get_entity_route($model, '(?P<id>[^\/]+)'); |
|
460 | + $model_routes[ $plural_model_route ] = array( |
|
461 | + array( |
|
462 | + 'callback' => array( |
|
463 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
464 | + 'handleRequestGetAll', |
|
465 | + ), |
|
466 | + 'callback_args' => array($version, $model_name), |
|
467 | + 'methods' => WP_REST_Server::READABLE, |
|
468 | + 'hidden_endpoint' => $hidden_endpoint, |
|
469 | + 'args' => $this->_get_read_query_params($model, $version), |
|
470 | + '_links' => array( |
|
471 | + 'self' => rest_url(EED_Core_Rest_Api::ee_api_namespace . $version . $singular_model_route), |
|
472 | + ), |
|
473 | + ), |
|
474 | + 'schema' => array( |
|
475 | + 'schema_callback' => array( |
|
476 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
477 | + 'handleSchemaRequest', |
|
478 | + ), |
|
479 | + 'callback_args' => array($version, $model_name), |
|
480 | + ), |
|
481 | + ); |
|
482 | + $model_routes[ $singular_model_route ] = array( |
|
483 | + array( |
|
484 | + 'callback' => array( |
|
485 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
486 | + 'handleRequestGetOne', |
|
487 | + ), |
|
488 | + 'callback_args' => array($version, $model_name), |
|
489 | + 'methods' => WP_REST_Server::READABLE, |
|
490 | + 'hidden_endpoint' => $hidden_endpoint, |
|
491 | + 'args' => $this->_get_response_selection_query_params($model, $version, true), |
|
492 | + ), |
|
493 | + ); |
|
494 | + if (apply_filters( |
|
495 | + 'FHEE__EED_Core_Rest_Api___get_model_route_data_for_version__add_write_endpoints', |
|
496 | + EED_Core_Rest_Api::should_have_write_endpoints($model), |
|
497 | + $model |
|
498 | + )) { |
|
499 | + $model_routes[ $plural_model_route ][] = array( |
|
500 | + 'callback' => array( |
|
501 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
502 | + 'handleRequestInsert', |
|
503 | + ), |
|
504 | + 'callback_args' => array($version, $model_name), |
|
505 | + 'methods' => WP_REST_Server::CREATABLE, |
|
506 | + 'hidden_endpoint' => $hidden_endpoint, |
|
507 | + 'args' => $this->_get_write_params($model_name, $model_version_info, true), |
|
508 | + ); |
|
509 | + $model_routes[ $singular_model_route ] = array_merge( |
|
510 | + $model_routes[ $singular_model_route ], |
|
511 | + array( |
|
512 | + array( |
|
513 | + 'callback' => array( |
|
514 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
515 | + 'handleRequestUpdate', |
|
516 | + ), |
|
517 | + 'callback_args' => array($version, $model_name), |
|
518 | + 'methods' => WP_REST_Server::EDITABLE, |
|
519 | + 'hidden_endpoint' => $hidden_endpoint, |
|
520 | + 'args' => $this->_get_write_params($model_name, $model_version_info), |
|
521 | + ), |
|
522 | + array( |
|
523 | + 'callback' => array( |
|
524 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
525 | + 'handleRequestDelete', |
|
526 | + ), |
|
527 | + 'callback_args' => array($version, $model_name), |
|
528 | + 'methods' => WP_REST_Server::DELETABLE, |
|
529 | + 'hidden_endpoint' => $hidden_endpoint, |
|
530 | + 'args' => $this->_get_delete_query_params($model, $version), |
|
531 | + ), |
|
532 | + ) |
|
533 | + ); |
|
534 | + } |
|
535 | + foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
536 | + $related_route = EED_Core_Rest_Api::get_relation_route_via( |
|
537 | + $model, |
|
538 | + '(?P<id>[^\/]+)', |
|
539 | + $relation_obj |
|
540 | + ); |
|
541 | + $model_routes[ $related_route ] = array( |
|
542 | + array( |
|
543 | + 'callback' => array( |
|
544 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
545 | + 'handleRequestGetRelated', |
|
546 | + ), |
|
547 | + 'callback_args' => array($version, $model_name, $relation_name), |
|
548 | + 'methods' => WP_REST_Server::READABLE, |
|
549 | + 'hidden_endpoint' => $hidden_endpoint, |
|
550 | + 'args' => $this->_get_read_query_params($relation_obj->get_other_model(), $version), |
|
551 | + ), |
|
552 | + ); |
|
553 | + |
|
554 | + $related_write_route = $related_route . '/' . '(?P<related_id>[^\/]+)'; |
|
555 | + $model_routes[ $related_write_route ] = array( |
|
556 | + array( |
|
557 | + 'callback' => array( |
|
558 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
559 | + 'handleRequestAddRelation', |
|
560 | + ), |
|
561 | + 'callback_args' => array($version, $model_name, $relation_name), |
|
562 | + 'methods' => WP_REST_Server::EDITABLE, |
|
563 | + 'hidden_endpoint' => $hidden_endpoint, |
|
564 | + 'args' => $this->_get_add_relation_query_params($model, $relation_obj->get_other_model(), $version) |
|
565 | + ), |
|
566 | + array( |
|
567 | + 'callback' => array( |
|
568 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
569 | + 'handleRequestRemoveRelation', |
|
570 | + ), |
|
571 | + 'callback_args' => array($version, $model_name, $relation_name), |
|
572 | + 'methods' => WP_REST_Server::DELETABLE, |
|
573 | + 'hidden_endpoint' => $hidden_endpoint, |
|
574 | + 'args' => array() |
|
575 | + ), |
|
576 | + ); |
|
577 | + } |
|
578 | + } |
|
579 | + return $model_routes; |
|
580 | + } |
|
581 | + |
|
582 | + |
|
583 | + /** |
|
584 | + * Gets the relative URI to a model's REST API plural route, after the EE4 versioned namespace, |
|
585 | + * excluding the preceding slash. |
|
586 | + * Eg you pass get_plural_route_to('Event') = 'events' |
|
587 | + * |
|
588 | + * @param EEM_Base $model |
|
589 | + * @return string |
|
590 | + */ |
|
591 | + public static function get_collection_route(EEM_Base $model) |
|
592 | + { |
|
593 | + return EEH_Inflector::pluralize_and_lower($model->get_this_model_name()); |
|
594 | + } |
|
595 | + |
|
596 | + |
|
597 | + /** |
|
598 | + * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace, |
|
599 | + * excluding the preceding slash. |
|
600 | + * Eg you pass get_plural_route_to('Event', 12) = 'events/12' |
|
601 | + * |
|
602 | + * @param EEM_Base $model eg Event or Venue |
|
603 | + * @param string $id |
|
604 | + * @return string |
|
605 | + */ |
|
606 | + public static function get_entity_route($model, $id) |
|
607 | + { |
|
608 | + return EED_Core_Rest_Api::get_collection_route($model) . '/' . $id; |
|
609 | + } |
|
610 | + |
|
611 | + |
|
612 | + /** |
|
613 | + * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace, |
|
614 | + * excluding the preceding slash. |
|
615 | + * Eg you pass get_plural_route_to('Event', 12) = 'events/12' |
|
616 | + * |
|
617 | + * @param EEM_Base $model eg Event or Venue |
|
618 | + * @param string $id |
|
619 | + * @param EE_Model_Relation_Base $relation_obj |
|
620 | + * @return string |
|
621 | + */ |
|
622 | + public static function get_relation_route_via(EEM_Base $model, $id, EE_Model_Relation_Base $relation_obj) |
|
623 | + { |
|
624 | + $related_model_name_endpoint_part = ModelRead::getRelatedEntityName( |
|
625 | + $relation_obj->get_other_model()->get_this_model_name(), |
|
626 | + $relation_obj |
|
627 | + ); |
|
628 | + return EED_Core_Rest_Api::get_entity_route($model, $id) . '/' . $related_model_name_endpoint_part; |
|
629 | + } |
|
630 | + |
|
631 | + |
|
632 | + /** |
|
633 | + * Adds onto the $relative_route the EE4 REST API versioned namespace. |
|
634 | + * Eg if given '4.8.36' and 'events', will return 'ee/v4.8.36/events' |
|
635 | + * |
|
636 | + * @param string $relative_route |
|
637 | + * @param string $version |
|
638 | + * @return string |
|
639 | + */ |
|
640 | + public static function get_versioned_route_to($relative_route, $version = '4.8.36') |
|
641 | + { |
|
642 | + return '/' . EED_Core_Rest_Api::ee_api_namespace . $version . '/' . $relative_route; |
|
643 | + } |
|
644 | + |
|
645 | + |
|
646 | + /** |
|
647 | + * Adds all the RPC-style routes (remote procedure call-like routes, ie |
|
648 | + * routes that don't conform to the traditional REST CRUD-style). |
|
649 | + * |
|
650 | + * @deprecated since 4.9.1 |
|
651 | + */ |
|
652 | + protected function _register_rpc_routes() |
|
653 | + { |
|
654 | + $routes = array(); |
|
655 | + foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
656 | + $routes[ self::ee_api_namespace . $version ] = $this->_get_rpc_route_data_for_version( |
|
657 | + $version, |
|
658 | + $hidden_endpoint |
|
659 | + ); |
|
660 | + } |
|
661 | + return $routes; |
|
662 | + } |
|
663 | + |
|
664 | + |
|
665 | + /** |
|
666 | + * @param string $version |
|
667 | + * @param boolean $hidden_endpoint |
|
668 | + * @return array |
|
669 | + */ |
|
670 | + protected function _get_rpc_route_data_for_version($version, $hidden_endpoint = false) |
|
671 | + { |
|
672 | + $this_versions_routes = array(); |
|
673 | + // checkin endpoint |
|
674 | + $this_versions_routes['registrations/(?P<REG_ID>\d+)/toggle_checkin_for_datetime/(?P<DTT_ID>\d+)'] = array( |
|
675 | + array( |
|
676 | + 'callback' => array( |
|
677 | + 'EventEspresso\core\libraries\rest_api\controllers\rpc\Checkin', |
|
678 | + 'handleRequestToggleCheckin', |
|
679 | + ), |
|
680 | + 'methods' => WP_REST_Server::CREATABLE, |
|
681 | + 'hidden_endpoint' => $hidden_endpoint, |
|
682 | + 'args' => array( |
|
683 | + 'force' => array( |
|
684 | + 'required' => false, |
|
685 | + 'default' => false, |
|
686 | + 'description' => __( |
|
687 | + // @codingStandardsIgnoreStart |
|
688 | + 'Whether to force toggle checkin, or to verify the registration status and allowed ticket uses', |
|
689 | + // @codingStandardsIgnoreEnd |
|
690 | + 'event_espresso' |
|
691 | + ), |
|
692 | + ), |
|
693 | + ), |
|
694 | + 'callback_args' => array($version), |
|
695 | + ), |
|
696 | + ); |
|
697 | + return apply_filters( |
|
698 | + 'FHEE__EED_Core_Rest_Api___register_rpc_routes__this_versions_routes', |
|
699 | + $this_versions_routes, |
|
700 | + $version, |
|
701 | + $hidden_endpoint |
|
702 | + ); |
|
703 | + } |
|
704 | + |
|
705 | + |
|
706 | + /** |
|
707 | + * Gets the query params that can be used when request one or many |
|
708 | + * |
|
709 | + * @param EEM_Base $model |
|
710 | + * @param string $version |
|
711 | + * @return array |
|
712 | + */ |
|
713 | + protected function _get_response_selection_query_params(\EEM_Base $model, $version, $single_only = false) |
|
714 | + { |
|
715 | + $query_params = array( |
|
716 | + 'include' => array( |
|
717 | + 'required' => false, |
|
718 | + 'default' => '*', |
|
719 | + 'type' => 'string', |
|
720 | + ), |
|
721 | + 'calculate' => array( |
|
722 | + 'required' => false, |
|
723 | + 'default' => '', |
|
724 | + 'enum' => self::$_field_calculator->retrieveCalculatedFieldsForModel($model), |
|
725 | + 'type' => 'string', |
|
726 | + // because we accept a CSV'd list of the enumerated strings, WP core validation and sanitization |
|
727 | + // freaks out. We'll just validate this argument while handling the request |
|
728 | + 'validate_callback' => null, |
|
729 | + 'sanitize_callback' => null, |
|
730 | + ), |
|
731 | + 'password' => array( |
|
732 | + 'required' => false, |
|
733 | + 'default' => '', |
|
734 | + 'type' => 'string' |
|
735 | + ) |
|
736 | + ); |
|
737 | + return apply_filters( |
|
738 | + 'FHEE__EED_Core_Rest_Api___get_response_selection_query_params', |
|
739 | + $query_params, |
|
740 | + $model, |
|
741 | + $version |
|
742 | + ); |
|
743 | + } |
|
744 | + |
|
745 | + |
|
746 | + /** |
|
747 | + * Gets the parameters acceptable for delete requests |
|
748 | + * |
|
749 | + * @param \EEM_Base $model |
|
750 | + * @param string $version |
|
751 | + * @return array |
|
752 | + */ |
|
753 | + protected function _get_delete_query_params(\EEM_Base $model, $version) |
|
754 | + { |
|
755 | + $params_for_delete = array( |
|
756 | + 'allow_blocking' => array( |
|
757 | + 'required' => false, |
|
758 | + 'default' => true, |
|
759 | + 'type' => 'boolean', |
|
760 | + ), |
|
761 | + ); |
|
762 | + $params_for_delete['force'] = array( |
|
763 | + 'required' => false, |
|
764 | + 'default' => false, |
|
765 | + 'type' => 'boolean', |
|
766 | + ); |
|
767 | + return apply_filters( |
|
768 | + 'FHEE__EED_Core_Rest_Api___get_delete_query_params', |
|
769 | + $params_for_delete, |
|
770 | + $model, |
|
771 | + $version |
|
772 | + ); |
|
773 | + } |
|
774 | + |
|
775 | + protected function _get_add_relation_query_params(\EEM_Base $source_model, \EEM_Base $related_model, $version) |
|
776 | + { |
|
777 | + // if they're related through a HABTM relation, check for any non-FKs |
|
778 | + $all_relation_settings = $source_model->relation_settings(); |
|
779 | + $relation_settings = $all_relation_settings[ $related_model->get_this_model_name() ]; |
|
780 | + $params = array(); |
|
781 | + if ($relation_settings instanceof EE_HABTM_Relation && $relation_settings->hasNonKeyFields()) { |
|
782 | + foreach ($relation_settings->getNonKeyFields() as $field) { |
|
783 | + /* @var $field EE_Model_Field_Base */ |
|
784 | + $params[ $field->get_name() ] = array( |
|
785 | + 'required' => ! $field->is_nullable(), |
|
786 | + 'default' => ModelDataTranslator::prepareFieldValueForJson($field, $field->get_default_value(), $version), |
|
787 | + 'type' => $field->getSchemaType(), |
|
788 | + 'validate_callbaack' => null, |
|
789 | + 'sanitize_callback' => null |
|
790 | + ); |
|
791 | + } |
|
792 | + } |
|
793 | + return $params; |
|
794 | + } |
|
795 | + |
|
796 | + |
|
797 | + /** |
|
798 | + * Gets info about reading query params that are acceptable |
|
799 | + * |
|
800 | + * @param \EEM_Base $model eg 'Event' or 'Venue' |
|
801 | + * @param string $version |
|
802 | + * @return array describing the args acceptable when querying this model |
|
803 | + * @throws EE_Error |
|
804 | + */ |
|
805 | + protected function _get_read_query_params(\EEM_Base $model, $version) |
|
806 | + { |
|
807 | + $default_orderby = array(); |
|
808 | + foreach ($model->get_combined_primary_key_fields() as $key_field) { |
|
809 | + $default_orderby[ $key_field->get_name() ] = 'ASC'; |
|
810 | + } |
|
811 | + return array_merge( |
|
812 | + $this->_get_response_selection_query_params($model, $version), |
|
813 | + array( |
|
814 | + 'where' => array( |
|
815 | + 'required' => false, |
|
816 | + 'default' => array(), |
|
817 | + 'type' => 'object', |
|
818 | + // because we accept an almost infinite list of possible where conditions, WP |
|
819 | + // core validation and sanitization freaks out. We'll just validate this argument |
|
820 | + // while handling the request |
|
821 | + 'validate_callback' => null, |
|
822 | + 'sanitize_callback' => null, |
|
823 | + ), |
|
824 | + 'limit' => array( |
|
825 | + 'required' => false, |
|
826 | + 'default' => EED_Core_Rest_Api::get_default_query_limit(), |
|
827 | + 'type' => array( |
|
828 | + 'array', |
|
829 | + 'string', |
|
830 | + 'integer', |
|
831 | + ), |
|
832 | + // because we accept a variety of types, WP core validation and sanitization |
|
833 | + // freaks out. We'll just validate this argument while handling the request |
|
834 | + 'validate_callback' => null, |
|
835 | + 'sanitize_callback' => null, |
|
836 | + ), |
|
837 | + 'order_by' => array( |
|
838 | + 'required' => false, |
|
839 | + 'default' => $default_orderby, |
|
840 | + 'type' => array( |
|
841 | + 'object', |
|
842 | + 'string', |
|
843 | + ),// because we accept a variety of types, WP core validation and sanitization |
|
844 | + // freaks out. We'll just validate this argument while handling the request |
|
845 | + 'validate_callback' => null, |
|
846 | + 'sanitize_callback' => null, |
|
847 | + ), |
|
848 | + 'group_by' => array( |
|
849 | + 'required' => false, |
|
850 | + 'default' => null, |
|
851 | + 'type' => array( |
|
852 | + 'object', |
|
853 | + 'string', |
|
854 | + ), |
|
855 | + // because we accept an almost infinite list of possible groupings, |
|
856 | + // WP core validation and sanitization |
|
857 | + // freaks out. We'll just validate this argument while handling the request |
|
858 | + 'validate_callback' => null, |
|
859 | + 'sanitize_callback' => null, |
|
860 | + ), |
|
861 | + 'having' => array( |
|
862 | + 'required' => false, |
|
863 | + 'default' => null, |
|
864 | + 'type' => 'object', |
|
865 | + // because we accept an almost infinite list of possible where conditions, WP |
|
866 | + // core validation and sanitization freaks out. We'll just validate this argument |
|
867 | + // while handling the request |
|
868 | + 'validate_callback' => null, |
|
869 | + 'sanitize_callback' => null, |
|
870 | + ), |
|
871 | + 'caps' => array( |
|
872 | + 'required' => false, |
|
873 | + 'default' => EEM_Base::caps_read, |
|
874 | + 'type' => 'string', |
|
875 | + 'enum' => array( |
|
876 | + EEM_Base::caps_read, |
|
877 | + EEM_Base::caps_read_admin, |
|
878 | + EEM_Base::caps_edit, |
|
879 | + EEM_Base::caps_delete, |
|
880 | + ), |
|
881 | + ), |
|
882 | + ) |
|
883 | + ); |
|
884 | + } |
|
885 | + |
|
886 | + |
|
887 | + /** |
|
888 | + * Gets parameter information for a model regarding writing data |
|
889 | + * |
|
890 | + * @param string $model_name |
|
891 | + * @param ModelVersionInfo $model_version_info |
|
892 | + * @param boolean $create whether this is for request to create (in |
|
893 | + * which case we need all required params) or |
|
894 | + * just to update (in which case we don't |
|
895 | + * need those on every request) |
|
896 | + * @return array |
|
897 | + */ |
|
898 | + protected function _get_write_params( |
|
899 | + $model_name, |
|
900 | + ModelVersionInfo $model_version_info, |
|
901 | + $create = false |
|
902 | + ) { |
|
903 | + $model = EE_Registry::instance()->load_model($model_name); |
|
904 | + $fields = $model_version_info->fieldsOnModelInThisVersion($model); |
|
905 | + $args_info = array(); |
|
906 | + foreach ($fields as $field_name => $field_obj) { |
|
907 | + if ($field_obj->is_auto_increment()) { |
|
908 | + // totally ignore auto increment IDs |
|
909 | + continue; |
|
910 | + } |
|
911 | + $arg_info = $field_obj->getSchema(); |
|
912 | + $required = $create && ! $field_obj->is_nullable() && $field_obj->get_default_value() === null; |
|
913 | + $arg_info['required'] = $required; |
|
914 | + // remove the read-only flag. If it were read-only we wouldn't list it as an argument while writing, right? |
|
915 | + unset($arg_info['readonly']); |
|
916 | + $schema_properties = $field_obj->getSchemaProperties(); |
|
917 | + if (isset($schema_properties['raw']) |
|
918 | + && $field_obj->getSchemaType() === 'object' |
|
919 | + ) { |
|
920 | + // if there's a "raw" form of this argument, use those properties instead |
|
921 | + $arg_info = array_replace( |
|
922 | + $arg_info, |
|
923 | + $schema_properties['raw'] |
|
924 | + ); |
|
925 | + } |
|
926 | + $arg_info['default'] = ModelDataTranslator::prepareFieldValueForJson( |
|
927 | + $field_obj, |
|
928 | + $field_obj->get_default_value(), |
|
929 | + $model_version_info->requestedVersion() |
|
930 | + ); |
|
931 | + // we do our own validation and sanitization within the controller |
|
932 | + if (function_exists('rest_validate_value_from_schema')) { |
|
933 | + $sanitize_callback = array( |
|
934 | + 'EED_Core_Rest_Api', |
|
935 | + 'default_sanitize_callback', |
|
936 | + ); |
|
937 | + } else { |
|
938 | + $sanitize_callback = null; |
|
939 | + } |
|
940 | + $arg_info['sanitize_callback'] = $sanitize_callback; |
|
941 | + $args_info[ $field_name ] = $arg_info; |
|
942 | + if ($field_obj instanceof EE_Datetime_Field) { |
|
943 | + $gmt_arg_info = $arg_info; |
|
944 | + $gmt_arg_info['description'] = sprintf( |
|
945 | + esc_html__( |
|
946 | + '%1$s - the value for this field in UTC. Ignored if %2$s is provided.', |
|
947 | + 'event_espresso' |
|
948 | + ), |
|
949 | + $field_obj->get_nicename(), |
|
950 | + $field_name |
|
951 | + ); |
|
952 | + $args_info[ $field_name . '_gmt' ] = $gmt_arg_info; |
|
953 | + } |
|
954 | + } |
|
955 | + return $args_info; |
|
956 | + } |
|
957 | + |
|
958 | + |
|
959 | + /** |
|
960 | + * Replacement for WP API's 'rest_parse_request_arg'. |
|
961 | + * If the value is blank but not required, don't bother validating it. |
|
962 | + * Also, it uses our email validation instead of WP API's default. |
|
963 | + * |
|
964 | + * @param $value |
|
965 | + * @param WP_REST_Request $request |
|
966 | + * @param $param |
|
967 | + * @return bool|true|WP_Error |
|
968 | + * @throws InvalidArgumentException |
|
969 | + * @throws InvalidInterfaceException |
|
970 | + * @throws InvalidDataTypeException |
|
971 | + */ |
|
972 | + public static function default_sanitize_callback($value, WP_REST_Request $request, $param) |
|
973 | + { |
|
974 | + $attributes = $request->get_attributes(); |
|
975 | + if (! isset($attributes['args'][ $param ]) |
|
976 | + || ! is_array($attributes['args'][ $param ])) { |
|
977 | + $validation_result = true; |
|
978 | + } else { |
|
979 | + $args = $attributes['args'][ $param ]; |
|
980 | + if (( |
|
981 | + $value === '' |
|
982 | + || $value === null |
|
983 | + ) |
|
984 | + && (! isset($args['required']) |
|
985 | + || $args['required'] === false |
|
986 | + ) |
|
987 | + ) { |
|
988 | + // not required and not provided? that's cool |
|
989 | + $validation_result = true; |
|
990 | + } elseif (isset($args['format']) |
|
991 | + && $args['format'] === 'email' |
|
992 | + ) { |
|
993 | + $validation_result = true; |
|
994 | + if (! self::_validate_email($value)) { |
|
995 | + $validation_result = new WP_Error( |
|
996 | + 'rest_invalid_param', |
|
997 | + esc_html__( |
|
998 | + 'The email address is not valid or does not exist.', |
|
999 | + 'event_espresso' |
|
1000 | + ) |
|
1001 | + ); |
|
1002 | + } |
|
1003 | + } else { |
|
1004 | + $validation_result = rest_validate_value_from_schema($value, $args, $param); |
|
1005 | + } |
|
1006 | + } |
|
1007 | + if (is_wp_error($validation_result)) { |
|
1008 | + return $validation_result; |
|
1009 | + } |
|
1010 | + return rest_sanitize_request_arg($value, $request, $param); |
|
1011 | + } |
|
1012 | + |
|
1013 | + |
|
1014 | + /** |
|
1015 | + * Returns whether or not this email address is valid. Copied from EE_Email_Validation_Strategy::_validate_email() |
|
1016 | + * |
|
1017 | + * @param $email |
|
1018 | + * @return bool |
|
1019 | + * @throws InvalidArgumentException |
|
1020 | + * @throws InvalidInterfaceException |
|
1021 | + * @throws InvalidDataTypeException |
|
1022 | + */ |
|
1023 | + protected static function _validate_email($email) |
|
1024 | + { |
|
1025 | + try { |
|
1026 | + EmailAddressFactory::create($email); |
|
1027 | + return true; |
|
1028 | + } catch (EmailValidationException $e) { |
|
1029 | + return false; |
|
1030 | + } |
|
1031 | + } |
|
1032 | + |
|
1033 | + |
|
1034 | + /** |
|
1035 | + * Gets routes for the config |
|
1036 | + * |
|
1037 | + * @return array @see _register_model_routes |
|
1038 | + * @deprecated since version 4.9.1 |
|
1039 | + */ |
|
1040 | + protected function _register_config_routes() |
|
1041 | + { |
|
1042 | + $config_routes = array(); |
|
1043 | + foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
1044 | + $config_routes[ self::ee_api_namespace . $version ] = $this->_get_config_route_data_for_version( |
|
1045 | + $version, |
|
1046 | + $hidden_endpoint |
|
1047 | + ); |
|
1048 | + } |
|
1049 | + return $config_routes; |
|
1050 | + } |
|
1051 | + |
|
1052 | + |
|
1053 | + /** |
|
1054 | + * Gets routes for the config for the specified version |
|
1055 | + * |
|
1056 | + * @param string $version |
|
1057 | + * @param boolean $hidden_endpoint |
|
1058 | + * @return array |
|
1059 | + */ |
|
1060 | + protected function _get_config_route_data_for_version($version, $hidden_endpoint) |
|
1061 | + { |
|
1062 | + return array( |
|
1063 | + 'config' => array( |
|
1064 | + array( |
|
1065 | + 'callback' => array( |
|
1066 | + 'EventEspresso\core\libraries\rest_api\controllers\config\Read', |
|
1067 | + 'handleRequest', |
|
1068 | + ), |
|
1069 | + 'methods' => WP_REST_Server::READABLE, |
|
1070 | + 'hidden_endpoint' => $hidden_endpoint, |
|
1071 | + 'callback_args' => array($version), |
|
1072 | + ), |
|
1073 | + ), |
|
1074 | + 'site_info' => array( |
|
1075 | + array( |
|
1076 | + 'callback' => array( |
|
1077 | + 'EventEspresso\core\libraries\rest_api\controllers\config\Read', |
|
1078 | + 'handleRequestSiteInfo', |
|
1079 | + ), |
|
1080 | + 'methods' => WP_REST_Server::READABLE, |
|
1081 | + 'hidden_endpoint' => $hidden_endpoint, |
|
1082 | + 'callback_args' => array($version), |
|
1083 | + ), |
|
1084 | + ), |
|
1085 | + ); |
|
1086 | + } |
|
1087 | + |
|
1088 | + |
|
1089 | + /** |
|
1090 | + * Gets the meta info routes |
|
1091 | + * |
|
1092 | + * @return array @see _register_model_routes |
|
1093 | + * @deprecated since version 4.9.1 |
|
1094 | + */ |
|
1095 | + protected function _register_meta_routes() |
|
1096 | + { |
|
1097 | + $meta_routes = array(); |
|
1098 | + foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
1099 | + $meta_routes[ self::ee_api_namespace . $version ] = $this->_get_meta_route_data_for_version( |
|
1100 | + $version, |
|
1101 | + $hidden_endpoint |
|
1102 | + ); |
|
1103 | + } |
|
1104 | + return $meta_routes; |
|
1105 | + } |
|
1106 | + |
|
1107 | + |
|
1108 | + /** |
|
1109 | + * @param string $version |
|
1110 | + * @param boolean $hidden_endpoint |
|
1111 | + * @return array |
|
1112 | + */ |
|
1113 | + protected function _get_meta_route_data_for_version($version, $hidden_endpoint = false) |
|
1114 | + { |
|
1115 | + return array( |
|
1116 | + 'resources' => array( |
|
1117 | + array( |
|
1118 | + 'callback' => array( |
|
1119 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Meta', |
|
1120 | + 'handleRequestModelsMeta', |
|
1121 | + ), |
|
1122 | + 'methods' => WP_REST_Server::READABLE, |
|
1123 | + 'hidden_endpoint' => $hidden_endpoint, |
|
1124 | + 'callback_args' => array($version), |
|
1125 | + ), |
|
1126 | + ), |
|
1127 | + ); |
|
1128 | + } |
|
1129 | + |
|
1130 | + |
|
1131 | + /** |
|
1132 | + * Tries to hide old 4.6 endpoints from the |
|
1133 | + * |
|
1134 | + * @param array $route_data |
|
1135 | + * @return array |
|
1136 | + * @throws \EE_Error |
|
1137 | + */ |
|
1138 | + public static function hide_old_endpoints($route_data) |
|
1139 | + { |
|
1140 | + // allow API clients to override which endpoints get hidden, in case |
|
1141 | + // they want to discover particular endpoints |
|
1142 | + // also, we don't have access to the request so we have to just grab it from the superglobal |
|
1143 | + $force_show_ee_namespace = ltrim( |
|
1144 | + EEH_Array::is_set($_REQUEST, 'force_show_ee_namespace', ''), |
|
1145 | + '/' |
|
1146 | + ); |
|
1147 | + foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_urls) { |
|
1148 | + foreach ($relative_urls as $resource_name => $endpoints) { |
|
1149 | + foreach ($endpoints as $key => $endpoint) { |
|
1150 | + // skip schema and other route options |
|
1151 | + if (! is_numeric($key)) { |
|
1152 | + continue; |
|
1153 | + } |
|
1154 | + // by default, hide "hidden_endpoint"s, unless the request indicates |
|
1155 | + // to $force_show_ee_namespace, in which case only show that one |
|
1156 | + // namespace's endpoints (and hide all others) |
|
1157 | + if (($force_show_ee_namespace !== '' && $force_show_ee_namespace !== $namespace) |
|
1158 | + || ($endpoint['hidden_endpoint'] && $force_show_ee_namespace === '') |
|
1159 | + ) { |
|
1160 | + $full_route = '/' . ltrim($namespace, '/'); |
|
1161 | + $full_route .= '/' . ltrim($resource_name, '/'); |
|
1162 | + unset($route_data[ $full_route ]); |
|
1163 | + } |
|
1164 | + } |
|
1165 | + } |
|
1166 | + } |
|
1167 | + return $route_data; |
|
1168 | + } |
|
1169 | + |
|
1170 | + |
|
1171 | + /** |
|
1172 | + * Returns an array describing which versions of core support serving requests for. |
|
1173 | + * Keys are core versions' major and minor version, and values are the |
|
1174 | + * LOWEST requested version they can serve. Eg, 4.7 can serve requests for 4.6-like |
|
1175 | + * data by just removing a few models and fields from the responses. However, 4.15 might remove |
|
1176 | + * the answers table entirely, in which case it would be very difficult for |
|
1177 | + * it to serve 4.6-style responses. |
|
1178 | + * Versions of core that are missing from this array are unknowns. |
|
1179 | + * previous ver |
|
1180 | + * |
|
1181 | + * @return array |
|
1182 | + */ |
|
1183 | + public static function version_compatibilities() |
|
1184 | + { |
|
1185 | + return apply_filters( |
|
1186 | + 'FHEE__EED_Core_REST_API__version_compatibilities', |
|
1187 | + array( |
|
1188 | + '4.8.29' => '4.8.29', |
|
1189 | + '4.8.33' => '4.8.29', |
|
1190 | + '4.8.34' => '4.8.29', |
|
1191 | + '4.8.36' => '4.8.29', |
|
1192 | + ) |
|
1193 | + ); |
|
1194 | + } |
|
1195 | + |
|
1196 | + |
|
1197 | + /** |
|
1198 | + * Gets the latest API version served. Eg if there |
|
1199 | + * are two versions served of the API, 4.8.29 and 4.8.32, and |
|
1200 | + * we are on core version 4.8.34, it will return the string "4.8.32" |
|
1201 | + * |
|
1202 | + * @return string |
|
1203 | + */ |
|
1204 | + public static function latest_rest_api_version() |
|
1205 | + { |
|
1206 | + $versions_served = \EED_Core_Rest_Api::versions_served(); |
|
1207 | + $versions_served_keys = array_keys($versions_served); |
|
1208 | + return end($versions_served_keys); |
|
1209 | + } |
|
1210 | + |
|
1211 | + |
|
1212 | + /** |
|
1213 | + * Using EED_Core_Rest_Api::version_compatibilities(), determines what version of |
|
1214 | + * EE the API can serve requests for. Eg, if we are on 4.15 of core, and |
|
1215 | + * we can serve requests from 4.12 or later, this will return array( '4.12', '4.13', '4.14', '4.15' ). |
|
1216 | + * We also indicate whether or not this version should be put in the index or not |
|
1217 | + * |
|
1218 | + * @return array keys are API version numbers (just major and minor numbers), and values |
|
1219 | + * are whether or not they should be hidden |
|
1220 | + */ |
|
1221 | + public static function versions_served() |
|
1222 | + { |
|
1223 | + $versions_served = array(); |
|
1224 | + $possibly_served_versions = EED_Core_Rest_Api::version_compatibilities(); |
|
1225 | + $lowest_compatible_version = end($possibly_served_versions); |
|
1226 | + reset($possibly_served_versions); |
|
1227 | + $versions_served_historically = array_keys($possibly_served_versions); |
|
1228 | + $latest_version = end($versions_served_historically); |
|
1229 | + reset($versions_served_historically); |
|
1230 | + // for each version of core we have ever served: |
|
1231 | + foreach ($versions_served_historically as $key_versioned_endpoint) { |
|
1232 | + // if it's not above the current core version, and it's compatible with the current version of core |
|
1233 | + |
|
1234 | + if ($key_versioned_endpoint === $latest_version) { |
|
1235 | + // don't hide the latest version in the index |
|
1236 | + $versions_served[ $key_versioned_endpoint ] = false; |
|
1237 | + } elseif (version_compare($key_versioned_endpoint, $lowest_compatible_version, '>=') |
|
1238 | + && version_compare($key_versioned_endpoint, EED_Core_Rest_Api::core_version(), '<') |
|
1239 | + ) { |
|
1240 | + // include, but hide, previous versions which are still supported |
|
1241 | + $versions_served[ $key_versioned_endpoint ] = true; |
|
1242 | + } elseif (apply_filters( |
|
1243 | + 'FHEE__EED_Core_Rest_Api__versions_served__include_incompatible_versions', |
|
1244 | + false, |
|
1245 | + $possibly_served_versions |
|
1246 | + )) { |
|
1247 | + // if a version is no longer supported, don't include it in index or list of versions served |
|
1248 | + $versions_served[ $key_versioned_endpoint ] = true; |
|
1249 | + } |
|
1250 | + } |
|
1251 | + return $versions_served; |
|
1252 | + } |
|
1253 | + |
|
1254 | + |
|
1255 | + /** |
|
1256 | + * Gets the major and minor version of EE core's version string |
|
1257 | + * |
|
1258 | + * @return string |
|
1259 | + */ |
|
1260 | + public static function core_version() |
|
1261 | + { |
|
1262 | + return apply_filters( |
|
1263 | + 'FHEE__EED_Core_REST_API__core_version', |
|
1264 | + implode( |
|
1265 | + '.', |
|
1266 | + array_slice( |
|
1267 | + explode( |
|
1268 | + '.', |
|
1269 | + espresso_version() |
|
1270 | + ), |
|
1271 | + 0, |
|
1272 | + 3 |
|
1273 | + ) |
|
1274 | + ) |
|
1275 | + ); |
|
1276 | + } |
|
1277 | + |
|
1278 | + |
|
1279 | + /** |
|
1280 | + * Gets the default limit that should be used when querying for resources |
|
1281 | + * |
|
1282 | + * @return int |
|
1283 | + */ |
|
1284 | + public static function get_default_query_limit() |
|
1285 | + { |
|
1286 | + // we actually don't use a const because we want folks to always use |
|
1287 | + // this method, not the const directly |
|
1288 | + return apply_filters( |
|
1289 | + 'FHEE__EED_Core_Rest_Api__get_default_query_limit', |
|
1290 | + 50 |
|
1291 | + ); |
|
1292 | + } |
|
1293 | + |
|
1294 | + |
|
1295 | + /** |
|
1296 | + * |
|
1297 | + * @param string $version api version string (i.e. '4.8.36') |
|
1298 | + * @return array |
|
1299 | + */ |
|
1300 | + public static function getCollectionRoutesIndexedByModelName($version = '') |
|
1301 | + { |
|
1302 | + $version = empty($version) ? self::latest_rest_api_version() : $version; |
|
1303 | + $model_names = self::model_names_with_plural_routes($version); |
|
1304 | + $collection_routes = array(); |
|
1305 | + foreach ($model_names as $model_name => $model_class_name) { |
|
1306 | + $collection_routes[ strtolower($model_name) ] = '/' . self::ee_api_namespace . $version . '/' |
|
1307 | + . EEH_Inflector::pluralize_and_lower($model_name); |
|
1308 | + } |
|
1309 | + return $collection_routes; |
|
1310 | + } |
|
1311 | + |
|
1312 | + |
|
1313 | + /** |
|
1314 | + * Returns an array of primary key names indexed by model names. |
|
1315 | + * @param string $version |
|
1316 | + * @return array |
|
1317 | + */ |
|
1318 | + public static function getPrimaryKeyNamesIndexedByModelName($version = '') |
|
1319 | + { |
|
1320 | + $version = empty($version) ? self::latest_rest_api_version() : $version; |
|
1321 | + $model_names = self::model_names_with_plural_routes($version); |
|
1322 | + $primary_key_items = array(); |
|
1323 | + foreach ($model_names as $model_name => $model_class_name) { |
|
1324 | + $primary_keys = $model_class_name::instance()->get_combined_primary_key_fields(); |
|
1325 | + foreach ($primary_keys as $primary_key_name => $primary_key_field) { |
|
1326 | + if (count($primary_keys) > 1) { |
|
1327 | + $primary_key_items[ strtolower($model_name) ][] = $primary_key_name; |
|
1328 | + } else { |
|
1329 | + $primary_key_items[ strtolower($model_name) ] = $primary_key_name; |
|
1330 | + } |
|
1331 | + } |
|
1332 | + } |
|
1333 | + return $primary_key_items; |
|
1334 | + } |
|
1335 | + |
|
1336 | + /** |
|
1337 | + * Determines the EE REST API debug mode is activated, or not. |
|
1338 | + * @since 4.9.76.p |
|
1339 | + * @return bool |
|
1340 | + */ |
|
1341 | + public static function debugMode() |
|
1342 | + { |
|
1343 | + static $debug_mode = null; // could be class prop |
|
1344 | + if ($debug_mode === null) { |
|
1345 | + $debug_mode = defined('EE_REST_API_DEBUG_MODE') && EE_REST_API_DEBUG_MODE; |
|
1346 | + } |
|
1347 | + return $debug_mode; |
|
1348 | + } |
|
1349 | + |
|
1350 | + |
|
1351 | + |
|
1352 | + /** |
|
1353 | + * run - initial module setup |
|
1354 | + * |
|
1355 | + * @access public |
|
1356 | + * @param WP $WP |
|
1357 | + * @return void |
|
1358 | + */ |
|
1359 | + public function run($WP) |
|
1360 | + { |
|
1361 | + } |
|
1362 | 1362 | } |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | */ |
124 | 124 | protected static function _set_hooks_for_changes() |
125 | 125 | { |
126 | - $folder_contents = EEH_File::get_contents_of_folders(array(EE_LIBRARIES . 'rest_api/changes'), false); |
|
126 | + $folder_contents = EEH_File::get_contents_of_folders(array(EE_LIBRARIES.'rest_api/changes'), false); |
|
127 | 127 | foreach ($folder_contents as $classname_in_namespace => $filepath) { |
128 | 128 | // ignore the base parent class |
129 | 129 | // and legacy named classes |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | ) { |
133 | 133 | continue; |
134 | 134 | } |
135 | - $full_classname = 'EventEspresso\core\libraries\rest_api\changes\\' . $classname_in_namespace; |
|
135 | + $full_classname = 'EventEspresso\core\libraries\rest_api\changes\\'.$classname_in_namespace; |
|
136 | 136 | if (class_exists($full_classname)) { |
137 | 137 | $instance_of_class = new $full_classname; |
138 | 138 | if ($instance_of_class instanceof ChangesInBase) { |
@@ -177,10 +177,10 @@ discard block |
||
177 | 177 | * } |
178 | 178 | */ |
179 | 179 | // skip route options |
180 | - if (! is_numeric($endpoint_key)) { |
|
180 | + if ( ! is_numeric($endpoint_key)) { |
|
181 | 181 | continue; |
182 | 182 | } |
183 | - if (! isset($data_for_single_endpoint['callback'], $data_for_single_endpoint['methods'])) { |
|
183 | + if ( ! isset($data_for_single_endpoint['callback'], $data_for_single_endpoint['methods'])) { |
|
184 | 184 | throw new EE_Error( |
185 | 185 | esc_html__( |
186 | 186 | // @codingStandardsIgnoreStart |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | } |
202 | 202 | if (isset($data_for_single_endpoint['callback_args'])) { |
203 | 203 | $callback_args = $data_for_single_endpoint['callback_args']; |
204 | - $single_endpoint_args['callback'] = function (\WP_REST_Request $request) use ( |
|
204 | + $single_endpoint_args['callback'] = function(\WP_REST_Request $request) use ( |
|
205 | 205 | $callback, |
206 | 206 | $callback_args |
207 | 207 | ) { |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | // the REST API will issue a _doing_it_wrong notice. |
219 | 219 | // Since the EE REST API defers capabilities to the db model system, |
220 | 220 | // we will just use the generic WP callback for public endpoints |
221 | - if (! isset($single_endpoint_args['permission_callback'])) { |
|
221 | + if ( ! isset($single_endpoint_args['permission_callback'])) { |
|
222 | 222 | $single_endpoint_args['permission_callback'] = '__return_true'; |
223 | 223 | } |
224 | 224 | $multiple_endpoint_args[] = $single_endpoint_args; |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | $schema_route_data = $data_for_multiple_endpoints['schema']; |
228 | 228 | $schema_callback = $schema_route_data['schema_callback']; |
229 | 229 | $callback_args = $schema_route_data['callback_args']; |
230 | - $multiple_endpoint_args['schema'] = function () use ($schema_callback, $callback_args) { |
|
230 | + $multiple_endpoint_args['schema'] = function() use ($schema_callback, $callback_args) { |
|
231 | 231 | return call_user_func_array( |
232 | 232 | $schema_callback, |
233 | 233 | $callback_args |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | { |
270 | 270 | // delete the saved EE REST API routes |
271 | 271 | foreach (EED_Core_Rest_Api::versions_served() as $version => $hidden) { |
272 | - delete_option(EED_Core_Rest_Api::saved_routes_option_names . $version); |
|
272 | + delete_option(EED_Core_Rest_Api::saved_routes_option_names.$version); |
|
273 | 273 | } |
274 | 274 | } |
275 | 275 | |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | { |
289 | 289 | $ee_routes = array(); |
290 | 290 | foreach (self::versions_served() as $version => $hidden_endpoints) { |
291 | - $ee_routes[ self::ee_api_namespace . $version ] = self::_get_ee_route_data_for_version( |
|
291 | + $ee_routes[self::ee_api_namespace.$version] = self::_get_ee_route_data_for_version( |
|
292 | 292 | $version, |
293 | 293 | $hidden_endpoints |
294 | 294 | ); |
@@ -308,8 +308,8 @@ discard block |
||
308 | 308 | */ |
309 | 309 | protected static function _get_ee_route_data_for_version($version, $hidden_endpoints = false) |
310 | 310 | { |
311 | - $ee_routes = get_option(self::saved_routes_option_names . $version, null); |
|
312 | - if (! $ee_routes || EED_Core_Rest_Api::debugMode()) { |
|
311 | + $ee_routes = get_option(self::saved_routes_option_names.$version, null); |
|
312 | + if ( ! $ee_routes || EED_Core_Rest_Api::debugMode()) { |
|
313 | 313 | $ee_routes = self::_save_ee_route_data_for_version($version, $hidden_endpoints); |
314 | 314 | } |
315 | 315 | return $ee_routes; |
@@ -336,7 +336,7 @@ discard block |
||
336 | 336 | $instance->_get_rpc_route_data_for_version($version, $hidden_endpoints) |
337 | 337 | ) |
338 | 338 | ); |
339 | - $option_name = self::saved_routes_option_names . $version; |
|
339 | + $option_name = self::saved_routes_option_names.$version; |
|
340 | 340 | if (get_option($option_name)) { |
341 | 341 | update_option($option_name, $routes, true); |
342 | 342 | } else { |
@@ -381,8 +381,8 @@ discard block |
||
381 | 381 | { |
382 | 382 | $model_routes = array(); |
383 | 383 | foreach (self::versions_served() as $version => $hidden_endpoint) { |
384 | - $model_routes[ EED_Core_Rest_Api::ee_api_namespace |
|
385 | - . $version ] = $this->_get_config_route_data_for_version($version, $hidden_endpoint); |
|
384 | + $model_routes[EED_Core_Rest_Api::ee_api_namespace |
|
385 | + . $version] = $this->_get_config_route_data_for_version($version, $hidden_endpoint); |
|
386 | 386 | } |
387 | 387 | return $model_routes; |
388 | 388 | } |
@@ -451,13 +451,13 @@ discard block |
||
451 | 451 | foreach (EED_Core_Rest_Api::model_names_with_plural_routes($version) as $model_name => $model_classname) { |
452 | 452 | $model = \EE_Registry::instance()->load_model($model_name); |
453 | 453 | // if this isn't a valid model then let's skip iterate to the next item in the loop. |
454 | - if (! $model instanceof EEM_Base) { |
|
454 | + if ( ! $model instanceof EEM_Base) { |
|
455 | 455 | continue; |
456 | 456 | } |
457 | 457 | // yes we could just register one route for ALL models, but then they wouldn't show up in the index |
458 | 458 | $plural_model_route = EED_Core_Rest_Api::get_collection_route($model); |
459 | 459 | $singular_model_route = EED_Core_Rest_Api::get_entity_route($model, '(?P<id>[^\/]+)'); |
460 | - $model_routes[ $plural_model_route ] = array( |
|
460 | + $model_routes[$plural_model_route] = array( |
|
461 | 461 | array( |
462 | 462 | 'callback' => array( |
463 | 463 | 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
@@ -468,7 +468,7 @@ discard block |
||
468 | 468 | 'hidden_endpoint' => $hidden_endpoint, |
469 | 469 | 'args' => $this->_get_read_query_params($model, $version), |
470 | 470 | '_links' => array( |
471 | - 'self' => rest_url(EED_Core_Rest_Api::ee_api_namespace . $version . $singular_model_route), |
|
471 | + 'self' => rest_url(EED_Core_Rest_Api::ee_api_namespace.$version.$singular_model_route), |
|
472 | 472 | ), |
473 | 473 | ), |
474 | 474 | 'schema' => array( |
@@ -479,7 +479,7 @@ discard block |
||
479 | 479 | 'callback_args' => array($version, $model_name), |
480 | 480 | ), |
481 | 481 | ); |
482 | - $model_routes[ $singular_model_route ] = array( |
|
482 | + $model_routes[$singular_model_route] = array( |
|
483 | 483 | array( |
484 | 484 | 'callback' => array( |
485 | 485 | 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
@@ -496,7 +496,7 @@ discard block |
||
496 | 496 | EED_Core_Rest_Api::should_have_write_endpoints($model), |
497 | 497 | $model |
498 | 498 | )) { |
499 | - $model_routes[ $plural_model_route ][] = array( |
|
499 | + $model_routes[$plural_model_route][] = array( |
|
500 | 500 | 'callback' => array( |
501 | 501 | 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
502 | 502 | 'handleRequestInsert', |
@@ -506,8 +506,8 @@ discard block |
||
506 | 506 | 'hidden_endpoint' => $hidden_endpoint, |
507 | 507 | 'args' => $this->_get_write_params($model_name, $model_version_info, true), |
508 | 508 | ); |
509 | - $model_routes[ $singular_model_route ] = array_merge( |
|
510 | - $model_routes[ $singular_model_route ], |
|
509 | + $model_routes[$singular_model_route] = array_merge( |
|
510 | + $model_routes[$singular_model_route], |
|
511 | 511 | array( |
512 | 512 | array( |
513 | 513 | 'callback' => array( |
@@ -538,7 +538,7 @@ discard block |
||
538 | 538 | '(?P<id>[^\/]+)', |
539 | 539 | $relation_obj |
540 | 540 | ); |
541 | - $model_routes[ $related_route ] = array( |
|
541 | + $model_routes[$related_route] = array( |
|
542 | 542 | array( |
543 | 543 | 'callback' => array( |
544 | 544 | 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
@@ -551,8 +551,8 @@ discard block |
||
551 | 551 | ), |
552 | 552 | ); |
553 | 553 | |
554 | - $related_write_route = $related_route . '/' . '(?P<related_id>[^\/]+)'; |
|
555 | - $model_routes[ $related_write_route ] = array( |
|
554 | + $related_write_route = $related_route.'/'.'(?P<related_id>[^\/]+)'; |
|
555 | + $model_routes[$related_write_route] = array( |
|
556 | 556 | array( |
557 | 557 | 'callback' => array( |
558 | 558 | 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
@@ -605,7 +605,7 @@ discard block |
||
605 | 605 | */ |
606 | 606 | public static function get_entity_route($model, $id) |
607 | 607 | { |
608 | - return EED_Core_Rest_Api::get_collection_route($model) . '/' . $id; |
|
608 | + return EED_Core_Rest_Api::get_collection_route($model).'/'.$id; |
|
609 | 609 | } |
610 | 610 | |
611 | 611 | |
@@ -625,7 +625,7 @@ discard block |
||
625 | 625 | $relation_obj->get_other_model()->get_this_model_name(), |
626 | 626 | $relation_obj |
627 | 627 | ); |
628 | - return EED_Core_Rest_Api::get_entity_route($model, $id) . '/' . $related_model_name_endpoint_part; |
|
628 | + return EED_Core_Rest_Api::get_entity_route($model, $id).'/'.$related_model_name_endpoint_part; |
|
629 | 629 | } |
630 | 630 | |
631 | 631 | |
@@ -639,7 +639,7 @@ discard block |
||
639 | 639 | */ |
640 | 640 | public static function get_versioned_route_to($relative_route, $version = '4.8.36') |
641 | 641 | { |
642 | - return '/' . EED_Core_Rest_Api::ee_api_namespace . $version . '/' . $relative_route; |
|
642 | + return '/'.EED_Core_Rest_Api::ee_api_namespace.$version.'/'.$relative_route; |
|
643 | 643 | } |
644 | 644 | |
645 | 645 | |
@@ -653,7 +653,7 @@ discard block |
||
653 | 653 | { |
654 | 654 | $routes = array(); |
655 | 655 | foreach (self::versions_served() as $version => $hidden_endpoint) { |
656 | - $routes[ self::ee_api_namespace . $version ] = $this->_get_rpc_route_data_for_version( |
|
656 | + $routes[self::ee_api_namespace.$version] = $this->_get_rpc_route_data_for_version( |
|
657 | 657 | $version, |
658 | 658 | $hidden_endpoint |
659 | 659 | ); |
@@ -776,12 +776,12 @@ discard block |
||
776 | 776 | { |
777 | 777 | // if they're related through a HABTM relation, check for any non-FKs |
778 | 778 | $all_relation_settings = $source_model->relation_settings(); |
779 | - $relation_settings = $all_relation_settings[ $related_model->get_this_model_name() ]; |
|
779 | + $relation_settings = $all_relation_settings[$related_model->get_this_model_name()]; |
|
780 | 780 | $params = array(); |
781 | 781 | if ($relation_settings instanceof EE_HABTM_Relation && $relation_settings->hasNonKeyFields()) { |
782 | 782 | foreach ($relation_settings->getNonKeyFields() as $field) { |
783 | 783 | /* @var $field EE_Model_Field_Base */ |
784 | - $params[ $field->get_name() ] = array( |
|
784 | + $params[$field->get_name()] = array( |
|
785 | 785 | 'required' => ! $field->is_nullable(), |
786 | 786 | 'default' => ModelDataTranslator::prepareFieldValueForJson($field, $field->get_default_value(), $version), |
787 | 787 | 'type' => $field->getSchemaType(), |
@@ -806,7 +806,7 @@ discard block |
||
806 | 806 | { |
807 | 807 | $default_orderby = array(); |
808 | 808 | foreach ($model->get_combined_primary_key_fields() as $key_field) { |
809 | - $default_orderby[ $key_field->get_name() ] = 'ASC'; |
|
809 | + $default_orderby[$key_field->get_name()] = 'ASC'; |
|
810 | 810 | } |
811 | 811 | return array_merge( |
812 | 812 | $this->_get_response_selection_query_params($model, $version), |
@@ -840,7 +840,7 @@ discard block |
||
840 | 840 | 'type' => array( |
841 | 841 | 'object', |
842 | 842 | 'string', |
843 | - ),// because we accept a variety of types, WP core validation and sanitization |
|
843 | + ), // because we accept a variety of types, WP core validation and sanitization |
|
844 | 844 | // freaks out. We'll just validate this argument while handling the request |
845 | 845 | 'validate_callback' => null, |
846 | 846 | 'sanitize_callback' => null, |
@@ -938,7 +938,7 @@ discard block |
||
938 | 938 | $sanitize_callback = null; |
939 | 939 | } |
940 | 940 | $arg_info['sanitize_callback'] = $sanitize_callback; |
941 | - $args_info[ $field_name ] = $arg_info; |
|
941 | + $args_info[$field_name] = $arg_info; |
|
942 | 942 | if ($field_obj instanceof EE_Datetime_Field) { |
943 | 943 | $gmt_arg_info = $arg_info; |
944 | 944 | $gmt_arg_info['description'] = sprintf( |
@@ -949,7 +949,7 @@ discard block |
||
949 | 949 | $field_obj->get_nicename(), |
950 | 950 | $field_name |
951 | 951 | ); |
952 | - $args_info[ $field_name . '_gmt' ] = $gmt_arg_info; |
|
952 | + $args_info[$field_name.'_gmt'] = $gmt_arg_info; |
|
953 | 953 | } |
954 | 954 | } |
955 | 955 | return $args_info; |
@@ -972,16 +972,16 @@ discard block |
||
972 | 972 | public static function default_sanitize_callback($value, WP_REST_Request $request, $param) |
973 | 973 | { |
974 | 974 | $attributes = $request->get_attributes(); |
975 | - if (! isset($attributes['args'][ $param ]) |
|
976 | - || ! is_array($attributes['args'][ $param ])) { |
|
975 | + if ( ! isset($attributes['args'][$param]) |
|
976 | + || ! is_array($attributes['args'][$param])) { |
|
977 | 977 | $validation_result = true; |
978 | 978 | } else { |
979 | - $args = $attributes['args'][ $param ]; |
|
979 | + $args = $attributes['args'][$param]; |
|
980 | 980 | if (( |
981 | 981 | $value === '' |
982 | 982 | || $value === null |
983 | 983 | ) |
984 | - && (! isset($args['required']) |
|
984 | + && ( ! isset($args['required']) |
|
985 | 985 | || $args['required'] === false |
986 | 986 | ) |
987 | 987 | ) { |
@@ -991,7 +991,7 @@ discard block |
||
991 | 991 | && $args['format'] === 'email' |
992 | 992 | ) { |
993 | 993 | $validation_result = true; |
994 | - if (! self::_validate_email($value)) { |
|
994 | + if ( ! self::_validate_email($value)) { |
|
995 | 995 | $validation_result = new WP_Error( |
996 | 996 | 'rest_invalid_param', |
997 | 997 | esc_html__( |
@@ -1041,7 +1041,7 @@ discard block |
||
1041 | 1041 | { |
1042 | 1042 | $config_routes = array(); |
1043 | 1043 | foreach (self::versions_served() as $version => $hidden_endpoint) { |
1044 | - $config_routes[ self::ee_api_namespace . $version ] = $this->_get_config_route_data_for_version( |
|
1044 | + $config_routes[self::ee_api_namespace.$version] = $this->_get_config_route_data_for_version( |
|
1045 | 1045 | $version, |
1046 | 1046 | $hidden_endpoint |
1047 | 1047 | ); |
@@ -1096,7 +1096,7 @@ discard block |
||
1096 | 1096 | { |
1097 | 1097 | $meta_routes = array(); |
1098 | 1098 | foreach (self::versions_served() as $version => $hidden_endpoint) { |
1099 | - $meta_routes[ self::ee_api_namespace . $version ] = $this->_get_meta_route_data_for_version( |
|
1099 | + $meta_routes[self::ee_api_namespace.$version] = $this->_get_meta_route_data_for_version( |
|
1100 | 1100 | $version, |
1101 | 1101 | $hidden_endpoint |
1102 | 1102 | ); |
@@ -1148,7 +1148,7 @@ discard block |
||
1148 | 1148 | foreach ($relative_urls as $resource_name => $endpoints) { |
1149 | 1149 | foreach ($endpoints as $key => $endpoint) { |
1150 | 1150 | // skip schema and other route options |
1151 | - if (! is_numeric($key)) { |
|
1151 | + if ( ! is_numeric($key)) { |
|
1152 | 1152 | continue; |
1153 | 1153 | } |
1154 | 1154 | // by default, hide "hidden_endpoint"s, unless the request indicates |
@@ -1157,9 +1157,9 @@ discard block |
||
1157 | 1157 | if (($force_show_ee_namespace !== '' && $force_show_ee_namespace !== $namespace) |
1158 | 1158 | || ($endpoint['hidden_endpoint'] && $force_show_ee_namespace === '') |
1159 | 1159 | ) { |
1160 | - $full_route = '/' . ltrim($namespace, '/'); |
|
1161 | - $full_route .= '/' . ltrim($resource_name, '/'); |
|
1162 | - unset($route_data[ $full_route ]); |
|
1160 | + $full_route = '/'.ltrim($namespace, '/'); |
|
1161 | + $full_route .= '/'.ltrim($resource_name, '/'); |
|
1162 | + unset($route_data[$full_route]); |
|
1163 | 1163 | } |
1164 | 1164 | } |
1165 | 1165 | } |
@@ -1233,19 +1233,19 @@ discard block |
||
1233 | 1233 | |
1234 | 1234 | if ($key_versioned_endpoint === $latest_version) { |
1235 | 1235 | // don't hide the latest version in the index |
1236 | - $versions_served[ $key_versioned_endpoint ] = false; |
|
1236 | + $versions_served[$key_versioned_endpoint] = false; |
|
1237 | 1237 | } elseif (version_compare($key_versioned_endpoint, $lowest_compatible_version, '>=') |
1238 | 1238 | && version_compare($key_versioned_endpoint, EED_Core_Rest_Api::core_version(), '<') |
1239 | 1239 | ) { |
1240 | 1240 | // include, but hide, previous versions which are still supported |
1241 | - $versions_served[ $key_versioned_endpoint ] = true; |
|
1241 | + $versions_served[$key_versioned_endpoint] = true; |
|
1242 | 1242 | } elseif (apply_filters( |
1243 | 1243 | 'FHEE__EED_Core_Rest_Api__versions_served__include_incompatible_versions', |
1244 | 1244 | false, |
1245 | 1245 | $possibly_served_versions |
1246 | 1246 | )) { |
1247 | 1247 | // if a version is no longer supported, don't include it in index or list of versions served |
1248 | - $versions_served[ $key_versioned_endpoint ] = true; |
|
1248 | + $versions_served[$key_versioned_endpoint] = true; |
|
1249 | 1249 | } |
1250 | 1250 | } |
1251 | 1251 | return $versions_served; |
@@ -1303,7 +1303,7 @@ discard block |
||
1303 | 1303 | $model_names = self::model_names_with_plural_routes($version); |
1304 | 1304 | $collection_routes = array(); |
1305 | 1305 | foreach ($model_names as $model_name => $model_class_name) { |
1306 | - $collection_routes[ strtolower($model_name) ] = '/' . self::ee_api_namespace . $version . '/' |
|
1306 | + $collection_routes[strtolower($model_name)] = '/'.self::ee_api_namespace.$version.'/' |
|
1307 | 1307 | . EEH_Inflector::pluralize_and_lower($model_name); |
1308 | 1308 | } |
1309 | 1309 | return $collection_routes; |
@@ -1324,9 +1324,9 @@ discard block |
||
1324 | 1324 | $primary_keys = $model_class_name::instance()->get_combined_primary_key_fields(); |
1325 | 1325 | foreach ($primary_keys as $primary_key_name => $primary_key_field) { |
1326 | 1326 | if (count($primary_keys) > 1) { |
1327 | - $primary_key_items[ strtolower($model_name) ][] = $primary_key_name; |
|
1327 | + $primary_key_items[strtolower($model_name)][] = $primary_key_name; |
|
1328 | 1328 | } else { |
1329 | - $primary_key_items[ strtolower($model_name) ] = $primary_key_name; |
|
1329 | + $primary_key_items[strtolower($model_name)] = $primary_key_name; |
|
1330 | 1330 | } |
1331 | 1331 | } |
1332 | 1332 | } |
@@ -7,129 +7,129 @@ |
||
7 | 7 | class EE_Post_Content_Field extends EE_Text_Field_Base |
8 | 8 | { |
9 | 9 | |
10 | - /** |
|
11 | - * @param string $table_column |
|
12 | - * @param string $nicename |
|
13 | - * @param bool $nullable |
|
14 | - * @param null $default_value |
|
15 | - */ |
|
16 | - public function __construct($table_column, $nicename, $nullable, $default_value = null) |
|
17 | - { |
|
18 | - parent::__construct($table_column, $nicename, $nullable, $default_value); |
|
19 | - $this->setSchemaType('object'); |
|
20 | - } |
|
10 | + /** |
|
11 | + * @param string $table_column |
|
12 | + * @param string $nicename |
|
13 | + * @param bool $nullable |
|
14 | + * @param null $default_value |
|
15 | + */ |
|
16 | + public function __construct($table_column, $nicename, $nullable, $default_value = null) |
|
17 | + { |
|
18 | + parent::__construct($table_column, $nicename, $nullable, $default_value); |
|
19 | + $this->setSchemaType('object'); |
|
20 | + } |
|
21 | 21 | |
22 | 22 | |
23 | - /** |
|
24 | - * removes all tags which a WP Post wouldn't allow in its content normally |
|
25 | - * |
|
26 | - * @param string $value |
|
27 | - * @return string |
|
28 | - */ |
|
29 | - public function prepare_for_set($value) |
|
30 | - { |
|
31 | - if (! current_user_can('unfiltered_html')) { |
|
32 | - $value = wp_kses("$value", wp_kses_allowed_html('post')); |
|
33 | - } |
|
34 | - return parent::prepare_for_set($value); |
|
35 | - } |
|
23 | + /** |
|
24 | + * removes all tags which a WP Post wouldn't allow in its content normally |
|
25 | + * |
|
26 | + * @param string $value |
|
27 | + * @return string |
|
28 | + */ |
|
29 | + public function prepare_for_set($value) |
|
30 | + { |
|
31 | + if (! current_user_can('unfiltered_html')) { |
|
32 | + $value = wp_kses("$value", wp_kses_allowed_html('post')); |
|
33 | + } |
|
34 | + return parent::prepare_for_set($value); |
|
35 | + } |
|
36 | 36 | |
37 | 37 | |
38 | 38 | |
39 | - /** |
|
40 | - * Runs the content through `the_content`, or if prepares the content for placing in a form input |
|
41 | - * @param string $value_on_field_to_be_outputted |
|
42 | - * @param string $schema possible values: 'form_input' or null (if null, will run through 'the_content') |
|
43 | - * @return string |
|
44 | - * @throws EE_Error when WP_DEBUG is on and recursive calling is detected |
|
45 | - */ |
|
46 | - public function prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema = null) |
|
47 | - { |
|
48 | - switch ($schema) { |
|
49 | - case 'form_input': |
|
50 | - return parent::prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema); |
|
51 | - case 'the_content': |
|
52 | - if (doing_filter('the_content')) { |
|
53 | - if (defined('WP_DEBUG') && WP_DEBUG) { |
|
54 | - throw new EE_Error( |
|
55 | - sprintf( |
|
56 | - esc_html__('You have recursively called "%1$s" with %2$s set to %3$s which uses "%2$s" filter. You should use it with %2$s "%3$s" instead here.', 'event_espresso'), |
|
57 | - 'EE_Post_Content_Field::prepare_for_pretty_echoing', |
|
58 | - '$schema', |
|
59 | - 'the_content', |
|
60 | - 'the_content_wp_core_only' |
|
61 | - ) |
|
62 | - ); |
|
63 | - } else { |
|
64 | - return $this->prepare_for_pretty_echoing($value_on_field_to_be_outputted, 'the_content_wp_core_only'); |
|
65 | - } |
|
66 | - } |
|
67 | - return apply_filters( |
|
68 | - 'the_content', |
|
69 | - parent::prepare_for_pretty_echoing( |
|
70 | - $value_on_field_to_be_outputted, |
|
71 | - $schema |
|
72 | - ) |
|
73 | - ); |
|
74 | - case 'the_content_wp_core_only': |
|
75 | - default: |
|
76 | - self::_setup_the_content_wp_core_only_filters(); |
|
77 | - $return_value = apply_filters( |
|
78 | - 'the_content_wp_core_only', |
|
79 | - parent::prepare_for_pretty_echoing( |
|
80 | - $value_on_field_to_be_outputted, |
|
81 | - $schema |
|
82 | - ) |
|
83 | - ); |
|
84 | - // ya know what? adding these filters is super fast. Let's just |
|
85 | - // avoid needing to maintain global state and set this up as-needed |
|
86 | - remove_all_filters('the_content_wp_core_only'); |
|
87 | - do_action('AHEE__EE_Post_Content_Field__prepare_for_pretty_echoing__the_content_wp_core_only__done'); |
|
88 | - return $return_value; |
|
89 | - } |
|
90 | - } |
|
39 | + /** |
|
40 | + * Runs the content through `the_content`, or if prepares the content for placing in a form input |
|
41 | + * @param string $value_on_field_to_be_outputted |
|
42 | + * @param string $schema possible values: 'form_input' or null (if null, will run through 'the_content') |
|
43 | + * @return string |
|
44 | + * @throws EE_Error when WP_DEBUG is on and recursive calling is detected |
|
45 | + */ |
|
46 | + public function prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema = null) |
|
47 | + { |
|
48 | + switch ($schema) { |
|
49 | + case 'form_input': |
|
50 | + return parent::prepare_for_pretty_echoing($value_on_field_to_be_outputted, $schema); |
|
51 | + case 'the_content': |
|
52 | + if (doing_filter('the_content')) { |
|
53 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
54 | + throw new EE_Error( |
|
55 | + sprintf( |
|
56 | + esc_html__('You have recursively called "%1$s" with %2$s set to %3$s which uses "%2$s" filter. You should use it with %2$s "%3$s" instead here.', 'event_espresso'), |
|
57 | + 'EE_Post_Content_Field::prepare_for_pretty_echoing', |
|
58 | + '$schema', |
|
59 | + 'the_content', |
|
60 | + 'the_content_wp_core_only' |
|
61 | + ) |
|
62 | + ); |
|
63 | + } else { |
|
64 | + return $this->prepare_for_pretty_echoing($value_on_field_to_be_outputted, 'the_content_wp_core_only'); |
|
65 | + } |
|
66 | + } |
|
67 | + return apply_filters( |
|
68 | + 'the_content', |
|
69 | + parent::prepare_for_pretty_echoing( |
|
70 | + $value_on_field_to_be_outputted, |
|
71 | + $schema |
|
72 | + ) |
|
73 | + ); |
|
74 | + case 'the_content_wp_core_only': |
|
75 | + default: |
|
76 | + self::_setup_the_content_wp_core_only_filters(); |
|
77 | + $return_value = apply_filters( |
|
78 | + 'the_content_wp_core_only', |
|
79 | + parent::prepare_for_pretty_echoing( |
|
80 | + $value_on_field_to_be_outputted, |
|
81 | + $schema |
|
82 | + ) |
|
83 | + ); |
|
84 | + // ya know what? adding these filters is super fast. Let's just |
|
85 | + // avoid needing to maintain global state and set this up as-needed |
|
86 | + remove_all_filters('the_content_wp_core_only'); |
|
87 | + do_action('AHEE__EE_Post_Content_Field__prepare_for_pretty_echoing__the_content_wp_core_only__done'); |
|
88 | + return $return_value; |
|
89 | + } |
|
90 | + } |
|
91 | 91 | |
92 | 92 | |
93 | 93 | |
94 | - /** |
|
95 | - * Verifies we've setup the standard WP core filters on 'the_content_wp_core_only' filter |
|
96 | - */ |
|
97 | - protected static function _setup_the_content_wp_core_only_filters() |
|
98 | - { |
|
99 | - add_filter('the_content_wp_core_only', array( $GLOBALS['wp_embed'], 'run_shortcode'), 8); |
|
100 | - add_filter('the_content_wp_core_only', array( $GLOBALS['wp_embed'], 'autoembed'), 8); |
|
101 | - add_filter('the_content_wp_core_only', 'wptexturize', 10); |
|
102 | - add_filter('the_content_wp_core_only', 'wpautop', 10); |
|
103 | - add_filter('the_content_wp_core_only', 'shortcode_unautop', 10); |
|
104 | - add_filter('the_content_wp_core_only', 'prepend_attachment', 10); |
|
105 | - if (function_exists('wp_filter_content_tags')) { |
|
106 | - add_filter('the_content_wp_core_only', 'wp_filter_content_tags', 10); |
|
107 | - } else if (function_exists('wp_make_content_images_responsive')) { |
|
108 | - add_filter('the_content_wp_core_only', 'wp_make_content_images_responsive', 10); |
|
109 | - } |
|
110 | - add_filter('the_content_wp_core_only', 'do_shortcode', 11); |
|
111 | - add_filter('the_content_wp_core_only', 'convert_smilies', 20); |
|
112 | - } |
|
94 | + /** |
|
95 | + * Verifies we've setup the standard WP core filters on 'the_content_wp_core_only' filter |
|
96 | + */ |
|
97 | + protected static function _setup_the_content_wp_core_only_filters() |
|
98 | + { |
|
99 | + add_filter('the_content_wp_core_only', array( $GLOBALS['wp_embed'], 'run_shortcode'), 8); |
|
100 | + add_filter('the_content_wp_core_only', array( $GLOBALS['wp_embed'], 'autoembed'), 8); |
|
101 | + add_filter('the_content_wp_core_only', 'wptexturize', 10); |
|
102 | + add_filter('the_content_wp_core_only', 'wpautop', 10); |
|
103 | + add_filter('the_content_wp_core_only', 'shortcode_unautop', 10); |
|
104 | + add_filter('the_content_wp_core_only', 'prepend_attachment', 10); |
|
105 | + if (function_exists('wp_filter_content_tags')) { |
|
106 | + add_filter('the_content_wp_core_only', 'wp_filter_content_tags', 10); |
|
107 | + } else if (function_exists('wp_make_content_images_responsive')) { |
|
108 | + add_filter('the_content_wp_core_only', 'wp_make_content_images_responsive', 10); |
|
109 | + } |
|
110 | + add_filter('the_content_wp_core_only', 'do_shortcode', 11); |
|
111 | + add_filter('the_content_wp_core_only', 'convert_smilies', 20); |
|
112 | + } |
|
113 | 113 | |
114 | 114 | |
115 | 115 | |
116 | - public function getSchemaProperties() |
|
117 | - { |
|
118 | - return array( |
|
119 | - 'raw' => array( |
|
120 | - 'description' => sprintf( |
|
121 | - __('%s - the content as it exists in the database.', 'event_espresso'), |
|
122 | - $this->get_nicename() |
|
123 | - ), |
|
124 | - 'type' => 'string' |
|
125 | - ), |
|
126 | - 'rendered' => array( |
|
127 | - 'description' => sprintf( |
|
128 | - __('%s - the content rendered for display.', 'event_espresso'), |
|
129 | - $this->get_nicename() |
|
130 | - ), |
|
131 | - 'type' => 'string' |
|
132 | - ) |
|
133 | - ); |
|
134 | - } |
|
116 | + public function getSchemaProperties() |
|
117 | + { |
|
118 | + return array( |
|
119 | + 'raw' => array( |
|
120 | + 'description' => sprintf( |
|
121 | + __('%s - the content as it exists in the database.', 'event_espresso'), |
|
122 | + $this->get_nicename() |
|
123 | + ), |
|
124 | + 'type' => 'string' |
|
125 | + ), |
|
126 | + 'rendered' => array( |
|
127 | + 'description' => sprintf( |
|
128 | + __('%s - the content rendered for display.', 'event_espresso'), |
|
129 | + $this->get_nicename() |
|
130 | + ), |
|
131 | + 'type' => 'string' |
|
132 | + ) |
|
133 | + ); |
|
134 | + } |
|
135 | 135 | } |