1 /*
2 * ====================================================================
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License. You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied. See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 * ====================================================================
20 *
21 * This software consists of voluntary contributions made by many
22 * individuals on behalf of the Apache Software Foundation. For more
23 * information on the Apache Software Foundation, please see
24 * <http://www.apache.org/>.
25 *
26 */
27
28 package org.apache.http.protocol;
29
30 import java.io.IOException;
31
32 import org.apache.http.HttpEntity;
33 import org.apache.http.HttpEntityEnclosingRequest;
34 import org.apache.http.HttpException;
35 import org.apache.http.HttpRequest;
36 import org.apache.http.HttpRequestInterceptor;
37 import org.apache.http.HttpVersion;
38 import org.apache.http.ProtocolException;
39 import org.apache.http.ProtocolVersion;
40 import org.apache.http.annotation.ThreadingBehavior;
41 import org.apache.http.annotation.Contract;
42 import org.apache.http.util.Args;
43
44 /**
45 * RequestContent is the most important interceptor for outgoing requests.
46 * It is responsible for delimiting content length by adding
47 * {@code Content-Length} or {@code Transfer-Content} headers based
48 * on the properties of the enclosed entity and the protocol version.
49 * This interceptor is required for correct functioning of client side protocol
50 * processors.
51 *
52 * @since 4.0
53 */
54 @Contract(threading = ThreadingBehavior.IMMUTABLE)
55 public class RequestContent implements HttpRequestInterceptor {
56
57 private final boolean overwrite;
58
59 /**
60 * Default constructor. The {@code Content-Length} or {@code Transfer-Encoding}
61 * will cause the interceptor to throw {@link ProtocolException} if already present in the
62 * response message.
63 */
64 public RequestContent() {
65 this(false);
66 }
67
68 /**
69 * Constructor that can be used to fine-tune behavior of this interceptor.
70 *
71 * @param overwrite If set to {@code true} the {@code Content-Length} and
72 * {@code Transfer-Encoding} headers will be created or updated if already present.
73 * If set to {@code false} the {@code Content-Length} and
74 * {@code Transfer-Encoding} headers will cause the interceptor to throw
75 * {@link ProtocolException} if already present in the response message.
76 *
77 * @since 4.2
78 */
79 public RequestContent(final boolean overwrite) {
80 super();
81 this.overwrite = overwrite;
82 }
83
84 @Override
85 public void process(final HttpRequest request, final HttpContext context)
86 throws HttpException, IOException {
87 Args.notNull(request, "HTTP request");
88 if (request instanceof HttpEntityEnclosingRequest) {
89 if (this.overwrite) {
90 request.removeHeaders(HTTP.TRANSFER_ENCODING);
91 request.removeHeaders(HTTP.CONTENT_LEN);
92 } else {
93 if (request.containsHeader(HTTP.TRANSFER_ENCODING)) {
94 throw new ProtocolException("Transfer-encoding header already present");
95 }
96 if (request.containsHeader(HTTP.CONTENT_LEN)) {
97 throw new ProtocolException("Content-Length header already present");
98 }
99 }
100 final ProtocolVersion ver = request.getRequestLine().getProtocolVersion();
101 final HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity();
102 if (entity == null) {
103 request.addHeader(HTTP.CONTENT_LEN, "0");
104 return;
105 }
106 // Must specify a transfer encoding or a content length
107 if (entity.isChunked() || entity.getContentLength() < 0) {
108 if (ver.lessEquals(HttpVersion.HTTP_1_0)) {
109 throw new ProtocolException(
110 "Chunked transfer encoding not allowed for " + ver);
111 }
112 request.addHeader(HTTP.TRANSFER_ENCODING, HTTP.CHUNK_CODING);
113 } else {
114 request.addHeader(HTTP.CONTENT_LEN, Long.toString(entity.getContentLength()));
115 }
116 // Specify a content type if known
117 if (entity.getContentType() != null && !request.containsHeader(
118 HTTP.CONTENT_TYPE )) {
119 request.addHeader(entity.getContentType());
120 }
121 // Specify a content encoding if known
122 if (entity.getContentEncoding() != null && !request.containsHeader(
123 HTTP.CONTENT_ENCODING)) {
124 request.addHeader(entity.getContentEncoding());
125 }
126 }
127 }
128
129 }
130