-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta_adapters.go
322 lines (257 loc) · 7.04 KB
/
meta_adapters.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
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
package discovery
import (
"context"
"fmt"
"strings"
"time"
"github.com/overmindtech/sdp-go"
"google.golang.org/protobuf/types/known/structpb"
)
type TypeAdapter struct {
// The SourceHost to query adapters from
sh *AdapterHost
}
func (t *TypeAdapter) Type() string {
return "overmind-type"
}
func (t *TypeAdapter) Name() string {
return "overmind-type-meta-source"
}
func (t *TypeAdapter) Metadata() *sdp.AdapterMetadata {
return &sdp.AdapterMetadata{}
}
func newTypeItem(typ string) *sdp.Item {
return &sdp.Item{
Type: "overmind-type",
UniqueAttribute: "name",
Attributes: &sdp.ItemAttributes{
AttrStruct: &structpb.Struct{
Fields: map[string]*structpb.Value{
"name": structpb.NewStringValue(typ),
},
},
},
Scope: "global",
}
}
func (t *TypeAdapter) Get(ctx context.Context, scope string, query string, ignoreCache bool) (*sdp.Item, error) {
if !strings.Contains("global", scope) {
return nil, &sdp.QueryError{
ErrorType: sdp.QueryError_NOSCOPE,
ErrorString: fmt.Sprintf("'%v' only available in global scope", t.Type()),
}
}
for _, adapter := range t.sh.Adapters() {
if adapter.Type() == query {
return newTypeItem(adapter.Type()), nil
}
}
return nil, &sdp.QueryError{
ErrorType: sdp.QueryError_NOTFOUND,
ErrorString: fmt.Sprintf("type '%v' not found", query),
}
}
func (t *TypeAdapter) List(ctx context.Context, scope string, ignoreCache bool) ([]*sdp.Item, error) {
if !strings.Contains("global", scope) {
return nil, &sdp.QueryError{
ErrorType: sdp.QueryError_NOSCOPE,
ErrorString: fmt.Sprintf("%v only available in global scope", t.Type()),
}
}
typesMap := make(map[string][]Adapter)
for _, adapter := range t.sh.Adapters() {
if hiddenSource, ok := adapter.(HiddenAdapter); ok {
if hiddenSource.Hidden() {
// Skip hidden adapters on list
continue
}
}
typesMap[adapter.Type()] = append(typesMap[adapter.Type()], adapter)
}
items := make([]*sdp.Item, 0)
for typ := range typesMap {
items = append(items, newTypeItem(typ))
}
return items, nil
}
// Scopes Returns just global since all the Overmind types are global
func (m *TypeAdapter) Scopes() []string {
return []string{"global"}
}
// Weight Default weight to satisfy `adapter` interface
func (m *TypeAdapter) Weight() int {
return 100
}
// DefaultCacheDuration Defaults to a vary low value since these resources
// aren't expensive to get
func (m *TypeAdapter) DefaultCacheDuration() time.Duration {
return time.Second
}
// Hidden These resources should be hidden
func (m *TypeAdapter) Hidden() bool {
return true
}
type ScopeAdapter struct {
// The AdapterHost to query adapters from
sh *AdapterHost
}
func (t *ScopeAdapter) Type() string {
return "overmind-scope"
}
func (t *ScopeAdapter) Name() string {
return "overmind-scope-meta-adapter"
}
func (t *ScopeAdapter) Metadata() *sdp.AdapterMetadata {
return &sdp.AdapterMetadata{}
}
func newScopeItem(scope string) *sdp.Item {
return &sdp.Item{
Type: "overmind-scope",
UniqueAttribute: "name",
Attributes: &sdp.ItemAttributes{
AttrStruct: &structpb.Struct{
Fields: map[string]*structpb.Value{
"name": structpb.NewStringValue(scope),
},
},
},
Scope: "global",
}
}
func (t *ScopeAdapter) Get(ctx context.Context, scope string, query string, ignoreCache bool) (*sdp.Item, error) {
if !strings.Contains("global", scope) {
return nil, &sdp.QueryError{
ErrorType: sdp.QueryError_NOSCOPE,
ErrorString: fmt.Sprintf("%v only available in global scope", t.Type()),
}
}
for _, adapter := range t.sh.Adapters() {
for _, scope := range adapter.Scopes() {
if scope == query {
return newScopeItem(scope), nil
}
}
}
return nil, &sdp.QueryError{
ErrorType: sdp.QueryError_NOTFOUND,
ErrorString: fmt.Sprintf("scope '%v' not found", query),
}
}
func (t *ScopeAdapter) List(ctx context.Context, scope string, ignoreCache bool) ([]*sdp.Item, error) {
if !strings.Contains("global", scope) {
return nil, &sdp.QueryError{
ErrorType: sdp.QueryError_NOSCOPE,
ErrorString: fmt.Sprintf("%v only available in global scope", t.Type()),
}
}
scopesMap := make(map[string]bool)
for _, adapter := range t.sh.Adapters() {
if hiddenAdapter, ok := adapter.(HiddenAdapter); ok {
if hiddenAdapter.Hidden() {
// Skip hidden adapters on list
continue
}
}
for _, scope := range adapter.Scopes() {
scopesMap[scope] = true
}
}
items := make([]*sdp.Item, 0)
for scope := range scopesMap {
items = append(items, newScopeItem(scope))
}
return items, nil
}
// Scopes Returns just global since all the Overmind types are global
func (m *ScopeAdapter) Scopes() []string {
return []string{"global"}
}
// Weight Default weight to satisfy `Adapter` interface
func (m *ScopeAdapter) Weight() int {
return 100
}
// DefaultCacheDuration Defaults to a vary low value since these resources
// aren't expensive to get
func (m *ScopeAdapter) DefaultCacheDuration() time.Duration {
return time.Second
}
// Hidden These resources should be hidden
func (m *ScopeAdapter) Hidden() bool {
return true
}
// SourcesAdapter A source which returns the details of all running adapter as
// items
type SourcesAdapter struct {
sh *AdapterHost
SearchResultsLimit int
}
func (s *SourcesAdapter) Type() string {
return "overmind-adapter"
}
func (s *SourcesAdapter) Name() string {
return "overmind-adapter-meta-adapter"
}
func (s *SourcesAdapter) Metadata() *sdp.AdapterMetadata {
return &sdp.AdapterMetadata{}
}
func (s *SourcesAdapter) Scopes() []string {
return []string{"global"}
}
func (s *SourcesAdapter) Get(ctx context.Context, scope string, query string, ignoreCache bool) (*sdp.Item, error) {
for _, adapter := range s.sh.Adapters() {
if adapter.Name() == query {
return s.adapterToItem(adapter)
}
}
return nil, &sdp.QueryError{
ErrorType: sdp.QueryError_NOTFOUND,
}
}
func (s *SourcesAdapter) List(ctx context.Context, scope string, ignoreCache bool) ([]*sdp.Item, error) {
adapters := s.sh.Adapters()
items := make([]*sdp.Item, len(adapters))
var item *sdp.Item
var err error
for i, adapter := range adapters {
item, err = s.adapterToItem(adapter)
if err != nil {
return nil, sdp.NewQueryError(err)
}
items[i] = item
}
return items, nil
}
func (s *SourcesAdapter) Hidden() bool {
return true
}
func (s *SourcesAdapter) Weight() int {
return 100
}
func (s *SourcesAdapter) adapterToItem(adapter Adapter) (*sdp.Item, error) {
attrMap := make(map[string]interface{})
attrMap["name"] = adapter.Name()
attrMap["scopes"] = adapter.Scopes()
_, searchable := adapter.(SearchableAdapter)
attrMap["searchable"] = searchable
var hidden bool
if h, ok := adapter.(HiddenAdapter); ok {
hidden = h.Hidden()
} else {
hidden = false
}
attrMap["hidden"] = hidden
attributes, err := sdp.ToAttributes(attrMap)
if err != nil {
return nil, &sdp.QueryError{
ErrorType: sdp.QueryError_OTHER,
ErrorString: err.Error(),
}
}
item := sdp.Item{
Type: s.Type(),
UniqueAttribute: "name",
Scope: "global",
Attributes: attributes,
}
return &item, nil
}