This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
gcp_remote_url.go
193 lines (163 loc) · 5.7 KB
/
gcp_remote_url.go
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
package implementations
import (
"context"
"time"
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
gax "github.com/googleapis/gax-go/v2"
"golang.org/x/oauth2"
credentials "cloud.google.com/go/iam/credentials/apiv1"
gcs "cloud.google.com/go/storage"
"github.com/flyteorg/flyteadmin/pkg/data/interfaces"
"github.com/flyteorg/flyteadmin/pkg/errors"
"github.com/flyteorg/flytestdlib/logger"
"github.com/flyteorg/flytestdlib/storage"
"github.com/golang/protobuf/ptypes/timestamp"
"google.golang.org/api/option"
credentialspb "google.golang.org/genproto/googleapis/iam/credentials/v1"
"google.golang.org/grpc/codes"
)
const gcsScheme = "gs"
type iamCredentialsInterface interface {
SignBlob(ctx context.Context, req *credentialspb.SignBlobRequest, opts ...gax.CallOption) (*credentialspb.SignBlobResponse, error)
GenerateAccessToken(ctx context.Context, req *credentialspb.GenerateAccessTokenRequest, opts ...gax.CallOption) (*credentialspb.GenerateAccessTokenResponse, error)
}
type gcsClientWrapper struct {
delegate *gcs.Client
}
type bucketHandleWrapper struct {
delegate *gcs.BucketHandle
}
type objectHandleWrapper struct {
delegate *gcs.ObjectHandle
}
type gcsInterface interface {
Bucket(name string) bucketHandleInterface
}
type bucketHandleInterface interface {
Object(name string) objectHandleInterface
}
type objectHandleInterface interface {
Attrs(ctx context.Context) (attrs *gcs.ObjectAttrs, err error)
}
// GCP-specific implementation of RemoteURLInterface
type GCPRemoteURL struct {
iamCredentialsClient iamCredentialsInterface
gcsClient gcsInterface
signDuration time.Duration
signingPrincipal string
}
type GCPGCSObject struct {
bucket string
object string
}
type impersonationTokenSource struct {
iamCredentialsClient iamCredentialsInterface
signingPrincipal string
}
func (c *gcsClientWrapper) Bucket(name string) bucketHandleInterface {
return &bucketHandleWrapper{delegate: c.delegate.Bucket(name)}
}
func (b *bucketHandleWrapper) Object(name string) objectHandleInterface {
return &objectHandleWrapper{delegate: b.delegate.Object(name)}
}
func (o *objectHandleWrapper) Attrs(ctx context.Context) (attrs *gcs.ObjectAttrs, err error) {
return o.delegate.Attrs(ctx)
}
func (g *GCPRemoteURL) splitURI(ctx context.Context, uri string) (GCPGCSObject, error) {
scheme, container, key, err := storage.DataReference(uri).Split()
if err != nil {
return GCPGCSObject{}, err
}
if scheme != gcsScheme {
logger.Debugf(ctx, "encountered unexpected scheme: %s for GCS URI: %s", scheme, uri)
return GCPGCSObject{}, errors.NewFlyteAdminErrorf(codes.InvalidArgument,
"unexpected scheme %s for GCS URI", scheme)
}
return GCPGCSObject{
bucket: container,
object: key,
}, nil
}
func (g *GCPRemoteURL) signURL(ctx context.Context, gcsURI GCPGCSObject) (string, error) {
opts := &gcs.SignedURLOptions{
Method: "GET",
GoogleAccessID: g.signingPrincipal,
SignBytes: func(b []byte) ([]byte, error) {
req := &credentialspb.SignBlobRequest{
Payload: b,
Name: "projects/-/serviceAccounts/" + g.signingPrincipal,
}
resp, err := g.iamCredentialsClient.SignBlob(ctx, req)
if err != nil {
return nil, err
}
return resp.SignedBlob, nil
},
Expires: time.Now().Add(g.signDuration),
}
return gcs.SignedURL(gcsURI.bucket, gcsURI.object, opts)
}
func (g *GCPRemoteURL) Get(ctx context.Context, uri string) (admin.UrlBlob, error) {
logger.Debugf(ctx, "Getting signed url for - %s", uri)
gcsURI, err := g.splitURI(ctx, uri)
if err != nil {
logger.Debugf(ctx, "failed to extract gcs bucket and object from uri: %s", uri)
return admin.UrlBlob{}, errors.NewFlyteAdminErrorf(codes.InvalidArgument, "invalid uri: %s", uri)
}
// First, get the size of the url blob.
attrs, err := g.gcsClient.Bucket(gcsURI.bucket).Object(gcsURI.object).Attrs(ctx)
if err != nil {
logger.Debugf(ctx, "failed to get object size for %s with %v", uri, err)
return admin.UrlBlob{}, errors.NewFlyteAdminErrorf(
codes.Internal, "failed to get object size for %s with %v", uri, err)
}
urlStr, err := g.signURL(ctx, gcsURI)
if err != nil {
logger.Warning(ctx,
"failed to presign url for uri [%s] for %v with err %v", uri, g.signDuration, err)
return admin.UrlBlob{}, errors.NewFlyteAdminErrorf(codes.Internal,
"failed to presign url for uri [%s] for %v with err %v", uri, g.signDuration, err)
}
return admin.UrlBlob{
Url: urlStr,
Bytes: attrs.Size,
}, nil
}
func (ts impersonationTokenSource) Token() (*oauth2.Token, error) {
req := credentialspb.GenerateAccessTokenRequest{
Name: "projects/-/serviceAccounts/" + ts.signingPrincipal,
Scope: []string{"https://www.googleapis.com/auth/devstorage.read_only"},
}
resp, err := ts.iamCredentialsClient.GenerateAccessToken(context.Background(), &req)
if err != nil {
return nil, err
}
return &oauth2.Token{
AccessToken: resp.AccessToken,
Expiry: asTime(resp.ExpireTime),
}, nil
}
func asTime(t *timestamp.Timestamp) time.Time {
return time.Unix(t.GetSeconds(), int64(t.GetNanos())).UTC()
}
func NewGCPRemoteURL(signingPrincipal string, signDuration time.Duration) interfaces.RemoteURLInterface {
iamCredentialsClient, err := credentials.NewIamCredentialsClient(context.Background())
if err != nil {
panic(err)
}
gcsClient, err := gcs.NewClient(context.Background(),
option.WithScopes(gcs.ScopeReadOnly),
option.WithTokenSource(impersonationTokenSource{
iamCredentialsClient: iamCredentialsClient,
signingPrincipal: signingPrincipal,
}))
if err != nil {
panic(err)
}
return &GCPRemoteURL{
iamCredentialsClient: iamCredentialsClient,
gcsClient: &gcsClientWrapper{delegate: gcsClient},
signDuration: signDuration,
signingPrincipal: signingPrincipal,
}
}