-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathdelta-sharing-commands.go
More file actions
418 lines (346 loc) · 11.8 KB
/
delta-sharing-commands.go
File metadata and controls
418 lines (346 loc) · 11.8 KB
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
//
// Copyright (c) 2015-2025 MinIO, Inc.
//
// This file is part of MinIO Object Storage stack
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
package madmin
import (
"context"
"encoding/json"
"fmt"
"net/http"
"net/url"
"strings"
"time"
)
// DeltaSharingTable represents a Delta table or Iceberg table (via UniForm)
type DeltaSharingTable struct {
Name string `json:"name"`
SourceType string `json:"sourceType"` // "delta" or "uniform"
// For Delta tables
Bucket string `json:"bucket,omitempty"`
Location string `json:"location,omitempty"`
// For Iceberg tables (UniForm)
Warehouse string `json:"warehouse,omitempty"`
Namespace DeltaSharingNS `json:"namespace,omitempty"`
Table string `json:"table,omitempty"`
}
// DeltaSharingNS handles namespace as both string and array JSON formats.
type DeltaSharingNS string
func (ns *DeltaSharingNS) UnmarshalJSON(data []byte) error {
var str string
if err := json.Unmarshal(data, &str); err == nil {
*ns = DeltaSharingNS(str)
return nil
}
var arr []string
if err := json.Unmarshal(data, &arr); err != nil {
return fmt.Errorf("namespace must be a string or array of strings: %w", err)
}
*ns = DeltaSharingNS(strings.Join(arr, "."))
return nil
}
// DeltaSharingSchema represents a schema containing tables
type DeltaSharingSchema struct {
Name string `json:"name"`
Description string `json:"description,omitempty"`
Tables []DeltaSharingTable `json:"tables"`
}
// DeltaSharingShare represents a Delta Sharing share
type DeltaSharingShare struct {
ID string `json:"id,omitempty"`
Name string `json:"name"`
Description string `json:"description,omitempty"`
Schemas []DeltaSharingSchema `json:"schemas"`
CreatedAt time.Time `json:"createdAt,omitempty"`
UpdatedAt time.Time `json:"updatedAt,omitempty"`
}
// CreateShareRequest represents the request to create a new share
type CreateShareRequest struct {
Name string `json:"name"`
Description string `json:"description,omitempty"`
Schemas []DeltaSharingSchema `json:"schemas"`
}
// CreateShareResponse represents the response from creating a share
type CreateShareResponse struct {
Share DeltaSharingShare `json:"share"`
}
// ListSharesResponse represents the response from listing shares
type ListSharesResponse struct {
Shares []DeltaSharingShare `json:"shares"`
}
// DeltaSharingToken represents an access token for a share
type DeltaSharingToken struct {
TokenID string `json:"tokenId"`
Token string `json:"token,omitempty"`
Description string `json:"description,omitempty"`
ShareID string `json:"shareId,omitempty"`
ShareName string `json:"shareName,omitempty"`
CreatedAt time.Time `json:"createdAt,omitempty"`
ExpiresAt *time.Time `json:"expiresAt,omitempty"`
Profile *DeltaSharingProfile `json:"profile,omitempty"`
}
// DeltaSharingProfile represents the Delta Sharing profile for clients
type DeltaSharingProfile struct {
ShareCredentialsVersion int `json:"shareCredentialsVersion"`
Endpoint string `json:"endpoint"`
BearerToken string `json:"bearerToken,omitempty"`
// OAuth 2.0 fields (version 2)
TokenEndpoint string `json:"tokenEndpoint,omitempty"`
ClientID string `json:"clientId,omitempty"`
ClientSecret string `json:"clientSecret,omitempty"`
Scope string `json:"scope,omitempty"`
}
// CreateTokenRequest represents the request to create a new token
type CreateTokenRequest struct {
Description string `json:"description,omitempty"`
ExpiresAt *time.Time `json:"expiresAt,omitempty"`
}
// CreateTokenResponse represents the response from creating a token
type CreateTokenResponse struct {
TokenID string `json:"tokenId"`
Token string `json:"token"`
ExpiresAt *time.Time `json:"expiresAt,omitempty"`
Profile *DeltaSharingProfile `json:"profile"`
}
// ListTokensResponse represents the response from listing tokens
type ListTokensResponse struct {
Tokens []DeltaSharingToken `json:"tokens"`
}
// CreateShare creates a new Delta Sharing share
func (adm *AdminClient) CreateShare(ctx context.Context, req CreateShareRequest) (*CreateShareResponse, error) {
data, err := json.Marshal(req)
if err != nil {
return nil, err
}
reqData := requestData{
relPath: adminAPIPrefix + "/delta-sharing/shares",
content: data,
}
resp, err := adm.executeMethod(ctx, http.MethodPost, reqData)
defer closeResponse(resp)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusCreated {
return nil, httpRespToErrorResponse(resp)
}
var result CreateShareResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, err
}
return &result, nil
}
// ListShares lists all Delta Sharing shares
func (adm *AdminClient) ListShares(ctx context.Context) (*ListSharesResponse, error) {
reqData := requestData{
relPath: adminAPIPrefix + "/delta-sharing/shares",
}
resp, err := adm.executeMethod(ctx, http.MethodGet, reqData)
defer closeResponse(resp)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, httpRespToErrorResponse(resp)
}
var result ListSharesResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, err
}
return &result, nil
}
// GetShareResponse represents the response from getting a share
type GetShareResponse struct {
Share DeltaSharingShare `json:"share"`
}
// GetShare retrieves details of a specific share
func (adm *AdminClient) GetShare(ctx context.Context, shareName string) (*DeltaSharingShare, error) {
reqData := requestData{
relPath: adminAPIPrefix + "/delta-sharing/shares/" + url.PathEscape(shareName),
}
resp, err := adm.executeMethod(ctx, http.MethodGet, reqData)
defer closeResponse(resp)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, httpRespToErrorResponse(resp)
}
var result GetShareResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, err
}
return &result.Share, nil
}
// UpdateShare updates a share's description or schemas
func (adm *AdminClient) UpdateShare(ctx context.Context, shareName string, description *string, schemas []DeltaSharingSchema) (*DeltaSharingShare, error) {
req := make(map[string]interface{})
if description != nil {
req["description"] = *description
}
if schemas != nil {
req["schemas"] = schemas
}
data, err := json.Marshal(req)
if err != nil {
return nil, err
}
reqData := requestData{
relPath: adminAPIPrefix + "/delta-sharing/shares/" + url.PathEscape(shareName),
content: data,
}
resp, err := adm.executeMethod(ctx, http.MethodPut, reqData)
defer closeResponse(resp)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, httpRespToErrorResponse(resp)
}
var result GetShareResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, err
}
return &result.Share, nil
}
// DeleteShare deletes a share and all its tokens
func (adm *AdminClient) DeleteShare(ctx context.Context, shareName string) error {
reqData := requestData{
relPath: adminAPIPrefix + "/delta-sharing/shares/" + url.PathEscape(shareName),
}
resp, err := adm.executeMethod(ctx, http.MethodDelete, reqData)
defer closeResponse(resp)
if err != nil {
return err
}
if resp.StatusCode != http.StatusNoContent && resp.StatusCode != http.StatusOK {
return httpRespToErrorResponse(resp)
}
return nil
}
// CreateToken creates a new access token for a share
func (adm *AdminClient) CreateToken(ctx context.Context, shareName string, req CreateTokenRequest) (*CreateTokenResponse, error) {
data, err := json.Marshal(req)
if err != nil {
return nil, err
}
reqData := requestData{
relPath: adminAPIPrefix + "/delta-sharing/shares/" + url.PathEscape(shareName) + "/tokens",
content: data,
}
resp, err := adm.executeMethod(ctx, http.MethodPost, reqData)
defer closeResponse(resp)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusCreated {
return nil, httpRespToErrorResponse(resp)
}
var result CreateTokenResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, err
}
return &result, nil
}
// ListTokens lists all tokens for a share
func (adm *AdminClient) ListTokens(ctx context.Context, shareName string) (*ListTokensResponse, error) {
reqData := requestData{
relPath: adminAPIPrefix + "/delta-sharing/shares/" + url.PathEscape(shareName) + "/tokens",
}
resp, err := adm.executeMethod(ctx, http.MethodGet, reqData)
defer closeResponse(resp)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, httpRespToErrorResponse(resp)
}
var result ListTokensResponse
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, err
}
return &result, nil
}
// GetTokenProfile retrieves the Delta Sharing profile for a token.
func (adm *AdminClient) GetTokenProfile(ctx context.Context, tokenID string) (*DeltaSharingProfile, error) {
reqData := requestData{
relPath: adminAPIPrefix + "/delta-sharing/tokens/" + url.PathEscape(tokenID) + "/profile",
}
resp, err := adm.executeMethod(ctx, http.MethodGet, reqData)
defer closeResponse(resp)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, httpRespToErrorResponse(resp)
}
var result DeltaSharingProfile
if err = json.NewDecoder(resp.Body).Decode(&result); err != nil {
return nil, err
}
return &result, nil
}
// DeleteToken deletes a specific token
func (adm *AdminClient) DeleteToken(ctx context.Context, tokenID string) error {
reqData := requestData{
relPath: adminAPIPrefix + "/delta-sharing/tokens/" + url.PathEscape(tokenID),
}
resp, err := adm.executeMethod(ctx, http.MethodDelete, reqData)
defer closeResponse(resp)
if err != nil {
return err
}
if resp.StatusCode != http.StatusNoContent && resp.StatusCode != http.StatusOK {
return httpRespToErrorResponse(resp)
}
return nil
}
// NewDeltaTable creates a Delta table configuration
func NewDeltaTable(name, bucket, location string) DeltaSharingTable {
return DeltaSharingTable{
Name: name,
SourceType: "delta",
Bucket: bucket,
Location: location,
}
}
// NewUniformTable creates an Iceberg UniForm table configuration
func NewUniformTable(name, warehouse, namespace, table string) DeltaSharingTable {
return DeltaSharingTable{
Name: name,
SourceType: "uniform",
Warehouse: warehouse,
Namespace: DeltaSharingNS(namespace),
Table: table,
}
}
// NewSchema creates a schema with tables
func NewSchema(name, description string, tables ...DeltaSharingTable) DeltaSharingSchema {
return DeltaSharingSchema{
Name: name,
Description: description,
Tables: tables,
}
}
// DeltaSharingError represents an error response from the Delta Sharing API
type DeltaSharingError struct {
ErrorCode string `json:"errorCode"`
Message string `json:"message"`
}
func (e DeltaSharingError) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode, e.Message)
}