/src/main/java/com/restfb/WebRequestor.java

http://github.com/revetkn/restfb · Java · 176 lines · 35 code · 14 blank · 127 comment · 1 complexity · 952eeb567f41d60f347ee4cea613c4c9 MD5 · raw file

  1. /*
  2. * Copyright (c) 2010-2021 Mark Allen, Norbert Bartels.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to deal
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. * THE SOFTWARE.
  21. */
  22. package com.restfb;
  23. import static com.restfb.util.StringUtils.isBlank;
  24. import static com.restfb.util.StringUtils.trimToEmpty;
  25. import static java.lang.String.format;
  26. import java.io.IOException;
  27. import java.util.List;
  28. /**
  29. * Specifies how a class that sends {@code HTTP} requests to the Facebook API endpoint must operate.
  30. *
  31. * @author <a href="http://restfb.com">Mark Allen</a>
  32. */
  33. public interface WebRequestor {
  34. /**
  35. * Encapsulates an HTTP response body and status code.
  36. *
  37. * @author <a href="http://restfb.com">Mark Allen</a>
  38. */
  39. class Response {
  40. /**
  41. * HTTP response status code (e.g. 200).
  42. */
  43. private final Integer statusCode;
  44. /**
  45. * HTTP response body as text.
  46. */
  47. private final String body;
  48. /**
  49. * Creates a response with the given HTTP status code and response body as text.
  50. *
  51. * @param statusCode
  52. * The HTTP status code of the response.
  53. * @param body
  54. * The response body as text.
  55. */
  56. public Response(Integer statusCode, String body) {
  57. this.statusCode = statusCode;
  58. this.body = trimToEmpty(body);
  59. }
  60. /**
  61. * Gets the HTTP status code.
  62. *
  63. * @return The HTTP status code.
  64. */
  65. public Integer getStatusCode() {
  66. return statusCode;
  67. }
  68. /**
  69. * Gets the HTTP response body as text.
  70. *
  71. * @return The HTTP response body as text.
  72. */
  73. public String getBody() {
  74. return body;
  75. }
  76. /**
  77. * @see java.lang.Object#toString()
  78. */
  79. @Override
  80. public String toString() {
  81. if (isBlank(getBody())) {
  82. return format("HTTP status code %d and an empty response body.", getStatusCode());
  83. }
  84. return format("HTTP status code %d and response body: %s", getStatusCode(), getBody());
  85. }
  86. }
  87. /**
  88. * Given a Facebook API endpoint URL, execute a {@code GET} against it.
  89. *
  90. * @param url
  91. * The URL to make a {@code GET} request for, including URL parameters.
  92. * @param headerAccessToken
  93. * access token used in the header. May be {@code null}, if access token is already part of the query string
  94. * @return HTTP response data.
  95. * @throws IOException
  96. * If an error occurs while performing the {@code GET} operation.
  97. * @since 1.5
  98. */
  99. Response executeGet(String url, String headerAccessToken) throws IOException;
  100. /**
  101. * Given a Facebook API endpoint URL, execute a {@code GET} against it.
  102. *
  103. * @param url
  104. * The URL to make a {@code GET} request for, including URL parameters.
  105. * @return HTTP response data.
  106. * @throws IOException
  107. * If an error occurs while performing the {@code GET} operation.
  108. * @since 1.5
  109. */
  110. Response executeGet(String url) throws IOException;
  111. /**
  112. * Given a Facebook API endpoint URL and parameter string, execute a {@code POST} to the endpoint URL.
  113. *
  114. * @param url
  115. * The URL to {@code POST} to.
  116. * @param parameters
  117. * The parameters to be {@code POST}ed.
  118. * @param headerAccessToken
  119. * access token used in the header. May be {@code null}, if access token is already part of the query string
  120. * @return HTTP response data.
  121. * @throws IOException
  122. * If an error occurs while performing the {@code POST}.
  123. */
  124. Response executePost(String url, String parameters, String headerAccessToken) throws IOException;
  125. /**
  126. * Given a Facebook API endpoint URL and parameter string, execute a {@code POST} to the endpoint URL.
  127. *
  128. * @param url
  129. * The URL to {@code POST} to.
  130. * @param parameters
  131. * The parameters to be {@code POST}ed.
  132. * @param binaryAttachments
  133. * Optional binary attachments to be included in the {@code POST} body (e.g. photos and videos).
  134. * @param headerAccessToken
  135. * access token used in the header. May be {@code null}, if access token is already part of the query string
  136. * @return HTTP response data.
  137. * @throws IOException
  138. * If an error occurs while performing the {@code POST}.
  139. */
  140. Response executePost(String url, String parameters, List<BinaryAttachment> binaryAttachments, String headerAccessToken) throws IOException;
  141. /**
  142. * Given a Facebook API endpoint URL and parameter string, execute a {@code DELETE} to the endpoint URL.
  143. *
  144. * @param url
  145. * The URL to submit the {@code DELETE} to.
  146. * @param headerAccessToken
  147. * access token used in the header. May be {@code null}, if access token is already part of the query string
  148. * @return HTTP response data.
  149. * @throws IOException
  150. * If an error occurs while performing the {@code DELETE}.
  151. */
  152. Response executeDelete(String url, String headerAccessToken) throws IOException;
  153. /**
  154. * Provides access to the facebook header information.
  155. *
  156. * The fields <code>x-fb-rev</code>, <code>x-fb-trace-id</code> and <code>x-fb-debug</code> are checked and returned
  157. * in a single container of the type {@link DebugHeaderInfo}
  158. *
  159. * @return container with the explained facebook debug header information
  160. */
  161. DebugHeaderInfo getDebugHeaderInfo();
  162. }