68 lines
1.8 KiB
Go
68 lines
1.8 KiB
Go
/*
|
|
Copyright 2018 the Heptio Ark contributors.
|
|
|
|
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.
|
|
*/
|
|
|
|
package aws
|
|
|
|
import (
|
|
"context"
|
|
"net/url"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/endpoints"
|
|
"github.com/aws/aws-sdk-go/aws/session"
|
|
"github.com/aws/aws-sdk-go/service/s3/s3manager"
|
|
)
|
|
|
|
// GetBucketRegion returns the AWS region that a bucket is in, or an error
|
|
// if the region cannot be determined.
|
|
func GetBucketRegion(bucket string) (string, error) {
|
|
var region string
|
|
|
|
session, err := session.NewSession()
|
|
if err != nil {
|
|
return "", errors.WithStack(err)
|
|
}
|
|
|
|
for _, partition := range endpoints.DefaultPartitions() {
|
|
for regionHint := range partition.Regions() {
|
|
region, _ = s3manager.GetBucketRegion(context.Background(), session, bucket, regionHint)
|
|
|
|
// we only need to try a single region hint per partition, so break after the first
|
|
break
|
|
}
|
|
|
|
if region != "" {
|
|
return region, nil
|
|
}
|
|
}
|
|
|
|
return "", errors.New("unable to determine bucket's region")
|
|
}
|
|
|
|
// IsValidS3URLScheme returns true if the scheme is http:// or https://
|
|
// and the url parses correctly, otherwise, return false
|
|
func IsValidS3URLScheme(s3URL string) bool {
|
|
u, err := url.Parse(s3URL)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
if u.Scheme != "http" && u.Scheme != "https" {
|
|
return false
|
|
}
|
|
return true
|
|
}
|