All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nimbusds.oauth2.sdk.http.HTTPResponse Maven / Gradle / Ivy

Go to download

OAuth 2.0 SDK with OpenID Connection extensions for developing client and server applications.

There is a newer version: 11.19.1
Show newest version
/*
 * oauth2-oidc-sdk
 *
 * Copyright 2012-2016, Connect2id Ltd and contributors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use
 * this file except in compliance with the License. You may obtain a copy of the
 * License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed
 * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 */

package com.nimbusds.oauth2.sdk.http;


import com.nimbusds.jwt.JWT;
import com.nimbusds.oauth2.sdk.ParseException;
import com.nimbusds.openid.connect.sdk.Nonce;
import net.jcip.annotations.ThreadSafe;
import net.minidev.json.JSONArray;
import net.minidev.json.JSONObject;

import java.net.URI;
import java.net.URISyntaxException;
import java.util.Arrays;


/**
 * HTTP response with support for the parameters required to construct an 
 * {@link com.nimbusds.oauth2.sdk.Response OAuth 2.0 response message}.
 *
 * 

Provided HTTP status code constants: * *

    *
  • {@link #SC_OK HTTP 200 OK} *
  • {@link #SC_CREATED HTTP 201 Created} *
  • {@link #SC_FOUND HTTP 302 Redirect} *
  • {@link #SC_BAD_REQUEST HTTP 400 Bad request} *
  • {@link #SC_UNAUTHORIZED HTTP 401 Unauthorized} *
  • {@link #SC_FORBIDDEN HTTP 403 Forbidden} *
  • {@link #SC_SERVER_ERROR HTTP 500 Server error} *
* *

Supported response headers: * *

    *
  • Location *
  • Content-Type *
  • Cache-Control *
  • Pragma *
  • Www-Authenticate *
  • DPoP-Nonce *
  • Etc. *
*/ @ThreadSafe public class HTTPResponse extends HTTPMessage implements ReadOnlyHTTPResponse { /** * HTTP status code (200) indicating the request succeeded. */ public static final int SC_OK = 200; /** * HTTP status code (201) indicating the request succeeded with a new * resource being created. */ public static final int SC_CREATED = 201; /** * HTTP status code (302) indicating that the resource resides * temporarily under a different URI (redirect). */ public static final int SC_FOUND = 302; /** * HTTP status code (400) indicating a bad request. */ public static final int SC_BAD_REQUEST = 400; /** * HTTP status code (401) indicating that the request requires HTTP * authentication. */ public static final int SC_UNAUTHORIZED = 401; /** * HTTP status code (403) indicating that access to the resource was * forbidden. */ public static final int SC_FORBIDDEN = 403; /** * HTTP status code (404) indicating the resource was not found. */ public static final int SC_NOT_FOUND = 404; /** * HTTP status code (500) indicating an internal server error. */ public static final int SC_SERVER_ERROR = 500; /** * HTTP status code (503) indicating the server is unavailable. */ public static final int SC_SERVICE_UNAVAILABLE = 503; /** * The HTTP status code. */ private final int statusCode; /** * The HTTP status message, {@code null} if not specified. */ private String statusMessage; /** * Creates a new minimal HTTP response with the specified status code. * * @param statusCode The HTTP status code. */ public HTTPResponse(final int statusCode) { this.statusCode = statusCode; } /** * Gets the HTTP status code. * * @return The HTTP status code. */ public int getStatusCode() { return statusCode; } /** * Returns {@code true} if the HTTP status code indicates success * (2xx). * * @return {@code true} if the HTTP status code indicates success, else * {@code false}. */ public boolean indicatesSuccess() { return statusCode >= 200 && statusCode < 300; } /** * Ensures this HTTP response has the specified status code. * * @param expectedStatusCode The expected status code(s). * * @throws ParseException If the status code of this HTTP response * doesn't match the expected. */ public void ensureStatusCode(final int ... expectedStatusCode) throws ParseException { for (int c: expectedStatusCode) { if (this.statusCode == c) return; } throw new ParseException("Unexpected HTTP status code " + this.statusCode + ", must be " + Arrays.toString(expectedStatusCode)); } /** * Ensures this HTTP response does not have a {@link #SC_OK 200 OK} * status code. * * @throws ParseException If the status code of this HTTP response is * 200 OK. */ public void ensureStatusCodeNotOK() throws ParseException { if (statusCode == SC_OK) throw new ParseException("Unexpected HTTP status code, must not be 200 (OK)"); } @Override public String getStatusMessage() { return statusMessage; } /** * Sets the HTTP status message. * * @param message The HTTP status message, {@code null} if not * specified. */ public void setStatusMessage(final String message) { this.statusMessage = message; } /** * Gets the {@code Location} header value (for redirects). * * @return The header value, {@code null} if not specified. */ public URI getLocation() { String value = getHeaderValue("Location"); if (value == null) { return null; } try { return new URI(value); } catch (URISyntaxException e) { return null; } } /** * Sets the {@code Location} header value (for redirects). * * @param location The header value, {@code null} if not specified. */ public void setLocation(final URI location) { setHeader("Location", location != null ? location.toString() : null); } /** * Gets the {@code Cache-Control} header value. * * @return The header value, {@code null} if not specified. */ public String getCacheControl() { return getHeaderValue("Cache-Control"); } /** * Sets the {@code Cache-Control} header value. * * @param cacheControl The header value, {@code null} if not specified. */ public void setCacheControl(final String cacheControl) { setHeader("Cache-Control", cacheControl); } /** * Gets the {@code Pragma} header value. * * @return The header value, {@code null} if not specified. */ public String getPragma() { return getHeaderValue("Pragma"); } /** * Sets the {@code Pragma} header value. * * @param pragma The header value, {@code null} if not specified. */ public void setPragma(final String pragma) { setHeader("Pragma", pragma); } /** * Gets the {@code WWW-Authenticate} header value. * * @return The header value, {@code null} if not specified. */ public String getWWWAuthenticate() { return getHeaderValue("WWW-Authenticate"); } /** * Sets the {@code WWW-Authenticate} header value. * * @param wwwAuthenticate The header value, {@code null} if not * specified. */ public void setWWWAuthenticate(final String wwwAuthenticate) { setHeader("WWW-Authenticate", wwwAuthenticate); } /** * Gets the {@code DPoP-Nonce} header value. * * @return The {@code DPoP-Nonce} header value, {@code null} if not * specified or parsing failed. */ public Nonce getDPoPNonce() { String nonce = getHeaderValue("DPoP-Nonce"); if (nonce == null) { return null; } try { return new Nonce(nonce); } catch (IllegalArgumentException e) { return null; } } /** * Sets the {@code DPoP-Nonce} header value. * * @param nonce The {@code DPoP-Nonce} header value, {@code null} if * not specified. */ public void setDPoPNonce(final Nonce nonce) { if (nonce != null) { setHeader("DPoP-Nonce", nonce.getValue()); } else { setHeader("DPoP-Nonce", (String[]) null); } } /** * Gets the raw response content. * * @deprecated Use {@link #getBody()}. * * @return The raw response content, {@code null} if none. */ @Deprecated public String getContent() { return getBody(); } /** * Gets the response content as a JSON object. * * @deprecated Use {@link #getBodyAsJSONObject()}. * * @return The response content as a JSON object. * * @throws ParseException If the Content-Type header isn't * {@code application/json}, the response * content is {@code null}, empty or couldn't be * parsed to a valid JSON object. */ @Deprecated public JSONObject getContentAsJSONObject() throws ParseException { return getBodyAsJSONObject(); } /** * Gets the response content as a JSON array. * * @deprecated Use {@link #getBodyAsJSONArray()}. * * @return The response content as a JSON array. * * @throws ParseException If the Content-Type header isn't * {@code application/json}, the response * content is {@code null}, empty or couldn't be * parsed to a valid JSON array. */ @Deprecated public JSONArray getContentAsJSONArray() throws ParseException { return getBodyAsJSONArray(); } /** * Gets the response content as a JSON Web Token (JWT). * * @deprecated Use {@link #getBodyAsJWT()}. * * @return The response content as a JSON Web Token (JWT). * * @throws ParseException If the Content-Type header isn't * {@code application/jwt}, the response content * is {@code null}, empty or couldn't be parsed * to a valid JSON Web Token (JWT). */ @Deprecated public JWT getContentAsJWT() throws ParseException { return getBodyAsJWT(); } /** * Sets the raw response content. * * @deprecated Use {@link #setBody(String)}. * * @param content The raw response content, {@code null} if none. */ @Deprecated public void setContent(final String content) { setBody(content); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy