Some cleanup with HTTP classes
This commit is contained in:
parent
2249298c93
commit
337c0392bd
7 changed files with 709 additions and 633 deletions
|
|
@ -31,13 +31,12 @@ import java.util.HashMap;
|
|||
import java.util.Iterator;
|
||||
|
||||
public class HttpHeader {
|
||||
// HTTP info
|
||||
private boolean request = true;
|
||||
private String type = "GET";
|
||||
private String url = "/";
|
||||
private String type = "GET";
|
||||
private String url = "/";
|
||||
private HashMap<String, String> urlAttributes;
|
||||
private float version = 1.0f;
|
||||
private int httpCode = 200;
|
||||
private float protocolVersion = 1.0f;
|
||||
private int statusCode = 200;
|
||||
private InputStream in;
|
||||
|
||||
// Parameters
|
||||
|
|
@ -45,7 +44,7 @@ public class HttpHeader {
|
|||
private HashMap<String, String> cookies;
|
||||
|
||||
|
||||
public HttpHeader(){
|
||||
public HttpHeader() {
|
||||
urlAttributes = new HashMap<>();
|
||||
headers = new HashMap<>();
|
||||
cookies = new HashMap<>();
|
||||
|
|
@ -53,46 +52,52 @@ public class HttpHeader {
|
|||
|
||||
|
||||
/**
|
||||
* @return true if this header represents a server response
|
||||
* @return true if this header represents a server response
|
||||
*/
|
||||
public boolean isResponse(){
|
||||
public boolean isResponse() {
|
||||
return !request;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return true if this header represents a client request
|
||||
* @return true if this header represents a client request
|
||||
*/
|
||||
public boolean isRequest(){
|
||||
public boolean isRequest() {
|
||||
return request;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the HTTP message type( ex. GET,POST...)
|
||||
* @return the HTTP message type( ex. GET,POST...)
|
||||
*/
|
||||
public String getRequestType(){
|
||||
public String getRequestType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the HTTP version of this header
|
||||
* @return the protocol version from this header
|
||||
*/
|
||||
public float getHTTPVersion(){
|
||||
return version;
|
||||
public float getProtocolVersion() {
|
||||
return protocolVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the HTTP Return Code from a Server
|
||||
* @return the HTTP Return Code from a Server
|
||||
*/
|
||||
public int getHTTPCode(){
|
||||
return httpCode;
|
||||
public int getStatusCode() {
|
||||
return statusCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the URL that the client sent the server
|
||||
* @return the URL that the client sent the server
|
||||
*/
|
||||
public String getRequestURL(){
|
||||
public String getRequestURL() {
|
||||
return url;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return parses out the page name from the request url and returns it.
|
||||
*/
|
||||
public String getRequestPage() {
|
||||
if (url != null){
|
||||
if (url != null) {
|
||||
int start = 0;
|
||||
if (url.charAt(0) == '/')
|
||||
start = 1;
|
||||
|
|
@ -104,87 +109,103 @@ public class HttpHeader {
|
|||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return a Iterator with all defined url keys
|
||||
* @return a Iterator with all defined url keys
|
||||
*/
|
||||
public Iterator<String> getURLAttributeKeys(){
|
||||
public Iterator<String> getURLAttributeKeys() {
|
||||
return urlAttributes.keySet().iterator();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the URL attribute value of the given name. null if there is no such attribute
|
||||
* @return the URL attribute value of the given name. null if there is no such attribute
|
||||
*/
|
||||
public String getURLAttribute(String name){
|
||||
return urlAttributes.get( name );
|
||||
public String getURLAttribute(String name) {
|
||||
return urlAttributes.get(name);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return a Iterator with all defined headers
|
||||
* @return a Iterator with all defined headers
|
||||
*/
|
||||
public Iterator<String> getHeaderKeys(){
|
||||
public Iterator<String> getHeaderKeys() {
|
||||
return headers.keySet().iterator();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the HTTP attribute value of the given name. null if there is no such attribute
|
||||
* @return the HTTP attribute value of the given name. null if there is no such attribute
|
||||
*/
|
||||
public String getHeader(String name){
|
||||
return headers.get( name.toUpperCase() );
|
||||
public String getHeader(String name) {
|
||||
return headers.get(name.toUpperCase());
|
||||
}
|
||||
|
||||
/**
|
||||
* @return a Iterator with all defined cookies
|
||||
* @return a Iterator with all defined cookies
|
||||
*/
|
||||
public Iterator<String> getCookieKeys(){
|
||||
public Iterator<String> getCookieKeys() {
|
||||
return cookies.keySet().iterator();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the cookie value of the given name. null if there is no such attribute.
|
||||
* @return the cookie value of the given name. null if there is no such attribute.
|
||||
*/
|
||||
public String getCookie(String name){
|
||||
return cookies.get( name );
|
||||
public String getCookie(String name) {
|
||||
return cookies.get(name);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return a Reader that contains the body of the http request.
|
||||
* @return a Reader that contains the body of the http request.
|
||||
*/
|
||||
public InputStream getInputStream(){
|
||||
public InputStream getInputStream() {
|
||||
return in;
|
||||
}
|
||||
|
||||
|
||||
public void setIsRequest(boolean request) { this.request = request; }
|
||||
public void setRequestType(String type){
|
||||
public void setIsRequest(boolean request) {
|
||||
this.request = request;
|
||||
}
|
||||
|
||||
public void setRequestType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
public void setHTTPVersion(float version){
|
||||
this.version = version;
|
||||
|
||||
public void setProtocolVersion(float version) {
|
||||
this.protocolVersion = version;
|
||||
}
|
||||
public void setHTTPCode(int code){
|
||||
this.httpCode = code;
|
||||
|
||||
public void setStatusCode(int code) {
|
||||
this.statusCode = code;
|
||||
}
|
||||
public void setRequestURL(String url){
|
||||
|
||||
public void setRequestURL(String url) {
|
||||
this.url = url.trim().replaceAll("//", "/");
|
||||
}
|
||||
public void setHeader(String key, String value){
|
||||
|
||||
public void setHeader(String key, String value) {
|
||||
this.headers.put(key.toUpperCase(), value);
|
||||
}
|
||||
protected void setInputStream(InputStream in){
|
||||
|
||||
protected void setInputStream(InputStream in) {
|
||||
this.in = in;
|
||||
}
|
||||
|
||||
protected HashMap<String,String> getHeaderMap(){
|
||||
protected HashMap<String, String> getHeaderMap() {
|
||||
return headers;
|
||||
}
|
||||
protected HashMap<String,String> getCookieMap(){
|
||||
|
||||
protected HashMap<String, String> getCookieMap() {
|
||||
return cookies;
|
||||
}
|
||||
protected HashMap<String,String> getUrlAttributeMap(){
|
||||
|
||||
protected HashMap<String, String> getUrlAttributeMap() {
|
||||
return urlAttributes;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String toString(){
|
||||
public String toString() {
|
||||
StringBuilder tmp = new StringBuilder();
|
||||
tmp.append("{Type: ").append(type);
|
||||
tmp.append(", HTTP_version: HTTP/").append(version);
|
||||
if(url == null)
|
||||
tmp.append(", HTTP_version: HTTP/").append(protocolVersion);
|
||||
if (url == null)
|
||||
tmp.append(", URL: null");
|
||||
else
|
||||
tmp.append(", URL: \"").append(url).append('\"');
|
||||
|
|
@ -196,13 +217,13 @@ public class HttpHeader {
|
|||
tmp.append('}');
|
||||
return tmp.toString();
|
||||
}
|
||||
public String toStringHeaders(){
|
||||
public String toStringHeaders() {
|
||||
return Converter.toString(headers);
|
||||
}
|
||||
public String toStringCookies(){
|
||||
public String toStringCookies() {
|
||||
return Converter.toString(cookies);
|
||||
}
|
||||
public String toStringAttributes(){
|
||||
public String toStringAttributes() {
|
||||
return Converter.toString(urlAttributes);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -50,9 +50,9 @@ public class HttpHeaderParser {
|
|||
/**
|
||||
* Parses the HTTP header information from a stream
|
||||
*
|
||||
* @param in is the stream
|
||||
* @param in is the stream
|
||||
*/
|
||||
public HttpHeaderParser(InputStream in){
|
||||
public HttpHeaderParser(InputStream in) {
|
||||
this.in = in;
|
||||
this.skipStatusLine = false;
|
||||
}
|
||||
|
|
@ -60,9 +60,9 @@ public class HttpHeaderParser {
|
|||
/**
|
||||
* Parses the HTTP header information from a String
|
||||
*
|
||||
* @param in is the String
|
||||
* @param in is the String
|
||||
*/
|
||||
public HttpHeaderParser(String in){
|
||||
public HttpHeaderParser(String in) {
|
||||
this(new StringInputStream(in));
|
||||
}
|
||||
|
||||
|
|
@ -73,13 +73,13 @@ public class HttpHeaderParser {
|
|||
|
||||
// First line
|
||||
if (!skipStatusLine) {
|
||||
if( (line=IOUtil.readLine(in)) != null && !line.isEmpty() )
|
||||
if ((line = IOUtil.readLine(in)) != null && !line.isEmpty())
|
||||
parseStatusLine(header, line);
|
||||
else
|
||||
return null;
|
||||
}
|
||||
// Read header body
|
||||
while( (line=IOUtil.readLine(in)) != null && !line.isEmpty() ){
|
||||
while ((line = IOUtil.readLine(in)) != null && !line.isEmpty()) {
|
||||
parseHeaderLine(header.getHeaderMap(), line);
|
||||
}
|
||||
|
||||
|
|
@ -90,40 +90,39 @@ public class HttpHeaderParser {
|
|||
}
|
||||
|
||||
/**
|
||||
* @param skipStatusLine indicates if the parser should expect a http status lines. (default: true)
|
||||
* @param skipStatusLine indicates if the parser should expect a http status lines. (default: true)
|
||||
*/
|
||||
public void skipStatusLine(boolean skipStatusLine){
|
||||
public void skipStatusLine(boolean skipStatusLine) {
|
||||
this.skipStatusLine = skipStatusLine;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses the first line of a http request/response and stores the values in a HttpHeader object
|
||||
*
|
||||
* @param header the header object where the cookies will be stored.
|
||||
* @param statusLine the status line String
|
||||
* @param header the header object where the cookies will be stored.
|
||||
* @param statusLine the status line String
|
||||
*/
|
||||
private static void parseStatusLine(HttpHeader header, String statusLine){
|
||||
private static void parseStatusLine(HttpHeader header, String statusLine) {
|
||||
// Server Response
|
||||
if( statusLine.startsWith("HTTP/") ){
|
||||
if (statusLine.startsWith("HTTP/")) {
|
||||
header.setIsRequest(false);
|
||||
header.setHTTPVersion( Float.parseFloat( statusLine.substring( 5 , 8)));
|
||||
header.setHTTPCode( Integer.parseInt( statusLine.substring( 9, statusLine.indexOf(' ', 9) )));
|
||||
header.setProtocolVersion(Float.parseFloat(statusLine.substring(5, 8)));
|
||||
header.setStatusCode(Integer.parseInt(statusLine.substring(9, statusLine.indexOf(' ', 9))));
|
||||
}
|
||||
// Client Request
|
||||
else if(statusLine.contains("HTTP/")){
|
||||
else if (statusLine.contains("HTTP/")) {
|
||||
header.setIsRequest(true);
|
||||
header.setRequestType( statusLine.substring(0, statusLine.indexOf(" ")).trim() );
|
||||
header.setHTTPVersion( Float.parseFloat( statusLine.substring(statusLine.lastIndexOf("HTTP/")+5 , statusLine.length()).trim()));
|
||||
statusLine = (statusLine.substring(header.getRequestType().length()+1, statusLine.lastIndexOf("HTTP/")));
|
||||
header.setRequestType(statusLine.substring(0, statusLine.indexOf(" ")).trim());
|
||||
header.setProtocolVersion(Float.parseFloat(statusLine.substring(statusLine.lastIndexOf("HTTP/") + 5).trim()));
|
||||
statusLine = (statusLine.substring(header.getRequestType().length() + 1, statusLine.lastIndexOf("HTTP/")));
|
||||
|
||||
// parse URL and attributes
|
||||
int index = statusLine.indexOf('?');
|
||||
if(index > -1){
|
||||
header.setRequestURL( statusLine.substring(0, index));
|
||||
statusLine = statusLine.substring( index+1, statusLine.length());
|
||||
if (index > -1) {
|
||||
header.setRequestURL(statusLine.substring(0, index));
|
||||
statusLine = statusLine.substring(index + 1);
|
||||
parseURLParameters(header.getUrlAttributeMap(), statusLine);
|
||||
}
|
||||
else{
|
||||
} else {
|
||||
header.setRequestURL(statusLine);
|
||||
}
|
||||
}
|
||||
|
|
@ -134,23 +133,23 @@ public class HttpHeaderParser {
|
|||
* Note that all header keys will be stored with
|
||||
* uppercase notation to make them case insensitive.
|
||||
*
|
||||
* @param map a map where the header key(Uppercase) and value will be stored.
|
||||
* @param line is the next line in the header
|
||||
* @param map a map where the header key(Uppercase) and value will be stored.
|
||||
* @param line is the next line in the header
|
||||
*/
|
||||
public static void parseHeaderLine(Map<String,String> map, String line){
|
||||
String[] data = PATTERN_COLON.split( line, 2 );
|
||||
public static void parseHeaderLine(Map<String, String> map, String line) {
|
||||
String[] data = PATTERN_COLON.split(line, 2);
|
||||
map.put(
|
||||
data[0].trim().toUpperCase(), // Key
|
||||
(data.length>1 ? data[1] : "").trim()); //Value
|
||||
data[0].trim().toUpperCase(), // Key
|
||||
(data.length > 1 ? data[1] : "").trim()); //Value
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses a raw cookie header into key and value pairs
|
||||
*
|
||||
* @param map the Map where the cookies will be stored.
|
||||
* @param cookieValue the raw cookie header value String that will be parsed
|
||||
* @param map the Map where the cookies will be stored.
|
||||
* @param cookieValue the raw cookie header value String that will be parsed
|
||||
*/
|
||||
public static void parseCookieValues(Map<String,String> map, String cookieValue){
|
||||
public static void parseCookieValues(Map<String, String> map, String cookieValue) {
|
||||
parseHeaderValues(map, cookieValue, ";");
|
||||
}
|
||||
|
||||
|
|
@ -159,34 +158,37 @@ public class HttpHeaderParser {
|
|||
* Parses a header value string that contains key and value paired data and
|
||||
* stores them in a HashMap. If a pair only contain a key then the value
|
||||
* will be set as a empty string.
|
||||
*
|
||||
* <p>
|
||||
* TODO: method is not quote aware
|
||||
* @param headerValue the raw header value String that will be parsed.
|
||||
* @param delimiter the delimiter that separates key and value pairs (e.g. ';' for Cookies or ',' for Cache-Control)
|
||||
*
|
||||
* @param headerValue the raw header value String that will be parsed.
|
||||
* @param delimiter the delimiter that separates key and value pairs (e.g. ';' for Cookies or ',' for Cache-Control)
|
||||
*/
|
||||
public static HashMap<String, String> parseHeaderValues(String headerValue, String delimiter){
|
||||
public static HashMap<String, String> parseHeaderValues(String headerValue, String delimiter) {
|
||||
HashMap<String, String> map = new HashMap<>();
|
||||
parseHeaderValues(map, headerValue, delimiter);
|
||||
return map;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses a header value string that contains key and value paired data and
|
||||
* stores them in a HashMap. If a pair only contain a key then the value
|
||||
* will be set as a empty string.
|
||||
*
|
||||
* <p>
|
||||
* TODO: method is not quote aware
|
||||
* @param map the Map where key and values will be stored.
|
||||
* @param headerValue the raw header value String that will be parsed.
|
||||
* @param delimiter the delimiter that separates key and value pairs (e.g. ';' for Cookies or ',' for Cache-Control)
|
||||
*
|
||||
* @param map the Map where key and values will be stored.
|
||||
* @param headerValue the raw header value String that will be parsed.
|
||||
* @param delimiter the delimiter that separates key and value pairs (e.g. ';' for Cookies or ',' for Cache-Control)
|
||||
*/
|
||||
public static void parseHeaderValues(Map<String,String> map, String headerValue, String delimiter){
|
||||
if(headerValue != null && !headerValue.isEmpty()){
|
||||
public static void parseHeaderValues(Map<String, String> map, String headerValue, String delimiter) {
|
||||
if (headerValue != null && !headerValue.isEmpty()) {
|
||||
String[] tmpArr = headerValue.split(delimiter);
|
||||
for(String cookie : tmpArr){
|
||||
for (String cookie : tmpArr) {
|
||||
String[] tmpStr = PATTERN_EQUAL.split(cookie, 2);
|
||||
map.put(
|
||||
tmpStr[0].trim(), // Key
|
||||
StringUtil.trim((tmpStr.length>1 ? tmpStr[1] : "").trim(), '\"')); //Value
|
||||
StringUtil.trim((tmpStr.length > 1 ? tmpStr[1] : "").trim(), '\"')); //Value
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -195,28 +197,29 @@ public class HttpHeaderParser {
|
|||
/**
|
||||
* Parses a string with variables from a get or post request that was sent from a client
|
||||
*
|
||||
* @param header the header object where the url attributes key and value will be stored.
|
||||
* @param urlAttributes is the String containing all the attributes
|
||||
* @param header the header object where the url attributes key and value will be stored.
|
||||
* @param urlAttributes is the String containing all the attributes
|
||||
*/
|
||||
public static void parseURLParameters(HttpHeader header, String urlAttributes){
|
||||
public static void parseURLParameters(HttpHeader header, String urlAttributes) {
|
||||
parseURLParameters(header.getUrlAttributeMap(), urlAttributes);
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses a string with variables from a get or post request that was sent from a client
|
||||
*
|
||||
* @param map a map where the url attributes key and value will be stored.
|
||||
* @param urlAttributes is the String containing all the attributes
|
||||
* @param map a map where the url attributes key and value will be stored.
|
||||
* @param urlAttributes is the String containing all the attributes
|
||||
*/
|
||||
public static void parseURLParameters(Map<String,String> map, String urlAttributes){
|
||||
public static void parseURLParameters(Map<String, String> map, String urlAttributes) {
|
||||
String[] tmp;
|
||||
urlAttributes = URLDecoder.decode(urlAttributes);
|
||||
// get the variables
|
||||
String[] data = PATTERN_AND.split( urlAttributes );
|
||||
for(String element : data){
|
||||
String[] data = PATTERN_AND.split(urlAttributes);
|
||||
for (String element : data) {
|
||||
tmp = PATTERN_EQUAL.split(element, 2);
|
||||
map.put(
|
||||
tmp[0].trim(), // Key
|
||||
(tmp.length>1 ? tmp[1] : "").trim()); //Value
|
||||
tmp[0].trim(), // Key
|
||||
(tmp.length > 1 ? tmp[1] : "").trim()); //Value
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,8 +36,8 @@ import java.util.Map;
|
|||
public interface HttpPage{
|
||||
/**
|
||||
* This method has to be implemented for every page.
|
||||
* This method is called when a client wants a response
|
||||
* from this specific page.
|
||||
* The method is called when a client sends a request
|
||||
* and is expecting a response from the specific page.
|
||||
*
|
||||
* @param out is a output stream to the client
|
||||
* @param headers is the header received from the client
|
||||
|
|
|
|||
|
|
@ -1,353 +1,396 @@
|
|||
/*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2015 Ziver Koc
|
||||
*
|
||||
* 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 zutil.net.http;
|
||||
|
||||
import zutil.converter.Converter;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.OutputStream;
|
||||
import java.io.PrintStream;
|
||||
import java.util.HashMap;
|
||||
|
||||
/**
|
||||
* This PrintStream is written for HTTP use
|
||||
* It has buffer capabilities and cookie management.
|
||||
*
|
||||
* @author Ziver
|
||||
*
|
||||
*/
|
||||
public class HttpPrintStream extends OutputStream{
|
||||
// Defines the type of message
|
||||
public enum HttpMessageType{
|
||||
REQUEST,
|
||||
RESPONSE
|
||||
}
|
||||
|
||||
/** The actual output stream */
|
||||
private PrintStream out;
|
||||
/** This defines the supported http version */
|
||||
private String httpVersion;
|
||||
/** This defines the type of message that will be generated */
|
||||
private HttpMessageType message_type;
|
||||
/** The status code of the message, ONLY for response */
|
||||
private Integer res_status_code;
|
||||
/** The request type of the message ONLY for request */
|
||||
private String req_type;
|
||||
/** The requesting url ONLY for request */
|
||||
private String req_url;
|
||||
/** An Map of all the header values */
|
||||
private HashMap<String, String> headers;
|
||||
/** An Map of all the cookies */
|
||||
private HashMap<String, String> cookies;
|
||||
/** The buffered header */
|
||||
private StringBuffer buffer;
|
||||
/** If the header buffering is enabled */
|
||||
private boolean buffer_enabled;
|
||||
|
||||
/**
|
||||
* Creates an new instance of HttpPrintStream with
|
||||
* message type of RESPONSE and buffering disabled.
|
||||
*
|
||||
* @param out is the OutputStream where the data will be written to
|
||||
*/
|
||||
public HttpPrintStream(OutputStream out) {
|
||||
this( out, HttpMessageType.RESPONSE );
|
||||
}
|
||||
/**
|
||||
* Creates an new instance of HttpPrintStream with
|
||||
* message type buffering disabled.
|
||||
*
|
||||
* @param out is the OutputStream where the data will be written to
|
||||
* @param type is the type of message
|
||||
*/
|
||||
public HttpPrintStream(OutputStream out, HttpMessageType type) {
|
||||
this.out = new PrintStream(out);
|
||||
this.httpVersion = "1.0";
|
||||
this.message_type = type;
|
||||
this.res_status_code = 200;
|
||||
this.headers = new HashMap<>();
|
||||
this.cookies = new HashMap<>();
|
||||
this.buffer = new StringBuffer();
|
||||
this.buffer_enabled = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Enable the buffering capability of the PrintStream.
|
||||
* Nothing will be sent to the client when buffering
|
||||
* is enabled until you close or flush the stream.
|
||||
* This function will flush the stream if buffering is
|
||||
* disabled.
|
||||
*/
|
||||
public void enableBuffering(boolean enable) throws IOException {
|
||||
buffer_enabled = enable;
|
||||
if(!buffer_enabled) flush();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the http version that will be used in the http header
|
||||
*/
|
||||
public void setHttpVersion(String version){
|
||||
this.httpVersion = version;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a cookie that will be sent to the client
|
||||
*
|
||||
* @param key is the name of the cookie
|
||||
* @param value is the value of the cookie
|
||||
* @throws IOException if the header has already been sent
|
||||
*/
|
||||
public void setCookie(String key, String value) throws IOException{
|
||||
if(cookies == null)
|
||||
throw new IOException("Header already sent!");
|
||||
cookies.put(key, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds an header value
|
||||
*
|
||||
* @param key is the header name
|
||||
* @param value is the value of the header
|
||||
* @throws IOException if the header has already been sent
|
||||
*/
|
||||
public void setHeader(String key, String value) throws IOException{
|
||||
if(headers == null)
|
||||
throw new IOException("Header already sent!");
|
||||
headers.put(key, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the status code of the message, ONLY available in HTTP RESPONSE
|
||||
*
|
||||
* @param code the code from 100 up to 599
|
||||
* @throws IOException if the header has already been sent or the message type is wrong
|
||||
*/
|
||||
public void setStatusCode(int code) throws IOException{
|
||||
if( res_status_code == null )
|
||||
throw new IOException("Header already sent!");
|
||||
if( message_type != HttpMessageType.RESPONSE )
|
||||
throw new IOException("Status Code is only available in HTTP RESPONSE!");
|
||||
res_status_code = code;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the request type of the message, ONLY available in HTTP REQUEST
|
||||
*
|
||||
* @param req_type is the type of the message, e.g. GET, POST...
|
||||
* @throws IOException if the header has already been sent or the message type is wrong
|
||||
*/
|
||||
public void setRequestType(String req_type) throws IOException{
|
||||
if( req_type == null )
|
||||
throw new IOException("Header already sent!");
|
||||
if( message_type != HttpMessageType.REQUEST )
|
||||
throw new IOException("Request Message Type is only available in HTTP REQUEST!");
|
||||
this.req_type = req_type;
|
||||
}
|
||||
/**
|
||||
* Sets the requesting URL of the message, ONLY available in HTTP REQUEST
|
||||
*
|
||||
* @param req_url is the URL
|
||||
* @throws IOException if the header has already been sent or the message type is wrong
|
||||
*/
|
||||
public void setRequestURL(String req_url) throws IOException{
|
||||
if( req_url == null )
|
||||
throw new IOException("Header already sent!");
|
||||
if( message_type != HttpMessageType.REQUEST )
|
||||
throw new IOException("Request URL is only available in HTTP REQUEST!");
|
||||
this.req_url = req_url;
|
||||
}
|
||||
|
||||
protected void setHeaders( HashMap<String,String> map ){
|
||||
headers = map;
|
||||
}
|
||||
protected void setCookies( HashMap<String,String> map ){
|
||||
cookies = map;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Prints a new line
|
||||
*/
|
||||
public void println() throws IOException {
|
||||
printOrBuffer(System.lineSeparator());
|
||||
}
|
||||
/**
|
||||
* Prints with a new line
|
||||
*/
|
||||
public void println(String s) throws IOException {
|
||||
printOrBuffer(s + System.lineSeparator());
|
||||
}
|
||||
/**
|
||||
* Prints an string
|
||||
*/
|
||||
public void print(String s) throws IOException {
|
||||
printOrBuffer(s);
|
||||
}
|
||||
|
||||
/**
|
||||
* Will buffer String or directly output headers if needed and then the String
|
||||
*/
|
||||
private void printOrBuffer(String s) {
|
||||
if(buffer_enabled){
|
||||
buffer.append(s);
|
||||
}
|
||||
else{
|
||||
if(res_status_code != null){
|
||||
if( message_type==HttpMessageType.REQUEST )
|
||||
out.print(req_type + " " + req_url + " HTTP/"+httpVersion);
|
||||
else
|
||||
out.print("HTTP/"+httpVersion+" " + res_status_code + " " + getStatusString(res_status_code));
|
||||
out.println();
|
||||
res_status_code = null;
|
||||
req_type = null;
|
||||
req_url = null;
|
||||
}
|
||||
if(headers != null){
|
||||
for(String key : headers.keySet()){
|
||||
out.println(key + ": " + headers.get(key));
|
||||
}
|
||||
headers = null;
|
||||
}
|
||||
if(cookies != null){
|
||||
if( !cookies.isEmpty() ){
|
||||
if( message_type==HttpMessageType.REQUEST ){
|
||||
out.print("Cookie: ");
|
||||
for(String key : cookies.keySet()){
|
||||
out.print(key + "=" + cookies.get(key) + "; ");
|
||||
}
|
||||
out.println();
|
||||
}
|
||||
else{
|
||||
for(String key : cookies.keySet()){
|
||||
out.print("Set-Cookie: " + key + "=" + cookies.get(key) + ";");
|
||||
out.println();
|
||||
}
|
||||
}
|
||||
}
|
||||
out.println();
|
||||
cookies = null;
|
||||
}
|
||||
out.print(s);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return if headers has been sent. The setHeader, setStatusCode, setCookie method will throw Exceptions
|
||||
*/
|
||||
public boolean isHeaderSent() {
|
||||
return res_status_code == null && headers == null && cookies == null;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Sends out the buffer and clears it
|
||||
*/
|
||||
@Override
|
||||
public void flush() throws IOException {
|
||||
flushBuffer();
|
||||
out.flush();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() throws IOException {
|
||||
flush();
|
||||
out.close();
|
||||
}
|
||||
|
||||
protected void flushBuffer() throws IOException {
|
||||
if(buffer_enabled){
|
||||
buffer_enabled = false;
|
||||
printOrBuffer(buffer.toString());
|
||||
buffer.delete(0, buffer.length());
|
||||
buffer_enabled = true;
|
||||
}
|
||||
else if(res_status_code != null || headers != null || cookies != null){
|
||||
printOrBuffer("");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Will flush all buffers and write binary data to stream
|
||||
*/
|
||||
@Override
|
||||
public void write(int b) throws IOException {
|
||||
flushBuffer();
|
||||
out.write(b);
|
||||
}
|
||||
/**
|
||||
* * Will flush all buffers and write binary data to stream
|
||||
*/
|
||||
@Override
|
||||
public void write(byte[] buf, int off, int len) throws IOException {
|
||||
flushBuffer();
|
||||
out.write(buf, off, len);
|
||||
}
|
||||
|
||||
private String getStatusString(int type){
|
||||
switch(type){
|
||||
case 100: return "Continue";
|
||||
case 200: return "OK";
|
||||
case 301: return "Moved Permanently";
|
||||
case 304: return "Not Modified";
|
||||
case 307: return "Temporary Redirect";
|
||||
case 400: return "Bad Request";
|
||||
case 401: return "Unauthorized";
|
||||
case 403: return "Forbidden";
|
||||
case 404: return "Not Found";
|
||||
case 500: return "Internal Server Error";
|
||||
case 501: return "Not Implemented";
|
||||
default: return "";
|
||||
}
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder str = new StringBuilder();
|
||||
str.append("{http_type: ").append(message_type);
|
||||
if (res_status_code != null) {
|
||||
if (message_type == HttpMessageType.REQUEST) {
|
||||
str.append(", req_type: ").append(req_type);
|
||||
if(req_url == null)
|
||||
str.append(", req_url: null");
|
||||
else
|
||||
str.append(", req_url: \"").append(req_url).append('\"');
|
||||
} else if (message_type == HttpMessageType.RESPONSE){
|
||||
str.append(", status_code: ").append(res_status_code);
|
||||
str.append(", status_str: ").append(getStatusString(res_status_code));
|
||||
}
|
||||
|
||||
if (headers != null) {
|
||||
str.append(", Headers: ").append(Converter.toString(headers));
|
||||
}
|
||||
if (cookies != null) {
|
||||
str.append(", Cookies: ").append(Converter.toString(cookies));
|
||||
}
|
||||
}
|
||||
else
|
||||
str.append(", HEADER ALREADY SENT ");
|
||||
str.append('}');
|
||||
|
||||
return str.toString();
|
||||
}
|
||||
}
|
||||
/*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2015 Ziver Koc
|
||||
*
|
||||
* 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 zutil.net.http;
|
||||
|
||||
import zutil.converter.Converter;
|
||||
|
||||
import java.io.OutputStream;
|
||||
import java.io.PrintStream;
|
||||
import java.util.HashMap;
|
||||
|
||||
/**
|
||||
* This PrintStream is written for HTTP use
|
||||
* It has buffer capabilities and cookie management.
|
||||
*
|
||||
* @author Ziver
|
||||
*/
|
||||
public class HttpPrintStream extends OutputStream {
|
||||
/**
|
||||
* Specifies if the HTTP message is a request (client) or a response (server).
|
||||
*/
|
||||
public enum HttpMessageType {
|
||||
REQUEST,
|
||||
RESPONSE
|
||||
}
|
||||
|
||||
/**
|
||||
* The actual output stream
|
||||
*/
|
||||
private PrintStream out;
|
||||
/**
|
||||
* This defines the type of message that will be generated
|
||||
*/
|
||||
private final HttpMessageType messageType;
|
||||
/**
|
||||
* Specifies the protocol that should be used
|
||||
*/
|
||||
private String protocol;
|
||||
/**
|
||||
* Specifies the protocol version that should be used
|
||||
*/
|
||||
private String protocolVersion;
|
||||
/**
|
||||
* The status code of the message, ONLY for response
|
||||
*/
|
||||
private Integer responseStatusCode;
|
||||
/**
|
||||
* The request type of the message ONLY for request
|
||||
*/
|
||||
private String requestType;
|
||||
/**
|
||||
* The requesting url ONLY for request
|
||||
*/
|
||||
private String requestUrl;
|
||||
/**
|
||||
* An Map of all the header values
|
||||
*/
|
||||
private HashMap<String, String> headers;
|
||||
/**
|
||||
* An Map of all the cookies
|
||||
*/
|
||||
private HashMap<String, String> cookies;
|
||||
/**
|
||||
* The header data buffer
|
||||
*/
|
||||
private StringBuffer buffer;
|
||||
/**
|
||||
* If the header buffering is enabled
|
||||
*/
|
||||
private boolean bufferEnabled;
|
||||
|
||||
|
||||
/**
|
||||
* Creates an new instance of HttpPrintStream with
|
||||
* message type of RESPONSE and buffering disabled.
|
||||
*
|
||||
* @param out is the OutputStream where the data will be written to
|
||||
*/
|
||||
public HttpPrintStream(OutputStream out) {
|
||||
this(out, HttpMessageType.RESPONSE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an new instance of HttpPrintStream with
|
||||
* message type buffering disabled.
|
||||
*
|
||||
* @param out is the OutputStream where the data will be written to
|
||||
* @param type is the type of message
|
||||
*/
|
||||
public HttpPrintStream(OutputStream out, HttpMessageType type) {
|
||||
this.out = new PrintStream(out);
|
||||
this.protocol = "HTTP";
|
||||
this.protocolVersion = "1.0";
|
||||
this.messageType = type;
|
||||
this.responseStatusCode = 200;
|
||||
this.headers = new HashMap<>();
|
||||
this.cookies = new HashMap<>();
|
||||
this.buffer = new StringBuffer();
|
||||
this.bufferEnabled = false;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Enable the buffering capability of the PrintStream.
|
||||
* Nothing will be sent to the client when buffering
|
||||
* is enabled until you close or flush the stream.
|
||||
* This function will flush the stream if buffering is
|
||||
* disabled.
|
||||
*/
|
||||
public void enableBuffering(boolean enable) {
|
||||
bufferEnabled = enable;
|
||||
if (!bufferEnabled) flush();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the http version that will be used in the http header
|
||||
*/
|
||||
public void setProtocolVersion(String version) {
|
||||
this.protocolVersion = version;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a cookie that will be sent to the client
|
||||
*
|
||||
* @param key is the name of the cookie
|
||||
* @param value is the value of the cookie
|
||||
* @throws IllegalStateException if the header has already been sent
|
||||
*/
|
||||
public void setCookie(String key, String value) {
|
||||
if (cookies == null)
|
||||
throw new IllegalStateException("Header already sent");
|
||||
cookies.put(key, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds an header value
|
||||
*
|
||||
* @param key is the header name
|
||||
* @param value is the value of the header
|
||||
* @throws IllegalStateException if the header has already been sent
|
||||
*/
|
||||
public void setHeader(String key, String value) {
|
||||
if (headers == null)
|
||||
throw new IllegalStateException("Header already sent");
|
||||
headers.put(key, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the status code of the message, ONLY available in HTTP RESPONSE
|
||||
*
|
||||
* @param code the code from 100 up to 599
|
||||
* @throws IllegalStateException if the header has already been sent or the message type is wrong
|
||||
*/
|
||||
public void setStatusCode(int code) {
|
||||
if (responseStatusCode == null)
|
||||
throw new IllegalStateException("Header already sent.");
|
||||
if (messageType != HttpMessageType.RESPONSE)
|
||||
throw new IllegalStateException("Status Code is only available with HTTP requests");
|
||||
responseStatusCode = code;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the request type of the message, ONLY available in HTTP REQUEST
|
||||
*
|
||||
* @param req_type is the type of the message, e.g. GET, POST...
|
||||
* @throws IllegalStateException if the header has already been sent or the message type is wrong
|
||||
*/
|
||||
public void setRequestType(String req_type) {
|
||||
if (req_type == null)
|
||||
throw new IllegalStateException("Header already sent.");
|
||||
if (messageType != HttpMessageType.REQUEST)
|
||||
throw new IllegalStateException("Request Message Type is only available with HTTP requests");
|
||||
this.requestType = req_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the requesting URL of the message. Only available with HTTP requests
|
||||
*
|
||||
* @param req_url is the URL
|
||||
* @throws IllegalStateException if the header has already been sent or the message type is wrong
|
||||
*/
|
||||
public void setRequestURL(String req_url) {
|
||||
if (req_url == null)
|
||||
throw new IllegalStateException("Header already sent.");
|
||||
if (messageType != HttpMessageType.REQUEST)
|
||||
throw new IllegalStateException("Request URL is only available with a HTTP request");
|
||||
this.requestUrl = req_url;
|
||||
}
|
||||
|
||||
protected void setHeaders(HashMap<String, String> map) {
|
||||
headers = map;
|
||||
}
|
||||
|
||||
protected void setCookies(HashMap<String, String> map) {
|
||||
cookies = map;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Prints a new line
|
||||
*/
|
||||
public void println() {
|
||||
printOrBuffer(System.lineSeparator());
|
||||
}
|
||||
|
||||
/**
|
||||
* Prints with a new line
|
||||
*/
|
||||
public void println(String s) {
|
||||
printOrBuffer(s + System.lineSeparator());
|
||||
}
|
||||
|
||||
/**
|
||||
* Prints an string
|
||||
*/
|
||||
public void print(String s) {
|
||||
printOrBuffer(s);
|
||||
}
|
||||
|
||||
/**
|
||||
* Will buffer the body data or directly send the headers if needed and then the append the body
|
||||
*/
|
||||
private void printOrBuffer(String s) {
|
||||
if (bufferEnabled) {
|
||||
buffer.append(s);
|
||||
} else {
|
||||
if (responseStatusCode != null) {
|
||||
if (messageType == HttpMessageType.REQUEST)
|
||||
out.print(requestType + " " + requestUrl + " " + protocol + "/" + protocolVersion);
|
||||
else
|
||||
out.print("HTTP/" + protocolVersion + " " + responseStatusCode + " " + getStatusString(responseStatusCode));
|
||||
out.println();
|
||||
responseStatusCode = null;
|
||||
requestType = null;
|
||||
requestUrl = null;
|
||||
}
|
||||
|
||||
if (headers != null) {
|
||||
for (String key : headers.keySet()) {
|
||||
out.println(key + ": " + headers.get(key));
|
||||
}
|
||||
headers = null;
|
||||
}
|
||||
|
||||
if (cookies != null) {
|
||||
if (!cookies.isEmpty()) {
|
||||
if (messageType == HttpMessageType.REQUEST) {
|
||||
out.print("Cookie: ");
|
||||
for (String key : cookies.keySet()) {
|
||||
out.print(key + "=" + cookies.get(key) + "; ");
|
||||
}
|
||||
out.println();
|
||||
} else {
|
||||
for (String key : cookies.keySet()) {
|
||||
out.print("Set-Cookie: " + key + "=" + cookies.get(key) + ";");
|
||||
out.println();
|
||||
}
|
||||
}
|
||||
}
|
||||
out.println();
|
||||
cookies = null;
|
||||
}
|
||||
out.print(s);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return if headers has been sent. The setHeader, setStatusCode, setCookie method will throw IllegalStateException
|
||||
*/
|
||||
public boolean isHeaderSent() {
|
||||
return responseStatusCode == null && headers == null && cookies == null;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Sends out the buffer and clear it
|
||||
*/
|
||||
@Override
|
||||
public void flush() {
|
||||
flushBuffer();
|
||||
out.flush();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() {
|
||||
flush();
|
||||
out.close();
|
||||
}
|
||||
|
||||
protected void flushBuffer() {
|
||||
if (bufferEnabled) {
|
||||
bufferEnabled = false;
|
||||
printOrBuffer(buffer.toString());
|
||||
buffer.delete(0, buffer.length());
|
||||
bufferEnabled = true;
|
||||
} else if (responseStatusCode != null || headers != null || cookies != null) {
|
||||
printOrBuffer("");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Will flush all buffers and write binary data to stream
|
||||
*/
|
||||
@Override
|
||||
public void write(int b) {
|
||||
flushBuffer();
|
||||
out.write(b);
|
||||
}
|
||||
|
||||
/**
|
||||
* * Will flush all buffers and write binary data to stream
|
||||
*/
|
||||
@Override
|
||||
public void write(byte[] buf, int off, int len) {
|
||||
flushBuffer();
|
||||
out.write(buf, off, len);
|
||||
}
|
||||
|
||||
private String getStatusString(int type) {
|
||||
switch (type) {
|
||||
case 100:
|
||||
return "Continue";
|
||||
case 200:
|
||||
return "OK";
|
||||
case 301:
|
||||
return "Moved Permanently";
|
||||
case 304:
|
||||
return "Not Modified";
|
||||
case 307:
|
||||
return "Temporary Redirect";
|
||||
case 400:
|
||||
return "Bad Request";
|
||||
case 401:
|
||||
return "Unauthorized";
|
||||
case 403:
|
||||
return "Forbidden";
|
||||
case 404:
|
||||
return "Not Found";
|
||||
case 500:
|
||||
return "Internal Server Error";
|
||||
case 501:
|
||||
return "Not Implemented";
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder str = new StringBuilder();
|
||||
str.append("{http_type: ").append(messageType);
|
||||
if (responseStatusCode != null) {
|
||||
if (messageType == HttpMessageType.REQUEST) {
|
||||
str.append(", req_type: ").append(requestType);
|
||||
if (requestUrl == null)
|
||||
str.append(", req_url: null");
|
||||
else
|
||||
str.append(", req_url: \"").append(requestUrl).append('\"');
|
||||
} else if (messageType == HttpMessageType.RESPONSE) {
|
||||
str.append(", status_code: ").append(responseStatusCode);
|
||||
str.append(", status_str: ").append(getStatusString(responseStatusCode));
|
||||
}
|
||||
|
||||
if (headers != null) {
|
||||
str.append(", Headers: ").append(Converter.toString(headers));
|
||||
}
|
||||
if (cookies != null) {
|
||||
str.append(", Cookies: ").append(Converter.toString(cookies));
|
||||
}
|
||||
} else
|
||||
str.append(", HEADER ALREADY SENT ");
|
||||
str.append('}');
|
||||
|
||||
return str.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -210,7 +210,7 @@ public class HttpServer extends ThreadedTCPNetworkServer{
|
|||
}
|
||||
|
||||
//**************************** RESPONSE ************************************
|
||||
out.setHttpVersion("1.0");
|
||||
out.setProtocolVersion("1.0");
|
||||
out.setStatusCode(200);
|
||||
out.setHeader("Server", SERVER_NAME);
|
||||
out.setHeader("Content-Type", "text/html");
|
||||
|
|
|
|||
|
|
@ -1,162 +1,171 @@
|
|||
/*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2015 Ziver Koc
|
||||
*
|
||||
* 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 zutil.net.http;
|
||||
|
||||
import java.net.URL;
|
||||
import java.util.HashMap;
|
||||
|
||||
/**
|
||||
* Handles URLs in the HTTP protocol
|
||||
*
|
||||
* @author Ziver
|
||||
*/
|
||||
public class HttpURL {
|
||||
public static final String PROTOCOL_SEPARATOR = "://";
|
||||
public static final String PORT_SEPARATOR = ":";
|
||||
public static final String PATH_SEPARATOR = "/";
|
||||
public static final String PARAMETER_SEPARATOR = "?";
|
||||
public static final String ANCHOR_SEPARATOR = "#";
|
||||
|
||||
private String protocol = "";
|
||||
private String host = "127.0.0.1";
|
||||
private int port = -1;
|
||||
private String path;
|
||||
private String anchor;
|
||||
|
||||
private HashMap<String,String> parameters = new HashMap<>();
|
||||
|
||||
|
||||
public HttpURL(){}
|
||||
|
||||
public HttpURL( URL url ){
|
||||
this.setProtocol( url.getProtocol() );
|
||||
this.setHost( url.getHost() );
|
||||
this.setPort( url.getPort() );
|
||||
this.setPath( url.getPath() );
|
||||
}
|
||||
|
||||
|
||||
public String getProtocol( ){
|
||||
return protocol;
|
||||
}
|
||||
public String getHost( ){
|
||||
return host;
|
||||
}
|
||||
public int getPort( ){
|
||||
return port;
|
||||
}
|
||||
public String getPath( ){
|
||||
return path;
|
||||
}
|
||||
public String getAnchor( ){
|
||||
return anchor;
|
||||
}
|
||||
|
||||
public void setProtocol( String prot ){
|
||||
this.protocol = prot;
|
||||
}
|
||||
public void setHost( String host ){
|
||||
this.host = host;
|
||||
}
|
||||
public void setPort( int port ){
|
||||
this.port = port;
|
||||
}
|
||||
public void setPath( String path ){
|
||||
if( path.length() >= 1 && !path.startsWith(PATH_SEPARATOR))
|
||||
path = PATH_SEPARATOR + path;
|
||||
this.path = path;
|
||||
}
|
||||
public void setAnchor( String anch ){
|
||||
this.anchor = anch;
|
||||
}
|
||||
public void setParameter( String key, String value ){
|
||||
this.parameters.put(key, value);
|
||||
}
|
||||
|
||||
protected void setParameters( HashMap<String,String> pars ){
|
||||
this.parameters = pars;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates the parameter string in a URL.
|
||||
*
|
||||
* e.g.
|
||||
* "key=value&key2=value&..."
|
||||
*/
|
||||
public String getParameterString(){
|
||||
StringBuilder param = new StringBuilder();
|
||||
for(String key : parameters.keySet()){
|
||||
if (param.length() > 0)
|
||||
param.append('&');
|
||||
param.append(key);
|
||||
param.append('=');
|
||||
param.append( parameters.get(key) );
|
||||
}
|
||||
return param.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates a path that are used in the HTTP header
|
||||
*/
|
||||
public String getHttpURL(){
|
||||
StringBuilder url = new StringBuilder();
|
||||
url.append( path );
|
||||
if( !parameters.isEmpty() )
|
||||
url.append( PARAMETER_SEPARATOR ).append( getParameterString() );
|
||||
|
||||
return url.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates a full URL
|
||||
*/
|
||||
public String getURL(){
|
||||
return toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates the whole URL
|
||||
*/
|
||||
public String toString(){
|
||||
StringBuilder url = new StringBuilder();
|
||||
url.append( protocol );
|
||||
url.append( PROTOCOL_SEPARATOR );
|
||||
url.append( host );
|
||||
if( port > 0 )
|
||||
url.append( PORT_SEPARATOR ).append( port );
|
||||
|
||||
if( path != null )
|
||||
url.append( path );
|
||||
else
|
||||
url.append( PATH_SEPARATOR );
|
||||
|
||||
if( !parameters.isEmpty() )
|
||||
url.append( PARAMETER_SEPARATOR ).append( getParameterString() );
|
||||
if( anchor != null )
|
||||
url.append( ANCHOR_SEPARATOR ).append( anchor );
|
||||
|
||||
return url.toString();
|
||||
}
|
||||
}
|
||||
/*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2015 Ziver Koc
|
||||
*
|
||||
* 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 zutil.net.http;
|
||||
|
||||
import java.net.URL;
|
||||
import java.util.HashMap;
|
||||
|
||||
/**
|
||||
* Handles URLs in the HTTP protocol
|
||||
*
|
||||
* @author Ziver
|
||||
*/
|
||||
public class HttpURL {
|
||||
public static final String PROTOCOL_SEPARATOR = "://";
|
||||
public static final String PORT_SEPARATOR = ":";
|
||||
public static final String PATH_SEPARATOR = "/";
|
||||
public static final String PARAMETER_SEPARATOR = "?";
|
||||
public static final String ANCHOR_SEPARATOR = "#";
|
||||
|
||||
private String protocol = "";
|
||||
private String host = "127.0.0.1";
|
||||
private int port = -1;
|
||||
private String path;
|
||||
private String anchor;
|
||||
|
||||
private HashMap<String, String> parameters = new HashMap<>();
|
||||
|
||||
|
||||
public HttpURL() {}
|
||||
|
||||
public HttpURL(URL url) {
|
||||
this.setProtocol(url.getProtocol());
|
||||
this.setHost(url.getHost());
|
||||
this.setPort(url.getPort());
|
||||
this.setPath(url.getPath());
|
||||
}
|
||||
|
||||
|
||||
public String getProtocol() {
|
||||
return protocol;
|
||||
}
|
||||
|
||||
public String getHost() {
|
||||
return host;
|
||||
}
|
||||
|
||||
public int getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public String getPath() {
|
||||
return path;
|
||||
}
|
||||
|
||||
public String getAnchor() {
|
||||
return anchor;
|
||||
}
|
||||
|
||||
public void setProtocol(String prot) {
|
||||
this.protocol = prot;
|
||||
}
|
||||
|
||||
public void setHost(String host) {
|
||||
this.host = host;
|
||||
}
|
||||
|
||||
public void setPort(int port) {
|
||||
this.port = port;
|
||||
}
|
||||
|
||||
public void setPath(String path) {
|
||||
if (path.length() >= 1 && !path.startsWith(PATH_SEPARATOR))
|
||||
path = PATH_SEPARATOR + path;
|
||||
this.path = path;
|
||||
}
|
||||
|
||||
public void setAnchor(String anch) {
|
||||
this.anchor = anch;
|
||||
}
|
||||
|
||||
public void setParameter(String key, String value) {
|
||||
this.parameters.put(key, value);
|
||||
}
|
||||
|
||||
protected void setParameters(HashMap<String, String> pars) {
|
||||
this.parameters = pars;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates the parameter string in a URL.
|
||||
* <p>
|
||||
* e.g.
|
||||
* "key=value&key2=value&..."
|
||||
*/
|
||||
public String getParameterString() {
|
||||
StringBuilder param = new StringBuilder();
|
||||
for (String key : parameters.keySet()) {
|
||||
if (param.length() > 0)
|
||||
param.append('&');
|
||||
param.append(key);
|
||||
param.append('=');
|
||||
param.append(parameters.get(key));
|
||||
}
|
||||
return param.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates a path that are used in the HTTP header
|
||||
*/
|
||||
public String getHttpURL() {
|
||||
StringBuilder url = new StringBuilder();
|
||||
url.append(path);
|
||||
if (!parameters.isEmpty())
|
||||
url.append(PARAMETER_SEPARATOR).append(getParameterString());
|
||||
|
||||
return url.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates a full URL
|
||||
*/
|
||||
public String getURL() {
|
||||
return toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates the whole URL
|
||||
*/
|
||||
public String toString() {
|
||||
StringBuilder url = new StringBuilder();
|
||||
url.append(protocol);
|
||||
url.append(PROTOCOL_SEPARATOR);
|
||||
url.append(host);
|
||||
if (port > 0)
|
||||
url.append(PORT_SEPARATOR).append(port);
|
||||
|
||||
if (path != null)
|
||||
url.append(path);
|
||||
else
|
||||
url.append(PATH_SEPARATOR);
|
||||
|
||||
if (!parameters.isEmpty())
|
||||
url.append(PARAMETER_SEPARATOR).append(getParameterString());
|
||||
if (anchor != null)
|
||||
url.append(ANCHOR_SEPARATOR).append(anchor);
|
||||
|
||||
return url.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ public class HttpDigestAuthPageTest {
|
|||
public void cleanRequest() throws IOException {
|
||||
HttpHeader rspHeader = HttpTestUtil.makeRequest(page);
|
||||
|
||||
assertEquals(401, rspHeader.getHTTPCode());
|
||||
assertEquals(401, rspHeader.getStatusCode());
|
||||
assertNotNull(rspHeader.getHeader("WWW-Authenticate"));
|
||||
assertEquals("Digest", parseAuthType(rspHeader));
|
||||
Map<String,String> authHeader = parseAuthHeader(rspHeader);
|
||||
|
|
@ -49,21 +49,21 @@ public class HttpDigestAuthPageTest {
|
|||
@Test
|
||||
public void authenticate() throws IOException {
|
||||
HttpHeader rspHeader = authenticate(PAGE_USERNAME, PAGE_PASSWORD);
|
||||
assertEquals(200, rspHeader.getHTTPCode());
|
||||
assertEquals(200, rspHeader.getStatusCode());
|
||||
assertThat(IOUtil.readContentAsString(rspHeader.getInputStream()),
|
||||
containsString(PAGE_CONTENT));
|
||||
}
|
||||
@Test
|
||||
public void wrongUsername() throws IOException {
|
||||
HttpHeader rspHeader = authenticate(PAGE_USERNAME+"wrong", PAGE_PASSWORD);
|
||||
assertEquals(403, rspHeader.getHTTPCode());
|
||||
assertEquals(403, rspHeader.getStatusCode());
|
||||
assertThat(IOUtil.readContentAsString(rspHeader.getInputStream()),
|
||||
not(containsString(PAGE_CONTENT)));
|
||||
}
|
||||
@Test
|
||||
public void wrongPassword() throws IOException {
|
||||
HttpHeader rspHeader = authenticate(PAGE_USERNAME, PAGE_PASSWORD+"wrong");
|
||||
assertEquals(403, rspHeader.getHTTPCode());
|
||||
assertEquals(403, rspHeader.getStatusCode());
|
||||
assertThat(IOUtil.readContentAsString(rspHeader.getInputStream()),
|
||||
not(containsString(PAGE_CONTENT)));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue