wordpress/php-fpm/wordpress_files/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomy-endpoint.php

60 lines
1.8 KiB
PHP
Raw Normal View History

2020-05-22 03:40:23 +02:00
<?php
new WPCOM_JSON_API_Get_Taxonomy_Endpoint( array(
'description' => 'Get information about a single category.',
'group' => 'taxonomy',
'stat' => 'categories:1',
'method' => 'GET',
'path' => '/sites/%s/categories/slug:%s',
'path_labels' => array(
'$site' => '(int|string) Site ID or domain',
'$category' => '(string) The category slug'
),
'example_request' => 'https://public-api.wordpress.com/rest/v1/sites/en.blog.wordpress.com/categories/slug:community'
) );
new WPCOM_JSON_API_Get_Taxonomy_Endpoint( array(
'description' => 'Get information about a single tag.',
'group' => 'taxonomy',
'stat' => 'tags:1',
'method' => 'GET',
'path' => '/sites/%s/tags/slug:%s',
'path_labels' => array(
'$site' => '(int|string) Site ID or domain',
'$tag' => '(string) The tag slug'
),
'example_request' => 'https://public-api.wordpress.com/rest/v1/sites/en.blog.wordpress.com/tags/slug:wordpresscom'
) );
class WPCOM_JSON_API_Get_Taxonomy_Endpoint extends WPCOM_JSON_API_Taxonomy_Endpoint {
// /sites/%s/tags/slug:%s -> $blog_id, $tag_id
// /sites/%s/categories/slug:%s -> $blog_id, $tag_id
function callback( $path = '', $blog_id = 0, $taxonomy_id = 0 ) {
$blog_id = $this->api->switch_to_blog_and_validate_user( $this->api->get_blog_id( $blog_id ) );
if ( is_wp_error( $blog_id ) ) {
return $blog_id;
}
$args = $this->query_args();
if ( preg_match( '#/tags/#i', $path ) ) {
$taxonomy_type = "post_tag";
} else {
$taxonomy_type = "category";
}
$return = $this->get_taxonomy( $taxonomy_id, $taxonomy_type, $args['context'] );
if ( !$return || is_wp_error( $return ) ) {
return $return;
}
/** This action is documented in json-endpoints/class.wpcom-json-api-site-settings-endpoint.php */
do_action( 'wpcom_json_api_objects', 'taxonomies' );
return $return;
}
}