View Javadoc
1   /*
2    * Copyright 2012 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License,
5    * version 2.0 (the "License"); you may not use this file except in compliance
6    * with the License. You may obtain a copy of the License at:
7    *
8    *   https://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13   * License for the specific language governing permissions and limitations
14   * under the License.
15   */
16  package io.netty5.handler.codec.http;
17  
18  import io.netty5.handler.codec.compression.Brotli;
19  import io.netty5.handler.codec.compression.BrotliDecompressor;
20  import io.netty5.handler.codec.compression.Decompressor;
21  import io.netty5.handler.codec.compression.ZlibDecompressor;
22  import io.netty5.handler.codec.compression.ZlibWrapper;
23  
24  import static io.netty5.handler.codec.http.HttpHeaderValues.BR;
25  import static io.netty5.handler.codec.http.HttpHeaderValues.DEFLATE;
26  import static io.netty5.handler.codec.http.HttpHeaderValues.GZIP;
27  import static io.netty5.handler.codec.http.HttpHeaderValues.X_DEFLATE;
28  import static io.netty5.handler.codec.http.HttpHeaderValues.X_GZIP;
29  
30  /**
31   * Decompresses an {@link HttpMessage} and an {@link HttpContent} compressed in
32   * {@code gzip} or {@code deflate} encoding.  For more information on how this
33   * handler modifies the message, please refer to {@link HttpContentDecoder}.
34   */
35  public class HttpContentDecompressor extends HttpContentDecoder {
36  
37      private final boolean strict;
38  
39      /**
40       * Create a new {@link HttpContentDecompressor} in non-strict mode.
41       */
42      public HttpContentDecompressor() {
43          this(false);
44      }
45  
46      /**
47       * Create a new {@link HttpContentDecompressor}.
48       *
49       * @param strict    if {@code true} use strict handling of deflate if used, otherwise handle it in a
50       *                  more lenient fashion.
51       */
52      public HttpContentDecompressor(boolean strict) {
53          this.strict = strict;
54      }
55  
56      @Override
57      protected Decompressor newContentDecoder(String contentEncoding) throws Exception {
58          if (GZIP.contentEqualsIgnoreCase(contentEncoding) ||
59              X_GZIP.contentEqualsIgnoreCase(contentEncoding)) {
60              return ZlibDecompressor.newFactory(ZlibWrapper.GZIP).get();
61          }
62          if (DEFLATE.contentEqualsIgnoreCase(contentEncoding) ||
63              X_DEFLATE.contentEqualsIgnoreCase(contentEncoding)) {
64              final ZlibWrapper wrapper = strict ? ZlibWrapper.ZLIB : ZlibWrapper.ZLIB_OR_NONE;
65              ZlibDecompressor.newFactory(wrapper).get();
66          }
67          if (Brotli.isAvailable() && BR.contentEqualsIgnoreCase(contentEncoding)) {
68              return BrotliDecompressor.newFactory().get();
69          }
70  
71          // 'identity' or unsupported
72          return null;
73      }
74  }