/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
- /*
- * Copyright (c) 2010-2021 Mark Allen, Norbert Bartels.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
- package com.restfb;
- import static com.restfb.util.StringUtils.isBlank;
- import static com.restfb.util.StringUtils.trimToEmpty;
- import static java.lang.String.format;
- import java.io.IOException;
- import java.util.List;
- /**
- * Specifies how a class that sends {@code HTTP} requests to the Facebook API endpoint must operate.
- *
- * @author <a href="http://restfb.com">Mark Allen</a>
- */
- public interface WebRequestor {
- /**
- * Encapsulates an HTTP response body and status code.
- *
- * @author <a href="http://restfb.com">Mark Allen</a>
- */
- class Response {
- /**
- * HTTP response status code (e.g. 200).
- */
- private final Integer statusCode;
- /**
- * HTTP response body as text.
- */
- private final String body;
- /**
- * Creates a response with the given HTTP status code and response body as text.
- *
- * @param statusCode
- * The HTTP status code of the response.
- * @param body
- * The response body as text.
- */
- public Response(Integer statusCode, String body) {
- this.statusCode = statusCode;
- this.body = trimToEmpty(body);
- }
- /**
- * Gets the HTTP status code.
- *
- * @return The HTTP status code.
- */
- public Integer getStatusCode() {
- return statusCode;
- }
- /**
- * Gets the HTTP response body as text.
- *
- * @return The HTTP response body as text.
- */
- public String getBody() {
- return body;
- }
- /**
- * @see java.lang.Object#toString()
- */
- @Override
- public String toString() {
- if (isBlank(getBody())) {
- return format("HTTP status code %d and an empty response body.", getStatusCode());
- }
- return format("HTTP status code %d and response body: %s", getStatusCode(), getBody());
- }
- }
- /**
- * Given a Facebook API endpoint URL, execute a {@code GET} against it.
- *
- * @param url
- * The URL to make a {@code GET} request for, including URL parameters.
- * @param headerAccessToken
- * access token used in the header. May be {@code null}, if access token is already part of the query string
- * @return HTTP response data.
- * @throws IOException
- * If an error occurs while performing the {@code GET} operation.
- * @since 1.5
- */
- Response executeGet(String url, String headerAccessToken) throws IOException;
- /**
- * Given a Facebook API endpoint URL, execute a {@code GET} against it.
- *
- * @param url
- * The URL to make a {@code GET} request for, including URL parameters.
- * @return HTTP response data.
- * @throws IOException
- * If an error occurs while performing the {@code GET} operation.
- * @since 1.5
- */
- Response executeGet(String url) throws IOException;
- /**
- * Given a Facebook API endpoint URL and parameter string, execute a {@code POST} to the endpoint URL.
- *
- * @param url
- * The URL to {@code POST} to.
- * @param parameters
- * The parameters to be {@code POST}ed.
- * @param headerAccessToken
- * access token used in the header. May be {@code null}, if access token is already part of the query string
- * @return HTTP response data.
- * @throws IOException
- * If an error occurs while performing the {@code POST}.
- */
- Response executePost(String url, String parameters, String headerAccessToken) throws IOException;
- /**
- * Given a Facebook API endpoint URL and parameter string, execute a {@code POST} to the endpoint URL.
- *
- * @param url
- * The URL to {@code POST} to.
- * @param parameters
- * The parameters to be {@code POST}ed.
- * @param binaryAttachments
- * Optional binary attachments to be included in the {@code POST} body (e.g. photos and videos).
- * @param headerAccessToken
- * access token used in the header. May be {@code null}, if access token is already part of the query string
- * @return HTTP response data.
- * @throws IOException
- * If an error occurs while performing the {@code POST}.
- */
- Response executePost(String url, String parameters, List<BinaryAttachment> binaryAttachments, String headerAccessToken) throws IOException;
- /**
- * Given a Facebook API endpoint URL and parameter string, execute a {@code DELETE} to the endpoint URL.
- *
- * @param url
- * The URL to submit the {@code DELETE} to.
- * @param headerAccessToken
- * access token used in the header. May be {@code null}, if access token is already part of the query string
- * @return HTTP response data.
- * @throws IOException
- * If an error occurs while performing the {@code DELETE}.
- */
- Response executeDelete(String url, String headerAccessToken) throws IOException;
- /**
- * Provides access to the facebook header information.
- *
- * The fields <code>x-fb-rev</code>, <code>x-fb-trace-id</code> and <code>x-fb-debug</code> are checked and returned
- * in a single container of the type {@link DebugHeaderInfo}
- *
- * @return container with the explained facebook debug header information
- */
- DebugHeaderInfo getDebugHeaderInfo();
- }