Add REST API with endpoints for primary post types

This commit is contained in:
Brian Miyaji
2016-04-11 00:04:40 +10:00
parent 5be69ecb24
commit 2699e70915
5 changed files with 741 additions and 345 deletions

View File

@@ -0,0 +1,675 @@
<?php
/**
* REST API Class
*
* The SportsPress REST API class handles all API-related hooks.
*
* @class SP_REST_API
* @version 1.9.19
* @package SportsPress/Classes
* @category Class
* @package SportsPress/API
* @author ThemeBoy
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
if ( ! class_exists( 'SP_REST_API' ) ) :
/**
* SP_REST_API Class
*/
class SP_REST_API {
/**
* Constructor.
*/
public function __construct() {
// Create REST routes
add_action( 'rest_api_init', array( $this, 'create_routes' ) );
add_action( 'rest_api_init', array( $this, 'register_fields' ), 0 );
// Add extra league arguments
add_filter( 'sportspress_register_taxonomy_league', array( $this, 'add_args' ), 11 );
add_filter( 'sportspress_register_taxonomy_league', array( $this, 'add_league_args' ), 11 );
// Add extra season arguments
add_filter( 'sportspress_register_taxonomy_season', array( $this, 'add_args' ), 11 );
add_filter( 'sportspress_register_taxonomy_season', array( $this, 'add_season_args' ), 11 );
// Add extra venue arguments
add_filter( 'sportspress_register_taxonomy_venue', array( $this, 'add_args' ), 11 );
add_filter( 'sportspress_register_taxonomy_venue', array( $this, 'add_venue_args' ), 11 );
// Add extra position arguments
add_filter( 'sportspress_register_taxonomy_position', array( $this, 'add_args' ), 11 );
add_filter( 'sportspress_register_taxonomy_position', array( $this, 'add_position_args' ), 11 );
// Add extra role arguments
add_filter( 'sportspress_register_taxonomy_role', array( $this, 'add_args' ), 11 );
add_filter( 'sportspress_register_taxonomy_role', array( $this, 'add_role_args' ), 11 );
// Add extra event arguments
add_filter( 'sportspress_register_post_type_event', array( $this, 'add_args' ), 11 );
add_filter( 'sportspress_register_post_type_event', array( $this, 'add_event_args' ), 11 );
// Add extra team arguments
add_filter( 'sportspress_register_post_type_team', array( $this, 'add_args' ), 11 );
add_filter( 'sportspress_register_post_type_team', array( $this, 'add_team_args' ), 11 );
// Add extra player arguments
add_filter( 'sportspress_register_post_type_player', array( $this, 'add_args' ), 11 );
add_filter( 'sportspress_register_post_type_player', array( $this, 'add_player_args' ), 11 );
// Add extra staff arguments
add_filter( 'sportspress_register_post_type_staff', array( $this, 'add_args' ), 11 );
add_filter( 'sportspress_register_post_type_staff', array( $this, 'add_staff_args' ), 11 );
}
/**
* Create REST routes.
*/
public static function create_routes() {
if ( ! class_exists( 'SP_REST_Posts_Controller' ) ) {
require_once dirname( __FILE__ ) . '/class-sp-rest-posts-controller.php';
}
$controller = new SP_REST_Posts_Controller( 'sp_event' );
$controller->register_routes();
$controller = new SP_REST_Posts_Controller( 'sp_team' );
$controller->register_routes();
$controller = new SP_REST_Posts_Controller( 'sp_player' );
$controller->register_routes();
$controller = new SP_REST_Posts_Controller( 'sp_staff' );
$controller->register_routes();
}
/**
* Register REST fields.
*/
public static function register_fields() {
register_rest_field( 'sp_event',
'teams',
array(
'get_callback' => 'SP_REST_API::get_post_meta_recursive',
'update_callback' => 'SP_REST_API::update_post_meta_recursive',
'schema' => array(
'description' => __( 'Teams', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_event',
'main_results',
array(
'get_callback' => 'SP_REST_API::get_post_data',
'schema' => array(
'description' => __( 'Main Results', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_event',
'outcome',
array(
'get_callback' => 'SP_REST_API::get_post_data',
'schema' => array(
'description' => __( 'Outcome', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_event',
'winner',
array(
'get_callback' => 'SP_REST_API::get_post_data',
'schema' => array(
'description' => __( 'Winner', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_event',
'players',
array(
'get_callback' => 'SP_REST_API::get_post_meta_recursive',
'update_callback' => 'SP_REST_API::update_post_meta_recursive',
'schema' => array(
'description' => __( 'Players', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_event',
'staff',
array(
'get_callback' => 'SP_REST_API::get_post_meta_recursive',
'update_callback' => 'SP_REST_API::update_post_meta_recursive',
'schema' => array(
'description' => __( 'Staff', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_event',
'results',
array(
'get_callback' => 'SP_REST_API::get_post_data',
'update_callback' => 'SP_REST_API::update_post_meta',
'schema' => array(
'description' => __( 'Results', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_event',
'performance',
array(
'get_callback' => 'SP_REST_API::get_post_data',
'update_callback' => 'SP_REST_API::update_post_meta',
'schema' => array(
'description' => __( 'Box Score', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_team',
'staff',
array(
'get_callback' => 'SP_REST_API::get_post_meta_recursive',
'update_callback' => 'SP_REST_API::update_post_meta_recursive',
'schema' => array(
'description' => __( 'Staff', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_team',
'tables',
array(
'get_callback' => 'SP_REST_API::get_post_meta_recursive',
'update_callback' => 'SP_REST_API::update_post_meta_recursive',
'schema' => array(
'description' => __( 'League Tables', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_team',
'lists',
array(
'get_callback' => 'SP_REST_API::get_post_meta_recursive',
'update_callback' => 'SP_REST_API::update_post_meta_recursive',
'schema' => array(
'description' => __( 'Player Lists', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_team',
'events',
array(
'get_callback' => 'SP_REST_API::get_post_ids_with_meta',
'schema' => array(
'description' => __( 'Events', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_team',
'abbreviation',
array(
'get_callback' => 'SP_REST_API::get_post_meta',
'update_callback' => 'SP_REST_API::update_post_meta',
'schema' => array(
'description' => __( 'Abbreviation', 'sportspress' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
),
)
);
register_rest_field( 'sp_team',
'url',
array(
'get_callback' => 'SP_REST_API::get_post_meta',
'update_callback' => 'SP_REST_API::update_post_meta',
'schema' => array(
'description' => __( 'Site URL', 'sportspress' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
),
)
);
register_rest_field( 'sp_player',
'teams',
array(
'get_callback' => 'SP_REST_API::get_post_meta_recursive',
'schema' => array(
'description' => __( 'Teams', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_player',
'current_teams',
array(
'get_callback' => 'SP_REST_API::get_post_meta_recursive',
'schema' => array(
'description' => __( 'Current Teams', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_player',
'past_teams',
array(
'get_callback' => 'SP_REST_API::get_post_meta_recursive',
'schema' => array(
'description' => __( 'Past Teams', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_player',
'nationalities',
array(
'get_callback' => 'SP_REST_API::get_post_data',
'schema' => array(
'description' => __( 'Nationalities', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_player',
'metrics',
array(
'get_callback' => 'SP_REST_API::get_post_data',
'update_callback' => 'SP_REST_API::update_post_meta',
'schema' => array(
'description' => __( 'Metrics', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field( 'sp_player',
'statistics',
array(
'get_callback' => 'SP_REST_API::get_post_data',
'update_callback' => 'SP_REST_API::update_post_meta',
'schema' => array(
'description' => __( 'Statistics', 'sportspress' ),
'type' => 'array',
'context' => array( 'view', 'edit', 'embed' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
}
/**
* Get the value of a single SportsPress meta field.
*
* @param array $object Details of current post.
* @param string $field_name Name of field.
* @param WP_REST_Request $request Current request
*
* @return mixed
*/
public static function get_post_meta( $object, $field_name, $request ) {
$meta = get_post_meta( $object['id'], self::meta_key( $field_name ), true );
if ( ctype_digit( $value ) ) {
$value = intval( $value );
}
return $meta;
}
/**
* Handler for updating custom field data.
*
* @param mixed $value The value of the field
* @param object $object The object from the response
* @param string $field_name Name of field
*
* @return bool|int
*/
public static function update_post_meta( $value, $object, $field_name ) {
if ( ! $value || ! is_string( $value ) ) {
return;
}
return update_post_meta( $object->ID, self::meta_key( $field_name ), strip_tags( $value ) );
}
/**
* Get an array of SportsPress meta field values.
*
* @param array $object Details of current post.
* @param string $field_name Name of field.
* @param WP_REST_Request $request Current request
*
* @return mixed
*/
public static function get_post_meta_recursive( $object, $field_name, $request ) {
$meta = get_post_meta( $object['id'], self::meta_key( $field_name ), false );
return array_map( 'absint', $meta );
}
/**
* Handler for updating multiple custom field values.
*
* @param array $values The values of the field
* @param object $object The object from the response
* @param string $field_name Name of field
*
* @return bool|int
*/
public static function update_post_meta_recursive( $values, $object, $field_name ) {
delete_post_meta( $object->ID, self::meta_key( $field_name ) );
$response = true;
foreach ( $values as $value ) {
$response = add_post_meta( $object->ID, self::meta_key( $field_name ), $value );
}
return $response;
}
/**
* Get an array of SportsPress meta field values and split into separate arrays based on placeholder zeroes.
*
* @param array $object Details of current post.
* @param string $field_name Name of field.
* @param WP_REST_Request $request Current request
*
* @return mixed
*/
public static function get_post_meta_recursive_split( $object, $field_name, $request ) {
$array = self::get_post_meta_recursive( $object, $field_name, $request );
$meta = array();
$i = 0;
foreach ( $array as $value ) {
if ( $value ) {
$meta[ $i ][] = $value;
} else {
$i ++;
}
}
return $meta;
}
/**
* Get a list of posts with a meta value of the given field name.
*
* @param array $object Details of current post.
* @param string $field_name Name of field.
* @param WP_REST_Request $request Current request
*
* @return mixed
*/
public static function get_post_ids_with_meta( $object, $field_name, $request ) {
$meta_key = self::meta_key( $field_name );
$query_args = array(
'post_type' => $meta_key,
'posts_per_page' => 2000,
'meta_query' => array(
'key' => $object->type,
'value' => $object->id,
'compare' => 'IN',
),
);
if ( 'sp_event' === $meta_key ) {
$query_args['orderby'] = 'date';
$query_args['order'] = 'DESC';
$query_args['post_status'] = array( 'publish', 'future' );
} else {
$query_args['orderby'] = 'title';
$query_args['order'] = 'ASC';
$query_args['post_status'] = 'publish';
}
$posts_query = new WP_Query();
$query_result = $posts_query->query( $query_args );
return wp_list_pluck( $query_result, 'ID' );
}
/**
* Get custom SportsPress data based on post type and field name.
*
* @param array $object Details of current post.
* @param string $field_name Name of field.
* @param WP_REST_Request $request Current request
*
* @return mixed
*/
public static function get_post_data( $object, $field_name, $request ) {
$type = $object['type'];
$post = new $type( $object['id'] );
return $post->$field_name();
}
/**
* Get meta key of a field
*/
public static function meta_key( $field_name ) {
$names = array(
'current_teams' => 'sp_current_team',
'events' => 'sp_event',
'lists' => 'sp_list',
'past_teams' => 'sp_past_team',
'performance' => 'sp_players',
'players' => 'sp_player',
'tables' => 'sp_table',
'teams' => 'sp_team',
);
if ( array_key_exists( $field_name, $names ) ) {
$field_name = $names[ $field_name ];
} else {
$field_name = 'sp_' . $field_name;
}
return $field_name;
}
/**
* Convert string to integer if it contains only digits
*/
public static function string_to_int( &$value ) {
if ( ctype_digit( $value ) ) {
$value = intval( $value );
}
}
/**
* Add extra arguments
*/
public static function add_args( $args = array() ) {
$args['show_in_rest'] = true;
$args['rest_controller_class'] = 'SP_REST_Posts_Controller';
return $args;
}
/**
* Add extra league arguments
*/
public static function add_league_args( $args = array() ) {
$args['rest_base'] = 'leagues';
return $args;
}
/**
* Add extra season arguments
*/
public static function add_season_args( $args = array() ) {
$args['rest_base'] = 'seasons';
return $args;
}
/**
* Add extra venue arguments
*/
public static function add_venue_args( $args = array() ) {
$args['rest_base'] = 'venues';
return $args;
}
/**
* Add extra position arguments
*/
public static function add_position_args( $args = array() ) {
$args['rest_base'] = 'positions';
return $args;
}
/**
* Add extra role arguments
*/
public static function add_role_args( $args = array() ) {
$args['rest_base'] = 'roles';
return $args;
}
/**
* Add extra event arguments
*/
public static function add_event_args( $args = array() ) {
$args['rest_base'] = 'events';
return $args;
}
/**
* Add extra team arguments
*/
public static function add_team_args( $args = array() ) {
$args['rest_base'] = 'teams';
return $args;
}
/**
* Add extra player arguments
*/
public static function add_player_args( $args = array() ) {
$args['rest_base'] = 'players';
return $args;
}
/**
* Add extra staff arguments
*/
public static function add_staff_args( $args = array() ) {
$args['rest_base'] = 'staff';
return $args;
}
}
endif;
return new SP_REST_API();

View File

@@ -0,0 +1,64 @@
<?php
class SP_REST_Posts_Controller extends WP_REST_Posts_Controller {
protected $post_type;
public function __construct( $post_type ) {
$this->post_type = $post_type;
$this->namespace = 'sportspress/v1';
$obj = get_post_type_object( $post_type );
$this->rest_base = ! empty( $obj->rest_base ) ? $obj->rest_base : $obj->name;
}
/**
* Register the routes for the objects of the controller.
*/
public function register_routes() {
register_rest_route( $this->namespace, '/' . $this->rest_base, array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_items' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
'args' => $this->get_collection_params(),
),
array(
'methods' => WP_REST_Server::CREATABLE,
'callback' => array( $this, 'create_item' ),
'permission_callback' => array( $this, 'create_item_permissions_check' ),
'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ),
),
'schema' => array( $this, 'get_public_item_schema' ),
) );
register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<id>[\d]+)', array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_item' ),
'permission_callback' => array( $this, 'get_item_permissions_check' ),
'args' => array(
'context' => $this->get_context_param( array( 'default' => 'view' ) ),
),
),
array(
'methods' => WP_REST_Server::EDITABLE,
'callback' => array( $this, 'update_item' ),
'permission_callback' => array( $this, 'update_item_permissions_check' ),
'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
),
array(
'methods' => WP_REST_Server::DELETABLE,
'callback' => array( $this, 'delete_item' ),
'permission_callback' => array( $this, 'delete_item_permissions_check' ),
'args' => array(
'force' => array(
'default' => false,
'description' => __( 'Whether to bypass trash and force deletion.' ),
),
),
),
'schema' => array( $this, 'get_public_item_schema' ),
) );
}
}

View File

@@ -1,301 +0,0 @@
<?php
class SP_REST_Teams_Controller extends WP_REST_Posts_Controller {
/**
* @var string
*/
public $namespace = 'sportspress/v2';
/**
* @var string
*/
public $route = 'teams';
public function __construct() {
add_action( 'rest_api_init', array( $this, 'register_routes' ) );
}
/**
* Register the routes for the objects of the controller.
*/
public function register_routes() {
register_rest_route( $this->namespace, '/' . $this->route, array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_items' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
'args' => array(),
),
/*
array(
'methods' => WP_REST_Server::CREATABLE,
'callback' => array( $this, 'create_item' ),
'permission_callback' => array( $this, 'create_item_permissions_check' ),
'args' => $this->get_endpoint_args_for_item_schema( true ),
),
*/
) );
register_rest_route( $this->namespace, '/' . $this->route . '/(?P<id>[\d]+)', array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_item' ),
'permission_callback' => array( $this, 'get_item_permissions_check' ),
'args' => array(
'context' => array(
'default' => 'view',
),
),
),
/*
array(
'methods' => WP_REST_Server::EDITABLE,
'callback' => array( $this, 'update_item' ),
'permission_callback' => array( $this, 'update_item_permissions_check' ),
'args' => $this->get_endpoint_args_for_item_schema( false ),
),
array(
'methods' => WP_REST_Server::DELETABLE,
'callback' => array( $this, 'delete_item' ),
'permission_callback' => array( $this, 'delete_item_permissions_check' ),
'args' => array(
'force' => array(
'default' => false,
),
),
),
*/
) );
register_rest_route( $this->namespace, '/' . $this->route . '/schema', array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_public_item_schema' ),
) );
}
/**
* Get a collection of items
*
* @param WP_REST_Request $request Full data about the request.
* @return WP_Error|WP_REST_Response
*/
public function get_items( $request ) {
$args = array(
'post_type' => 'sp_team',
'posts_per_page' => 500,
);
$items = get_posts( $args );
$data = array();
foreach( $items as $item ) {
$itemdata = $this->prepare_item_for_response( $item, $request );
$data[] = $this->prepare_response_for_collection( $itemdata );
}
return new WP_REST_Response( $data, 200 );
}
/**
* Get one item from the collection
*
* @param WP_REST_Request $request Full data about the request.
* @return WP_Error|WP_REST_Response
*/
public function get_item( $request ) {
//get parameters from request
$params = $request->get_params();
$item = get_post( $params['id'] );//do a query, call another class, etc
$data = $this->prepare_item_for_response( $item, $request );
//return a response or error based on some conditional
if ( 1 == 1 ) {
return new WP_REST_Response( $data, 200 );
}else{
return new WP_Error( 'code', __( 'message', 'text-domain' ) );
}
}
/**
* Create one item from the collection
*
* @param WP_REST_Request $request Full data about the request.
* @return WP_Error|WP_REST_Request
*/
public function create_item( $request ) {
$item = $this->prepare_item_for_database( $request );
if ( function_exists( 'slug_some_function_to_create_item') ) {
$data = slug_some_function_to_create_item( $item );
if ( is_array( $data ) ) {
return new WP_REST_Response( $data, 200 );
}
}
return new WP_Error( 'cant-create', __( 'message', 'text-domain'), array( 'status' => 500 ) );
}
/**
* Update one item from the collection
*
* @param WP_REST_Request $request Full data about the request.
* @return WP_Error|WP_REST_Request
*/
public function update_item( $request ) {
$item = $this->prepare_item_for_database( $request );
if ( function_exists( 'slug_some_function_to_update_item') ) {
$data = slug_some_function_to_update_item( $item );
if ( is_array( $data ) ) {
return new WP_REST_Response( $data, 200 );
}
}
return new WP_Error( 'cant-update', __( 'message', 'text-domain'), array( 'status' => 500 ) );
}
/**
* Delete one item from the collection
*
* @param WP_REST_Request $request Full data about the request.
* @return WP_Error|WP_REST_Request
*/
public function delete_item( $request ) {
$item = $this->prepare_item_for_database( $request );
if ( function_exists( 'slug_some_function_to_delete_item') ) {
$deleted = slug_some_function_to_delete_item( $item );
if ( $deleted ) {
return new WP_REST_Response( true, 200 );
}
}
return new WP_Error( 'cant-delete', __( 'message', 'text-domain'), array( 'status' => 500 ) );
}
/**
* Check if a given request has access to get items
*
* @param WP_REST_Request $request Full data about the request.
* @return WP_Error|bool
*/
public function get_items_permissions_check( $request ) {
return true;
//return current_user_can( 'edit_something' );
}
/**
* Check if a given request has access to get a specific item
*
* @param WP_REST_Request $request Full data about the request.
* @return WP_Error|bool
*/
public function get_item_permissions_check( $request ) {
return $this->get_items_permissions_check( $request );
}
/**
* Check if a given request has access to create items
*
* @param WP_REST_Request $request Full data about the request.
* @return WP_Error|bool
*/
public function create_item_permissions_check( $request ) {
return current_user_can( 'edit_something' );
}
/**
* Check if a given request has access to update a specific item
*
* @param WP_REST_Request $request Full data about the request.
* @return WP_Error|bool
*/
public function update_item_permissions_check( $request ) {
return $this->create_item_permissions_check( $request );
}
/**
* Check if a given request has access to delete a specific item
*
* @param WP_REST_Request $request Full data about the request.
* @return WP_Error|bool
*/
public function delete_item_permissions_check( $request ) {
return $this->create_item_permissions_check( $request );
}
/**
* Prepare the item for create or update operation
*
* @param WP_REST_Request $request Request object
* @return WP_Error|object $prepared_item
*/
protected function prepare_item_for_database( $request ) {
return array();
}
/**
* Prepare the item for the REST response
*
* @param mixed $item WordPress representation of the item.
* @param WP_REST_Request $request Request object.
* @return mixed
*/
public function prepare_item_for_response( $post, $request ) {
$data = array(
'id' => $post->ID,
'guid' => array(
'raw' => $post->guid,
'rendered' => apply_filters( 'get_the_guid', $post->guid ),
),
'slug' => $post->post_name,
'link' => get_permalink( $post->ID ),
'title' => array(
'raw' => $post->post_title,
'rendered' => get_the_title( $post->ID ),
),
'content' => array(
'raw' => $post->post_content,
'rendered' => apply_filters( 'the_content', $post->post_content ),
),
'featured_media' => (int) get_post_thumbnail_id( $post->ID ),
'abbreviation' => sp_get_abbreviation( $post->ID ),
'leagues' => sp_get_leagues( $post->ID ),
'seasons' => sp_get_seasons( $post->ID ),
'venues' => sp_get_venues( $post->ID ),
);
return $data;
}
/**
* Get the query params for collections
*
* @return array
*/
public function get_collection_params() {
return array(
'page' => array(
'description' => 'Current page of the collection.',
'type' => 'integer',
'default' => 1,
'sanitize_callback' => 'absint',
),
'per_page' => array(
'description' => 'Maximum number of items to be returned in result set.',
'type' => 'integer',
'default' => 10,
'sanitize_callback' => 'absint',
),
'search' => array(
'description' => 'Limit results to those matching a string.',
'type' => 'string',
'sanitize_callback' => 'sanitize_text_field',
),
);
}
}
new SP_REST_Teams_Controller();

View File

@@ -1,42 +0,0 @@
<?php
/**
* REST API Class
*
* The SportsPress REST API class handles all API-related hooks.
*
* @class SP_REST_API
* @version 1.9.19
* @package SportsPress/Classes
* @category Class
* @package SportsPress/API
* @author ThemeBoy
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
if ( ! class_exists( 'SP_REST_API' ) ) :
/**
* SP_REST_API Class
*/
class SP_REST_API {
/**
* Constructor.
*/
public function __construct() {
// Include required files
$this->includes();
}
/**
* Include required files.
*/
private function includes() {
require_once dirname( __FILE__ ) . '/api/class-sp-rest-teams-controller.php';
}
}
endif;
return new SP_REST_API();

View File

@@ -241,10 +241,10 @@ final class SportsPress {
include_once( 'includes/class-sp-wpml.php' );
// REST API
//include_once( 'includes/class-sp-rest-api.php' );
include_once( 'includes/api/class-sp-rest-api.php' );
// TGMPA
require_once dirname( __FILE__ ) . '/includes/libraries/class-tgm-plugin-activation.php';
include_once( 'includes/libraries/class-tgm-plugin-activation.php' );
}
/**