-
Notifications
You must be signed in to change notification settings - Fork 974
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HTTPCLIENT-751: Support for RFC 2817 (Upgrading to TLS Within HTTP/1.1)
- Loading branch information
Showing
18 changed files
with
554 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
httpclient5/src/main/java/org/apache/hc/client5/http/impl/ProtocolSwitchStrategy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
* ==================================================================== | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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. | ||
* ==================================================================== | ||
* | ||
* This software consists of voluntary contributions made by many | ||
* individuals on behalf of the Apache Software Foundation. For more | ||
* information on the Apache Software Foundation, please see | ||
* <http://www.apache.org/>. | ||
* | ||
*/ | ||
package org.apache.hc.client5.http.impl; | ||
|
||
import java.util.Iterator; | ||
|
||
import org.apache.hc.core5.annotation.Internal; | ||
import org.apache.hc.core5.http.HttpHeaders; | ||
import org.apache.hc.core5.http.HttpMessage; | ||
import org.apache.hc.core5.http.ParseException; | ||
import org.apache.hc.core5.http.ProtocolException; | ||
import org.apache.hc.core5.http.ProtocolVersion; | ||
import org.apache.hc.core5.http.message.MessageSupport; | ||
import org.apache.hc.core5.http.ssl.TLS; | ||
|
||
/** | ||
* Protocol switch handler. | ||
* | ||
* @since 5.4 | ||
*/ | ||
@Internal | ||
public final class ProtocolSwitchStrategy { | ||
|
||
enum ProtocolSwitch { FAILURE, TLS } | ||
|
||
public ProtocolVersion switchProtocol(final HttpMessage response) throws ProtocolException { | ||
final Iterator<String> it = MessageSupport.iterateTokens(response, HttpHeaders.UPGRADE); | ||
|
||
ProtocolVersion tlsUpgrade = null; | ||
while (it.hasNext()) { | ||
final String token = it.next(); | ||
if (token.startsWith("TLS")) { | ||
// TODO: Improve handling of HTTP protocol token once HttpVersion has a #parse method | ||
try { | ||
tlsUpgrade = token.length() == 3 ? TLS.V_1_2.getVersion() : TLS.parse(token.replace("TLS/", "TLSv")); | ||
} catch (final ParseException ex) { | ||
throw new ProtocolException("Invalid protocol: " + token); | ||
} | ||
} else if (token.equals("HTTP/1.1")) { | ||
// TODO: Improve handling of HTTP protocol token once HttpVersion has a #parse method | ||
} else { | ||
throw new ProtocolException("Unsupported protocol: " + token); | ||
} | ||
} | ||
if (tlsUpgrade == null) { | ||
throw new ProtocolException("Invalid protocol switch response"); | ||
} | ||
return tlsUpgrade; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.