S3Credentials.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:4k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.fs.s3;
  19. import java.net.URI;
  20. import org.apache.hadoop.conf.Configuration;
  21. /**
  22.  * <p>
  23.  * Extracts AWS credentials from the filesystem URI or configuration.
  24.  * </p>
  25.  */
  26. public class S3Credentials {
  27.   
  28.   private String accessKey;
  29.   private String secretAccessKey; 
  30.   /**
  31.    * @throws IllegalArgumentException if credentials for S3 cannot be
  32.    * determined.
  33.    */
  34.   public void initialize(URI uri, Configuration conf) {
  35.     if (uri.getHost() == null) {
  36.       throw new IllegalArgumentException("Invalid hostname in URI " + uri);
  37.     }
  38.     
  39.     String userInfo = uri.getUserInfo();
  40.     if (userInfo != null) {
  41.       int index = userInfo.indexOf(':');
  42.       if (index != -1) {
  43.         accessKey = userInfo.substring(0, index);
  44.         secretAccessKey = userInfo.substring(index + 1);
  45.       } else {
  46.         accessKey = userInfo;
  47.       }
  48.     }
  49.     
  50.     String scheme = uri.getScheme();
  51.     String accessKeyProperty = String.format("fs.%s.awsAccessKeyId", scheme);
  52.     String secretAccessKeyProperty =
  53.       String.format("fs.%s.awsSecretAccessKey", scheme);
  54.     if (accessKey == null) {
  55.       accessKey = conf.get(accessKeyProperty);
  56.     }
  57.     if (secretAccessKey == null) {
  58.       secretAccessKey = conf.get(secretAccessKeyProperty);
  59.     }
  60.     if (accessKey == null && secretAccessKey == null) {
  61.       throw new IllegalArgumentException("AWS " +
  62.                                          "Access Key ID and Secret Access " +
  63.                                          "Key must be specified as the " +
  64.                                          "username or password " +
  65.                                          "(respectively) of a " + scheme +
  66.                                          " URL, or by setting the " +
  67.                                          accessKeyProperty + " or " +
  68.                                          secretAccessKeyProperty +
  69.                                          " properties (respectively).");
  70.     } else if (accessKey == null) {
  71.       throw new IllegalArgumentException("AWS " +
  72.                                          "Access Key ID must be specified " +
  73.                                          "as the username of a " + scheme +
  74.                                          " URL, or by setting the " +
  75.                                          accessKeyProperty + " property.");
  76.     } else if (secretAccessKey == null) {
  77.       throw new IllegalArgumentException("AWS " +
  78.                                          "Secret Access Key must be " +
  79.                                          "specified as the password of a " +
  80.                                          scheme + " URL, or by setting the " +
  81.                                          secretAccessKeyProperty +
  82.                                          " property.");       
  83.     }
  84.   }
  85.   
  86.   public String getAccessKey() {
  87.     return accessKey;
  88.   }
  89.   
  90.   public String getSecretAccessKey() {
  91.     return secretAccessKey;
  92.   }
  93. }