1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
// Copyright 2015 Google Inc. All Rights Reserved.
//
// 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 gcs
import (
"errors"
"fmt"
"log"
"net/http"
"net/url"
"time"
"golang.org/x/net/context"
"golang.org/x/oauth2"
"github.com/jacobsa/gcloud/httputil"
"github.com/jacobsa/reqtrace"
"google.golang.org/api/googleapi"
storagev1 "google.golang.org/api/storage/v1"
)
// OAuth scopes for GCS. For use with e.g. google.DefaultTokenSource.
const (
Scope_FullControl = storagev1.DevstorageFullControlScope
Scope_ReadOnly = storagev1.DevstorageReadOnlyScope
Scope_ReadWrite = storagev1.DevstorageReadWriteScope
)
// OpenBucketOptions contains options accepted by Conn.OpenBucket.
type OpenBucketOptions struct {
// Name is the name of the bucket to be opened.
Name string
// BillingProject specifies the project to be billed when making requests.
// This option is only needed for requester pays buckets and can be left empty otherwise.
// (https://cloud.google.com/storage/docs/requester-pays)
BillingProject string
}
// Conn represents a connection to GCS, pre-bound with a project ID and
// information required for authorization.
type Conn interface {
// Return a Bucket object representing the GCS bucket using the given options.
// Attempt to fail early in the case of bad credentials.
OpenBucket(
ctx context.Context,
options *OpenBucketOptions) (b Bucket, err error)
}
// ConnConfig contains options accepted by NewConn.
type ConnConfig struct {
// An oauth2 token source to use for authenticating to GCS.
//
// You probably want this one:
// http://godoc.org/golang.org/x/oauth2/google#DefaultTokenSource
TokenSource oauth2.TokenSource
// The URL to connect to, useful for testing with non-Google implementations.
Url *url.URL
// The value to set in User-Agent headers for outgoing HTTP requests. If
// empty, a default will be used.
UserAgent string
// The HTTP transport to use for communication with GCS. If not supplied,
// http.DefaultTransport will be used.
Transport httputil.CancellableRoundTripper
// The maximum amount of time to spend sleeping in a retry loop with
// exponential backoff for failed requests. The default of zero disables
// automatic retries.
//
// If you enable automatic retries, beware of the following:
//
// * Bucket.CreateObject will buffer the entire object contents in memory,
// so your object contents must not be too large to fit.
//
// * Bucket.NewReader needs to perform an additional round trip to GCS in
// order to find the latest object generation if you don't specify a
// particular generation.
//
// * Make sure your operations are idempotent, or that your application can
// tolerate it if not.
//
MaxBackoffSleep time.Duration
// Loggers for GCS events, and (much more verbose) HTTP requests and
// responses. If nil, no logging is performed.
GCSDebugLogger *log.Logger
HTTPDebugLogger *log.Logger
}
// Open a connection to GCS.
func NewConn(cfg *ConnConfig) (c Conn, err error) {
// Fix the user agent if there is none.
userAgent := cfg.UserAgent
if userAgent == "" {
const defaultUserAgent = "github.com-jacobsa-gloud-gcs"
userAgent = defaultUserAgent
}
// Choose the basic transport.
transport := cfg.Transport
if cfg.HTTPDebugLogger != nil {
transport = http.DefaultTransport.(httputil.CancellableRoundTripper)
}
// Enable HTTP debugging if requested.
if cfg.HTTPDebugLogger != nil {
transport = httputil.DebuggingRoundTripper(transport, cfg.HTTPDebugLogger)
}
// Wrap the HTTP transport in an oauth layer.
if cfg.Url.Hostname() == "www.googleapis.com" && cfg.TokenSource == nil {
err = errors.New("You must set TokenSource.")
return
}
transport = &oauth2.Transport{
Source: cfg.TokenSource,
Base: transport,
}
// Set up the connection.
c = &conn{
client: &http.Client{Transport: transport},
url: cfg.Url,
userAgent: userAgent,
maxBackoffSleep: cfg.MaxBackoffSleep,
debugLogger: cfg.GCSDebugLogger,
}
return
}
type conn struct {
client *http.Client
url *url.URL
userAgent string
maxBackoffSleep time.Duration
debugLogger *log.Logger
}
func (c *conn) OpenBucket(
ctx context.Context,
options *OpenBucketOptions) (b Bucket, err error) {
b = newBucket(c.client, c.url, c.userAgent, options.Name, options.BillingProject)
// Enable retry loops if requested.
// Enable retry loops if requested.
if c.maxBackoffSleep > 0 {
// TODO(jacobsa): Show the retries as distinct spans in the trace.
b = newRetryBucket(c.maxBackoffSleep, b)
}
// Enable tracing if appropriate.
if reqtrace.Enabled() {
b = &reqtraceBucket{
Wrapped: b,
}
}
// Print debug output if requested.
if c.debugLogger != nil {
b = NewDebugBucket(b, c.debugLogger)
}
// Attempt to make an innocuous request to the bucket, snooping for HTTP 403
// errors that indicate bad credentials. This lets us warn the user early in
// the latter case, with a more helpful message than just "HTTP 403
// Forbidden". Similarly for bad bucket names that don't collide with another
// bucket.
_, err = b.ListObjects(ctx, &ListObjectsRequest{MaxResults: 1})
var apiError *googleapi.Error
if errors.As(err, &apiError) {
switch apiError.Code {
case http.StatusForbidden:
err = fmt.Errorf(
"Bad credentials for bucket %q. Check the bucket name and your "+
"credentials.",
b.Name())
return
case http.StatusNotFound:
err = fmt.Errorf("Unknown bucket %q", b.Name())
return
}
}
// Otherwise, don't interfere.
err = nil
return
}
|