概要

API のレスポンスは、私たちが求めるすべてのデータを保持しています。リクエストに誤りがあった場合、レスポンスのデータはエラーが発生したことを知らせるべきです。WordPress REST API のレスポンスは、要求したデータまたはエラーメッセージを返す必要があります。API のレスポンスは、API の三つのインフラストラクチャクラスの一つである WP_REST_Response クラスによって処理されます。

WP_REST_Response

WP_REST_Response は WordPress の WP_HTTP_Response クラスを拡張し、レスポンスヘッダー、レスポンスステータスコード、およびレスポンスデータへのアクセスを可能にします。

  1. // The following code will not do anything and just serves as a demonstration.
  2. $response = new WP_REST_Response( 'This is some data' );
  3. // To get the response data we can use this method. It should equal 'This is some data'.
  4. $our_data = $response->get_data();
  5. // To access the HTTP status code we can use this method. The most common status code is probably 200, which means OK!
  6. $our_status = $response->get_status();
  7. // To access the HTTP response headers we can use this method.
  8. $our_headers = $response->get_headers();

上記は非常に簡単で、レスポンスから必要なものを取得する方法を示しています。WP_REST_Response はさらに進んでいます。レスポンスの一致したルートにアクセスして、レスポンスがどのエンドポイントから来たのかを追跡することができます $response->get_matched_route()$response->get_matched_handler() は、私たちのレスポンスを生成したエンドポイントに登録されたオプションを返します。これらは、API のログ記録などに役立つ可能性があります。レスポンスクラスは、エラーハンドリングにも役立ちます。

エラーハンドリング

リクエストに何か重大な問題が発生した場合、私たちはエンドポイントコールバック内で WP_Error オブジェクトを返し、何が間違っていたのかを説明することができます。

  1. // Register our mock batch endpoint.
  2. function prefix_register_broken_route() {
  3. register_rest_route( 'my-namespace/v1', '/broken', array(
  4. // Supported methods for this endpoint. WP_REST_Server::READABLE translates to GET.
  5. 'methods' => WP_REST_Server::READABLE,
  6. // Register the callback for the endpoint.
  7. 'callback' => 'prefix_get_an_error',
  8. ) );
  9. }
  10. add_action( 'rest_api_init', 'prefix_register_broken_route' );
  11. /**
  12. * Our registered endpoint callback. Notice how we are passing in $request as an argument.
  13. * By default, the WP_REST_Server will pass in the matched request object to our callback.
  14. *
  15. * @param WP_REST_Request $request The current matched request object.
  16. */
  17. function prefix_get_an_error( $request ) {
  18. return new WP_Error( 'oops', esc_html__( 'This endpoint is currently broken, try another endpoint, I promise the API is cool! EEEK!!!!', 'my-textdomain' ), array( 'status' => 400 ) );
  19. }

これは少し馬鹿げた例ですが、いくつかの重要な点に触れています。最も重要なことは、WordPress REST API が自動的に WP_Error オブジェクトを HTTP レスポンスに変換し、あなたのデータを含むことです。WP_Error オブジェクトでステータスコードを設定すると、HTTP レスポンスのステータスコードはその値を取ります。これは、見つからなかったコンテンツのための 404 や、禁止されたアクセスのための 403 など、異なるエラーコードを使用する必要があるときに非常に便利です。私たちがする必要があるのは、エンドポイントコールバックがリクエストを返すことだけで、WP_REST_Server クラスが私たちのために非常に重要なことを多く処理してくれます。

レスポンスクラスは、リンク作成など、他にもクールなことを手伝ってくれます。

リンク作成

もし私たちが投稿とその投稿の最初のコメントを取得したい場合、別のエンドポイントを作成してこのユースケースを処理する必要がありますか?もしそうした場合、さまざまな小さなユースケースを処理するために多くのエンドポイントを追加しなければならず、私たちの API インデックスは非常に早く膨れ上がってしまいます。レスポンスリンク作成は、API が理解できるリソース間の関係を形成する方法を提供します。API は、リソースリンク作成のための HAL として知られる標準を実装しています。投稿とコメントの例を見てみましょう。それぞれのリソースに対してルートを持つ方が良いでしょう。

