Jakob Buchgraber | e8f4e5e | 2018-11-30 12:50:22 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"). |
| 5 | * You may not use this file except in compliance with the License. |
| 6 | * A copy of the License is located at |
| 7 | * |
| 8 | * http://aws.amazon.com/apache2.0 |
| 9 | * |
| 10 | * or in the "license" file accompanying this file. This file is distributed |
| 11 | * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either |
| 12 | * express or implied. See the License for the specific language governing |
| 13 | * permissions and limitations under the License. |
| 14 | */ |
| 15 | package com.amazonaws.auth; |
| 16 | |
| 17 | import com.amazonaws.SdkClientException; |
| 18 | |
| 19 | import java.io.File; |
| 20 | import java.io.IOException; |
| 21 | |
| 22 | /** |
| 23 | * {@link AWSCredentialsProvider} implementation that loads AWS security |
| 24 | * credentials from a properties file provided on initialization. |
| 25 | * <p> |
| 26 | * The AWS access key ID is expected to be in the <code>accessKey</code> |
| 27 | * property and the AWS secret key is expected to be in the |
| 28 | * <code>secretKey</code> property. |
| 29 | */ |
| 30 | public class PropertiesFileCredentialsProvider implements |
| 31 | AWSCredentialsProvider { |
| 32 | |
| 33 | private final String credentialsFilePath; |
| 34 | |
| 35 | /** |
| 36 | * Creates a new PropertiesFileCredentialsProvider that will attempt to load |
| 37 | * a custom file from the path specified to read AWS security credentials. |
| 38 | * |
| 39 | * @param credentialsFilePath |
| 40 | * The custom classpath resource path to a properties file from |
| 41 | * which the AWS security credentials should be loaded. |
| 42 | * |
| 43 | * For example, |
| 44 | * <ul> |
| 45 | * <li>/etc/somewhere/credentials.properties</li> |
| 46 | * </ul> |
| 47 | */ |
| 48 | public PropertiesFileCredentialsProvider(String credentialsFilePath) { |
| 49 | if (credentialsFilePath == null) |
| 50 | throw new IllegalArgumentException( |
| 51 | "Credentials file path cannot be null"); |
| 52 | this.credentialsFilePath = credentialsFilePath; |
| 53 | } |
| 54 | |
| 55 | public AWSCredentials getCredentials() { |
| 56 | try { |
| 57 | return new PropertiesCredentials(new File(this.credentialsFilePath)); |
| 58 | } catch (IOException e) { |
| 59 | throw new SdkClientException( |
| 60 | "Unable to load AWS credentials from the " |
| 61 | + credentialsFilePath + " file", e); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | public void refresh() { |
| 66 | } |
| 67 | |
| 68 | @Override |
| 69 | public String toString() { |
| 70 | return getClass().getSimpleName() + "(" + credentialsFilePath + ")"; |
| 71 | } |
| 72 | } |