-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow for custom http clients to be provided
The ability to customize clients makes it easier to integrate this library into applications more smoothly. Applications may wish to set custom `User-Agent` headers, configure proxies through ways other than Java system properties, hook in metrics collection, and more.
- Loading branch information
Showing
9 changed files
with
183 additions
and
42 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
.../src/main/java/io/github/jeremylong/openvulnerability/client/HttpAsyncClientSupplier.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,46 @@ | ||
/* | ||
* 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. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* Copyright (c) 2023 Jeremy Long. All Rights Reserved. | ||
*/ | ||
package io.github.jeremylong.openvulnerability.client; | ||
|
||
import org.apache.hc.client5.http.impl.async.CloseableHttpAsyncClient; | ||
import org.apache.hc.client5.http.impl.async.HttpAsyncClients; | ||
import org.apache.hc.client5.http.impl.routing.SystemDefaultRoutePlanner; | ||
|
||
import java.net.ProxySelector; | ||
import java.util.function.Supplier; | ||
|
||
/** | ||
* Supplier for {@link CloseableHttpAsyncClient}s. | ||
* <p> | ||
* May be used to provide customized HTTP clients to data source clients. | ||
* <p> | ||
* Closing of the supplied {@link CloseableHttpAsyncClient} instances is a responsibility of the caller. | ||
*/ | ||
@FunctionalInterface | ||
public interface HttpAsyncClientSupplier extends Supplier<CloseableHttpAsyncClient> { | ||
|
||
static HttpAsyncClientSupplier getDefault() { | ||
return () -> { | ||
SystemDefaultRoutePlanner planner = new SystemDefaultRoutePlanner(ProxySelector.getDefault()); | ||
return HttpAsyncClients.custom() | ||
.setRoutePlanner(planner) | ||
.useSystemProperties() | ||
.build(); | ||
}; | ||
} | ||
|
||
} |
46 changes: 46 additions & 0 deletions
46
...ients/src/main/java/io/github/jeremylong/openvulnerability/client/HttpClientSupplier.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,46 @@ | ||
/* | ||
* 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. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* Copyright (c) 2023 Jeremy Long. All Rights Reserved. | ||
*/ | ||
package io.github.jeremylong.openvulnerability.client; | ||
|
||
import org.apache.hc.client5.http.impl.classic.CloseableHttpClient; | ||
import org.apache.hc.client5.http.impl.classic.HttpClientBuilder; | ||
import org.apache.hc.client5.http.impl.routing.SystemDefaultRoutePlanner; | ||
|
||
import java.net.ProxySelector; | ||
import java.util.function.Supplier; | ||
|
||
/** | ||
* Supplier for {@link CloseableHttpClient}s. | ||
* <p> | ||
* May be used to provide customized HTTP clients to data source clients. | ||
* <p> | ||
* Closing of the supplied {@link CloseableHttpClient} instances is a responsibility of the caller. | ||
*/ | ||
@FunctionalInterface | ||
public interface HttpClientSupplier extends Supplier<CloseableHttpClient> { | ||
|
||
static HttpClientSupplier getDefault() { | ||
return () -> { | ||
SystemDefaultRoutePlanner planner = new SystemDefaultRoutePlanner(ProxySelector.getDefault()); | ||
return HttpClientBuilder.create() | ||
.setRoutePlanner(planner) | ||
.useSystemProperties() | ||
.build(); | ||
}; | ||
} | ||
|
||
} |
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
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.