-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First draft of a simple auth-aware HttpClient service (#40)
* First draft of a simple auth-aware HttpClient service * Small improvements * Fix checkstyle problems * Making checkstyle problems fail the build * Corrections to Karaf feature file and blueprint.xml
- Loading branch information
Showing
9 changed files
with
222 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,5 @@ | |
workbench.xmi | ||
target | ||
build | ||
.DS_Store | ||
bin/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
apply plugin: 'osgi' | ||
|
||
description = 'Islandora CLAW HTTP Client' | ||
|
||
dependencies { | ||
compile group: 'org.apache.httpcomponents', name: 'httpclient-osgi', version: '4.5.3' | ||
|
||
testCompile group: 'junit', name: 'junit', version:'4.12' | ||
} | ||
|
||
jar { | ||
manifest { | ||
description project.description | ||
docURL project.docURL | ||
vendor project.vendor | ||
license project.license | ||
|
||
instruction 'Import-Package', | ||
'org.apache.http,' + | ||
'org.apache.http.protocol,' + | ||
'org.apache.http.message,' + | ||
'org.apache.http.impl.client,' + | ||
'org.apache.http.client,' + | ||
defaultOsgiImports | ||
instruction 'Export-Package', 'ca.islandora.alpaca.http.client' | ||
} | ||
} | ||
|
||
artifacts { | ||
archives (file('build/cfg/main/ca.islandora.alpaca.http.client.cfg')) { | ||
classifier 'configuration' | ||
type 'cfg' | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
islandora-http-client/src/main/cfg/ca.islandora.alpaca.http.client.cfg
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,3 @@ | ||
# The static token value to be used for authentication by the HttpClient available as an OSGi service for | ||
# other services to use against the Fedora repository | ||
token.value=islandora |
85 changes: 85 additions & 0 deletions
85
...p-client/src/main/java/ca/islandora/alpaca/http/client/StaticTokenRequestInterceptor.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,85 @@ | ||
/* | ||
* Licensed to Islandora Foundation under one or more contributor license | ||
* agreements. See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* The Islandora Foundation licenses this file to you under the MIT License. | ||
* You may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://opensource.org/licenses/MIT | ||
* | ||
* 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. | ||
*/ | ||
|
||
package ca.islandora.alpaca.http.client; | ||
|
||
import static java.util.Objects.requireNonNull; | ||
|
||
import org.apache.http.Header; | ||
import org.apache.http.HttpRequest; | ||
import org.apache.http.HttpRequestInterceptor; | ||
import org.apache.http.client.HttpClient; | ||
import org.apache.http.impl.client.HttpClientBuilder; | ||
import org.apache.http.message.BasicHeader; | ||
import org.apache.http.protocol.HttpContext; | ||
|
||
/** | ||
* Adds a single authentication header to any request that does not | ||
* already have at least one authentication header. | ||
* | ||
* @author ajs6f | ||
* | ||
*/ | ||
public class StaticTokenRequestInterceptor implements HttpRequestInterceptor { | ||
|
||
public static final String AUTH_HEADER = "Authorization"; | ||
|
||
private Header header; | ||
|
||
/** | ||
* Default constructor | ||
*/ | ||
public StaticTokenRequestInterceptor() { | ||
} | ||
|
||
/** | ||
* @param token the authentication token to use | ||
*/ | ||
public StaticTokenRequestInterceptor(final String token) { | ||
this.header = makeHeader(token); | ||
} | ||
|
||
/** | ||
* @param token the authentication token to use | ||
*/ | ||
public void setToken(final String token) { | ||
this.header = makeHeader(token); | ||
} | ||
|
||
private static Header makeHeader(final String token) { | ||
return new BasicHeader(AUTH_HEADER, "Bearer " + requireNonNull(token, "Token must not be null!")); | ||
} | ||
|
||
@Override | ||
public void process(final HttpRequest request, final HttpContext context) { | ||
// we do not inject if auth headers present | ||
if (request.getFirstHeader(AUTH_HEADER) == null) { | ||
request.addHeader(header); | ||
} | ||
} | ||
|
||
/** | ||
* Convenience factory method. | ||
* | ||
* @param interceptor the interceptor to use, presumably an instance of {@link StaticTokenRequestInterceptor} | ||
* @return a default-configuration {@link HttpClient} that is wrapped with this interceptor | ||
*/ | ||
public static HttpClient defaultClient(final StaticTokenRequestInterceptor interceptor) { | ||
return HttpClientBuilder.create().addInterceptorFirst(interceptor).build(); | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
islandora-http-client/src/main/resources/OSGI-INF/blueprint/blueprint.xml
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,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0" | ||
xsi:schemaLocation=" | ||
http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0 http://aries.apache.org/schemas/blueprint-cm/blueprint-cm-1.1.0.xsd | ||
http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd"> | ||
|
||
<!-- OSGI blueprint property placeholder --> | ||
<cm:property-placeholder id="properties" persistent-id="ca.islandora.alpaca.http.client" update-strategy="reload" > | ||
<cm:default-properties> | ||
<cm:property name="token.value" value="islandora"/> | ||
</cm:default-properties> | ||
</cm:property-placeholder> | ||
|
||
<service id="httpClient" interface="org.apache.http.client.HttpClient"> | ||
<service-properties> | ||
<entry key="osgi.jndi.service.name" value="claw/httpClient"/> | ||
</service-properties> | ||
<bean class="ca.islandora.alpaca.http.client.StaticTokenRequestInterceptor" factory-method="defaultClient"> | ||
<argument> | ||
<bean class="ca.islandora.alpaca.http.client.StaticTokenRequestInterceptor"> | ||
<property name="token" value="${token.value}"/> | ||
</bean> | ||
</argument> | ||
</bean> | ||
</service> | ||
|
||
</blueprint> |
56 changes: 56 additions & 0 deletions
56
...ient/src/test/java/ca/islandora/alpaca/http/client/StaticTokenRequestInterceptorTest.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,56 @@ | ||
/* | ||
* Licensed to Islandora Foundation under one or more contributor license | ||
* agreements. See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* The Islandora Foundation licenses this file to you under the MIT License. | ||
* You may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://opensource.org/licenses/MIT | ||
* | ||
* 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. | ||
*/ | ||
|
||
package ca.islandora.alpaca.http.client; | ||
|
||
import static ca.islandora.alpaca.http.client.StaticTokenRequestInterceptor.AUTH_HEADER; | ||
|
||
import org.apache.http.Header; | ||
import org.apache.http.HttpRequest; | ||
import org.apache.http.client.methods.HttpGet; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
/** | ||
* @author ajs6f | ||
* | ||
*/ | ||
public class StaticTokenRequestInterceptorTest extends Assert { | ||
|
||
@Test | ||
public void shouldInjectHeaderWhenNoAuthHeadersPresent() { | ||
final StaticTokenRequestInterceptor testInterceptor = new StaticTokenRequestInterceptor("testToken"); | ||
final HttpRequest request = new HttpGet(); | ||
testInterceptor.process(request, null); | ||
final Header[] authHeaders = request.getHeaders(AUTH_HEADER); | ||
assertEquals("Should only be one auth header!", 1, authHeaders.length); | ||
assertEquals("Wrong value for header!", "Bearer testToken", authHeaders[0].getValue()); | ||
} | ||
|
||
@Test | ||
public void shouldNotInjectHeaderWhenAuthHeadersPresent() { | ||
final StaticTokenRequestInterceptor testInterceptor = new StaticTokenRequestInterceptor(); | ||
testInterceptor.setToken("testToken"); | ||
final HttpRequest request = new HttpGet(); | ||
request.addHeader(AUTH_HEADER, "fake header"); | ||
testInterceptor.process(request, null); | ||
final Header[] authHeaders = request.getHeaders(AUTH_HEADER); | ||
assertEquals("Should only be one auth header!", 1, authHeaders.length); | ||
assertEquals("Wrong value for header!", "fake header", authHeaders[0].getValue()); | ||
} | ||
} |
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