-
Notifications
You must be signed in to change notification settings - Fork 11
/
connectors.go
104 lines (83 loc) · 3.81 KB
/
connectors.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
package connectors
import (
"context"
"fmt"
"io"
"github.com/amp-labs/connectors/common"
"github.com/amp-labs/connectors/internal/datautils"
"github.com/amp-labs/connectors/providers"
)
// Connector is an interface that can be used to implement a connector with
// basic configuration about the provider.
type Connector interface {
fmt.Stringer
io.Closer
// JSONHTTPClient returns the underlying JSON HTTP client. This is useful for
// testing, or for calling methods that aren't exposed by the Connector
// interface directly. Authentication and token refreshes will be handled automatically.
JSONHTTPClient() *common.JSONHTTPClient
// HTTPClient returns the underlying HTTP client. This is useful for proxy requests.
HTTPClient() *common.HTTPClient
// Provider returns the connector provider.
Provider() providers.Provider
}
// URLConnector is an interface that extends the Connector interface with the ability to
// retrieve URLs for resources.
type URLConnector interface {
Connector
// GetURL returns the URL of some resource. The resource is provider-specific.
// The URL is returned as a string, or an error is returned if the URL cannot be
// retrieved. The precise meaning of the resource is provider-specific, and the
// caller should consult the provider's documentation for more information.
// The args parameter is a map of key-value pairs that can be used to customize
// the URL. The keys and values are provider-specific, and the caller should
// consult the provider's documentation for more information. Certain providers
// may ignore the args parameter entirely if it's unnecessary.
GetURL(resource string, args map[string]any) (string, error)
}
// ReadConnector is an interface that extends the Connector interface with read capabilities.
type ReadConnector interface {
Connector
// Read reads a page of data from the connector. This can be called multiple
// times to read all the data. The caller is responsible for paging, by
// passing the NextPage value correctly, and by terminating the loop when
// Done is true. The caller is also responsible for handling errors.
// Authentication corner cases are handled internally, but all other errors
// are returned to the caller.
Read(ctx context.Context, params ReadParams) (*ReadResult, error)
}
// WriteConnector is an interface that extends the Connector interface with write capabilities.
type WriteConnector interface {
Connector
Write(ctx context.Context, params WriteParams) (*WriteResult, error)
}
// DeleteConnector is an interface that extends the Connector interface with delete capabilities.
type DeleteConnector interface {
Connector
Delete(ctx context.Context, params DeleteParams) (*DeleteResult, error)
}
// ObjectMetadataConnector is an interface that extends the Connector interface with
// the ability to list object metadata.
type ObjectMetadataConnector interface {
Connector
ListObjectMetadata(ctx context.Context, objectNames []string) (*ListObjectMetadataResult, error)
}
// AuthMetadataConnector is an interface that extends the Connector interface with
// the ability to retrieve metadata information about authentication.
type AuthMetadataConnector interface {
Connector
// GetPostAuthInfo returns authentication metadata.
GetPostAuthInfo(ctx context.Context) (*common.PostAuthInfo, error)
}
// We re-export the following types so that they can be used by consumers of this library.
type (
ReadParams = common.ReadParams
WriteParams = common.WriteParams
DeleteParams = common.DeleteParams
ReadResult = common.ReadResult
WriteResult = common.WriteResult
DeleteResult = common.DeleteResult
ListObjectMetadataResult = common.ListObjectMetadataResult
ErrorWithStatus = common.HTTPStatusError
)
var Fields = datautils.NewStringSet // nolint:gochecknoglobals