投稿 ID = 1 とコメント ID = 3 があるとしましょう。コメントは投稿 1 に割り当てられているので、現実的には二つのリソースはルート /my-namespace/v1/posts/1/my-namespace/v1/comments/3 に存在することができます。私たちはレスポンスにリンクを追加して、それらの間の関係を作成します。まずコメントの視点から見てみましょう。

  1. // Register our mock endpoints.
  2. function prefix_register_my_routes() {
  3. register_rest_route( 'my-namespace/v1', '/posts/(?P<id>[\d]+)', array(
  4. // Supported methods for this endpoint. WP_REST_Server::READABLE translates to GET.
  5. 'methods' => WP_REST_Server::READABLE,
  6. // Register the callback for the endpoint.
  7. 'callback' => 'prefix_get_rest_post',
  8. ) );
  9. register_rest_route( 'my-namespace/v1', '/comments', array(
  10. // Supported methods for this endpoint. WP_REST_Server::READABLE translates to GET.
  11. 'methods' => WP_REST_Server::READABLE,
  12. // Register the callback for the endpoint.
  13. 'callback' => 'prefix_get_rest_comments',
  14. // Register the post argument to limit results to a specific post parent.
  15. 'args' => array(
  16. 'post' => array(
  17. 'description' => esc_html__( 'The post ID that the comment is assigned to.', 'my-textdomain' ),
  18. 'type' => 'integer',
  19. 'required' => true,
  20. ),
  21. ),
  22. ) );
  23. register_rest_route( 'my-namespace/v1', '/comments/(?P<id>[\d]+)', array(
  24. // Supported methods for this endpoint. WP_REST_Server::READABLE translates to GET.
  25. 'methods' => WP_REST_Server::READABLE,
  26. // Register the callback for the endpoint.
  27. 'callback' => 'prefix_get_rest_comment',
  28. ) );
  29. }
  30. add_action( 'rest_api_init', 'prefix_register_my_routes' );
  31. // Grab a post.
  32. function prefix_get_rest_post( $request ) {
  33. $id = (int) $request['id'];
  34. $post = get_post( $id );
  35. $response = rest_ensure_response( array( $post ) );
  36. $response->add_links( prefix_prepare_post_links( $post ) );
  37. return $response;
  38. }
  39. // Prepare post links.
  40. function prefix_prepare_post_links( $post ) {
  41. $links = array();
  42. $replies_url = rest_url( 'my-namespace/v1/comments' );
  43. $replies_url = add_query_arg( 'post', $post->ID, $replies_url );
  44. $links['replies'] = array(
  45. 'href' => $replies_url,
  46. 'embeddable' => true,
  47. );
  48. return $links;
  49. }
  50. // Grab a comments.
  51. function prefix_get_rest_comments( $request ) {
  52. if ( ! isset( $request['post'] ) ) {
  53. return new WP_Error( 'rest_bad_request', esc_html__( 'You must specify the post parameter for this request.', 'my-text-domain' ), array( 'status' => 400 ) );
  54. }
  55. $data = array();
  56. $comments = get_comments( array( 'post__in' => $request['post'] ) );
  57. if ( empty( $comments ) ) {
  58. return array();
  59. }
  60. foreach( $comments as $comment ) {
  61. $response = rest_ensure_response( $comment );
  62. $response->add_links( prefix_prepare_comment_links( $comment ) );
  63. $data[] = prefix_prepare_for_collection( $response );
  64. }
  65. $response = rest_ensure_response( $data );
  66. return $response;
  67. }
  68. // Grab a comment.
  69. function prefix_get_rest_comment( $request ) {
  70. $id = (int) $request['id'];
  71. $post = get_comment( $id );
  72. $response = rest_ensure_response( $comment );
  73. $response->add_links( prefix_prepare_comment_links( $comment ) );
  74. return $response;
  75. }
  76. // Prepare comment links.
  77. function prefix_prepare_comment_links( $comment ) {
  78. $links = array();
  79. if ( 0 !== (int) $comment->comment_post_ID ) {
  80. $post = get_post( $comment->comment_post_ID );
  81. if ( ! empty( $post->ID ) ) {
  82. $links['up'] = array(
  83. 'href' => rest_url( 'my-namespace/v1/posts/' . $comment->comment_post_ID ),
  84. 'embeddable' => true,
  85. 'post_type' => $post->post_type,
  86. );
  87. }
  88. }
  89. return $links;
  90. }
  91. /**
  92. * Prepare a response for inserting into a collection of responses.
  93. *
  94. * This is lifted from WP_REST_Controller class in the WP REST API v2 plugin.
  95. *
  96. * @param WP_REST_Response $response Response object.
  97. * @return array Response data, ready for insertion into collection data.
  98. */
  99. function prefix_prepare_for_collection( $response ) {
  100. if ( ! ( $response instanceof WP_REST_Response ) ) {
  101. return $response;
  102. }
  103. $data = (array) $response->get_data();
  104. $server = rest_get_server();
  105. if ( method_exists( $server, 'get_compact_response_links' ) ) {
  106. $links = call_user_func( array( $server, 'get_compact_response_links' ), $response );
  107. } else {
  108. $links = call_user_func( array( $server, 'get_response_links' ), $response );
  109. }
  110. if ( ! empty( $links ) ) {
  111. $data['_links'] = $links;
  112. }
  113. return $data;
  114. }

上記の例のように、私たちはリンクを使用してリソース間の関係を作成しています。投稿にコメントがある場合、私たちのエンドポイントコールバックは、現在の投稿 ID に一致する post パラメータを指定してコメントルートへのリンクを追加します。したがって、そのルートをたどると、その投稿 ID に割り当てられたコメントが得られます。コメントを検索すると、各コメントには投稿を指すリンクが up という形で存在します。up は HAL 仕様を使用したリンクに特別な意味を持ちます。コメントの up リンクをたどると、そのコメントの親である投稿が返されます。リンク作成は非常に素晴らしいですが、さらに良くなります。

WordPress REST API は、埋め込みと呼ばれるものもサポートしています。追加した両方のリンクで、私たちは embeddable => true を指定しました。これにより、リンクされたデータをレスポンスに埋め込むことができます。したがって、コメント 3 とその割り当てられた投稿を取得したい場合、次のリクエストを行うことができます https://ourawesomesite.com/wp-json/my-namespace/v1/comments/3?_embed_embed パラメータは、私たちのリクエストに対して埋め込むことができるすべてのリソースリンクを API に追加するように指示します。埋め込みを使用することは、複数のリソースが一つの HTTP リクエストで処理されるため、パフォーマンスの向上になります。

埋め込みとリンクの賢い使用は、WordPress REST API を非常に柔軟で強力なものにし、WordPress と対話するためのものです。