-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
68 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 |
---|---|---|
@@ -1,8 +1,74 @@ | ||
aws-request-signer | ||
=== | ||
================== | ||
|
||
Helper to evaluate the signing headers for HTTP requests to Amazon Web Services. This is a Scala port of the Java [aws-signing-request-interceptor](https://github.com/inreachventures/aws-signing-request-interceptor). | ||
Helper to evaluate the signing headers for HTTP requests to Amazon Web Services. This is a Scala port of (part of) the Java [aws-signing-request-interceptor](https://github.com/inreachventures/aws-signing-request-interceptor). | ||
|
||
I originally needed this library to support AWS' [Elasticsearch Service](https://aws.amazon.com/elasticsearch-service/), but this library is 'AWS service agnostic'. | ||
|
||
|
||
Import via SBT | ||
-------------- | ||
|
||
In your build.sbt file, | ||
|
||
```sbt | ||
resolvers += Resolver.jcenterRepo | ||
|
||
libraryDependencies += "io.ticofab" %% "aws-request-signer" % "0.1.0" | ||
``` | ||
|
||
Usage | ||
----- | ||
|
||
The procedure to sign AWS Api requests is described on the [official documentation](http://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html). The idea is that each request must be signed through the evaluation of a hash which depends on the very request itself. The resulting string can then be added to the request either as a header or as a query param. This library focuses on the header way. | ||
|
||
You first need to instantiate the signer, for example: | ||
|
||
```scala | ||
val awsCredentialProvider = new StaticCredentialsProvider(new BasicAWSCredentials("YOUR-ID", "YOUR-SECRET")) | ||
val service = "es" | ||
val region = "eu-central-1" | ||
def clock(): DateTime = DateTime.now | ||
val signer = AwsSigner(awsCredentialProvider, region, service, clock) | ||
``` | ||
|
||
Then use it for each request, via | ||
|
||
```scala | ||
def getSignedHeaders(uri: String, | ||
method: String, | ||
queryParams: Map[String, String], | ||
headers: Map[String, String], | ||
payload: Option[Array[Byte]]): Map[String, String] | ||
``` | ||
|
||
|
||
Check the examples in the test folder of this project. Once you have the headers, add them to your HTTP request and fire it. | ||
|
||
|
||
Dependencies | ||
------------ | ||
|
||
* [AWS Java SDK][1] | ||
* [ScalaTest][2] | ||
|
||
License | ||
-------- | ||
|
||
Copyright 2015 Fabio Tiriticco - Fabway | ||
|
||
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. | ||
|
||
[1]: https://aws.amazon.com/sdk-for-java/ | ||
[2]: http://www.scalatest.org | ||
|