forked from meshery/meshery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproviders.go
470 lines (377 loc) · 20.3 KB
/
providers.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
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
package models
import (
"net/http"
"github.com/gofrs/uuid"
"github.com/layer5io/meshery/server/models/connections"
"github.com/layer5io/meshkit/broker"
"github.com/layer5io/meshkit/database"
"github.com/layer5io/meshkit/logger"
mesherykube "github.com/layer5io/meshkit/utils/kubernetes"
SMP "github.com/layer5io/service-mesh-performance/spec"
)
// ContextKey is a custom type for setting context key
type ContextKey string
// ExtensionInput - input for a plugin
type ExtensionInput struct {
DBHandler *database.Handler
MeshSyncChannel chan struct{}
Logger logger.Handler
BrokerConn broker.Handler
}
// Router
type Router struct {
HTTPHandler http.Handler
Path string
}
// ExtensionOutput - output for a plugin
type ExtensionOutput struct {
Router *Router
}
// ProviderType - for representing provider types
type ProviderType string
// ProviderProperties represents the structure of properties that a provider has
type ProviderProperties struct {
ProviderType ProviderType `json:"provider_type,omitempty"`
PackageVersion string `json:"package_version,omitempty"`
PackageURL string `json:"package_url,omitempty"`
ProviderName string `json:"provider_name,omitempty"`
ProviderDescription []string `json:"provider_description,omitempty"`
ProviderURL string `json:"provider_url,omitempty"`
Extensions Extensions `json:"extensions,omitempty"`
Capabilities Capabilities `json:"capabilities,omitempty"`
RestrictedAccess RestrictedAccess `json:"restrictedAccess,omitempty"`
}
type Adapters struct {
Istio bool `json:"istio,omitempty"`
Citrix bool `json:"citrix,omitempty"`
Consul bool `json:"consul,omitempty"`
Cilium bool `json:"cilium,omitempty"`
AppMesh bool `json:"appMesh,omitempty"`
Kuma bool `json:"kuma,omitempty"`
Linkerd bool `json:"linkerd,omitempty"`
Nginx bool `json:"nginx,omitempty"`
NSM bool `json:"nsm,omitempty"`
}
type Configuration struct {
Designs bool `json:"designs,omitempty"`
Applications bool `json:"applications,omitempty"`
Filters bool `json:"filters,omitempty"`
}
type NavigatorComponents struct {
Dashboard bool `json:"dashboard,omitempty"`
Performance bool `json:"performance,omitempty"`
Conformance bool `json:"conformance,omitempty"`
Extensions bool `json:"extensions,omitempty"`
Toggler bool `json:"toggler,omitempty"`
Help bool `json:"help,omitempty"`
Lifecycle Adapters `json:"lifecycle,omitempty"`
Configuration Configuration `json:"configuration,omitempty"`
}
type HeaderComponents struct {
ContextSwitcher bool `json:"contextSwitcher,omitempty"`
Settings bool `json:"settings,omitempty"`
Notifications bool `json:"notifications,omitempty"`
Profile bool `json:"profile,omitempty"` // todo: account can have other structs, if needed needs to expand
}
type MesheryUICapabilities struct {
Navigator NavigatorComponents `json:"navigator,omitempty"`
Header HeaderComponents `json:"header,omitempty"`
}
type RestrictedAccess struct {
IsMesheryUIRestricted bool `json:"isMesheryUiRestricted"`
AllowedComponents MesheryUICapabilities `json:"allowedComponents,omitempty"`
}
// Extensions defines the UI extension points
type Extensions struct {
Navigator NavigatorExtensions `json:"navigator,omitempty"`
UserPrefs UserPrefsExtensions `json:"user_prefs,omitempty"`
GraphQL GraphQLExtensions `json:"graphql,omitempty"`
Acccount AccountExtensions `json:"account,omitempty"`
Collaborator CollaboratorExtensions `json:"collaborator,omitempty"`
}
// NavigatorExtensions is a collection of NavigatorExtension
type NavigatorExtensions []NavigatorExtension
// UserPrefsExtensions is a collection of UserPrefsExtension
type UserPrefsExtensions []UserPrefsExtension
// GraphQLExtensions is a collection of GraphQLExtension endpoints
type GraphQLExtensions []GraphQLExtension
// NavigatorExtensions is a collection of AccountExtension
type AccountExtensions []AccountExtension
// CollaboratorExtension describes the Collaborator extension point in the UI
type CollaboratorExtensions []CollaboratorExtension
// GraphQLExtension describes the graphql server extension point in the backend
type GraphQLExtension struct {
Component string `json:"component,omitempty"`
Path string `json:"path,omitempty"`
Type string `json:"type,omitempty"`
}
type DesignerComponents struct {
Design bool `json:"design,omitempty"`
Application bool `json:"application,omitempty"`
Filter bool `json:"filter,omitempty"`
Save bool `json:"save,omitempty"`
New bool `json:"new,omitempty"`
SaveAs bool `json:"saveAs,omitempty"`
Validate bool `json:"validate,omitempty"`
Deploy bool `json:"deploy,omitempty"`
Undeploy bool `json:"unDeploy,omitempty"`
}
type MeshMapComponentSet struct {
Designer DesignerComponents `json:"designer,omitempty"`
Visualizer bool `json:"visualizer,omitempty"` // todo: create a component set for visualizer
}
// NavigatorExtension describes the Navigator extension point in the UI
type NavigatorExtension struct {
Title string `json:"title,omitempty"`
OnClickCallback int `json:"on_click_callback,omitempty"`
Href Href `json:"href,omitempty"`
Component string `json:"component,omitempty"`
Icon string `json:"icon,omitempty"`
Link *bool `json:"link,omitempty"`
Show *bool `json:"show,omitempty"`
Children NavigatorExtensions `json:"children,omitempty"`
Type string `json:"type,omitempty"`
AllowedTo MeshMapComponentSet `json:"allowedTo,omitempty"`
IsBeta *bool `json:"isBeta,omitempty"`
}
// AccountExtension describes the Account extension point in the UI
type AccountExtension struct {
Title string `json:"title,omitempty"`
OnClickCallback int `json:"on_click_callback,omitempty"`
Href Href `json:"href,omitempty"`
Component string `json:"component,omitempty"`
Link *bool `json:"link,omitempty"`
Show *bool `json:"show,omitempty"`
Children AccountExtensions `json:"children,omitempty"`
Type string `json:"type,omitempty"`
}
// UserPrefsExtension describes the user preference extension point in the UI
type UserPrefsExtension struct {
Component string `json:"component,omitempty"`
Type string `json:"type,omitempty"`
}
// CollaboratorsExtension is the struct for collaborators extension
type CollaboratorExtension struct {
Component string `json:"component,omitempty"`
Type string `json:"type,omitempty"`
}
// Href describes a link along with its type
type Href struct {
URI string `json:"uri,omitempty"`
External *bool `json:"external,omitempty"`
}
// Capabilities is the collection of capability
type Capabilities []Capability
// Capability is a capability of Provider indicating whether a feature is present
type Capability struct {
Feature Feature `json:"feature,omitempty"`
Endpoint string `json:"endpoint,omitempty"`
}
// K8sContextResponse - struct of response sent by provider when requested to persist k8s config
type K8sContextPersistResponse struct {
K8sContext K8sContext `json:"k8s_context,omitempty"`
Inserted bool `json:"inserted,omitempty"`
}
type ConnectionPayload struct {
Kind string `json:"kind,omitempty"`
SubType string `json:"sub_type,omitempty"`
Type string `json:"type,omitempty"`
MetaData map[string]interface{} `json:"metadata,omitempty"`
Status connections.ConnectionStatus `json:"status,omitempty"`
CredentialSecret map[string]interface{} `json:"credential_secret,omitempty"`
Name string `json:"name,omitempty"`
}
type EnvironmentPayload struct {
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
OrgID string `json:"org_id,omitempty"`
}
type ExtensionProxyResponse struct {
Body []byte `json:"body,omitempty"`
StatusCode int `json:"status_code,omitempty"`
}
// Feature is a type to store the features of the provider
type Feature string
const (
// SyncPrefs indicates the Preference Synchronization feature
SyncPrefs Feature = "sync-prefs" // /user/preferences
PersistResults Feature = "persist-results" // /results
PersistResult Feature = "persist-result" // /result
// PersistSMIResults Feature = "persist-smi-results" // /smi/results
PersistSMIResults Feature = "persist-smi-results" // /smi/results
PersistMetrics Feature = "persist-metrics" // /result/metrics
PersistSMPTestProfile Feature = "persist-smp-test-profile" // /user/test-config
PersistMesheryPatterns Feature = "persist-meshery-patterns" // /patterns
PersistMesheryPatternResources Feature = "persist-meshery-pattern-resources" // /patterns/resources
PersistMesheryFilters Feature = "persist-meshery-filters" // /filter
PersistMesheryApplications Feature = "persist-meshery-applications" // /applications
PersistPerformanceProfiles Feature = "persist-performance-profiles" // /user/performance/profile
PersistSchedules Feature = "persist-schedules" // /user/schedules
MesheryPatternsCatalog Feature = "meshery-patterns-catalog" // /patterns/catalog
MesheryFiltersCatalog Feature = "meshery-filters-catalog" // /filters/catalog
CloneMesheryPatterns Feature = "clone-meshery-patterns" // /patterns/clone
CloneMesheryFilters Feature = "clone-meshery-filters" // /filters/clone
ShareDesigns Feature = "share-designs"
ShareFilters Feature = "share-filters"
PersistConnection Feature = "persist-connection"
PersistCredentials Feature = "persist-credentials"
UsersProfile Feature = "users-profile"
UsersIdentity Feature = "users-identity"
UsersKeys Feature = "users-keys"
)
const (
// LocalProviderType - represents local providers
LocalProviderType ProviderType = "local"
// RemoteProviderType - represents cloud providers
RemoteProviderType ProviderType = "remote"
// ProviderCtxKey is the context key for persisting provider to context
ProviderCtxKey ContextKey = "provider"
// TokenCtxKey is the context key for persisting token to context
TokenCtxKey ContextKey = "token"
// UserCtxKey is the context key for persisting user to context
UserCtxKey ContextKey = "user"
// UserPrefsCtxKey is the context key for persisting user preferences to context
PerfObjCtxKey ContextKey = "perf_obj"
KubeClustersKey ContextKey = "kubeclusters"
AllKubeClusterKey ContextKey = "allkubeclusters"
MesheryControllerHandlersKey ContextKey = "mesherycontrollerhandlerskey"
MeshSyncDataHandlersKey ContextKey = "meshsyncdatahandlerskey"
RegistryManagerKey ContextKey = "registrymanagerkey"
HandlerKey ContextKey = "handlerkey"
MesheryServerURL ContextKey = "mesheryserverurl"
MesheryServerCallbackURL ContextKey = "mesheryservercallbackurl"
)
// IsSupported returns true if the given feature is listed as one of
// the capabilities of the provider
func (caps Capabilities) IsSupported(feature Feature) bool {
for _, cap := range caps {
if feature == cap.Feature {
return true
}
}
return false
}
// GetEndpointForFeature returns the endpoint for the given feature
//
// Existence of a feature DOES NOT guarantee that the endpoint would be a not empty
// string as some of the features may not require an endpoint
func (caps Capabilities) GetEndpointForFeature(feature Feature) (string, bool) {
for _, cap := range caps {
if feature == cap.Feature {
return cap.Endpoint, true
}
}
return "", false
}
// Provider - interface for providers
type Provider interface {
PreferencePersister
MesheryEvents
// Initialize will initialize a provider instance
// by loading its capabilities and other metadata in the memory
Initialize()
Name() string
// Returns ProviderType
GetProviderType() ProviderType
PackageLocation() string
GetProviderCapabilities(http.ResponseWriter, *http.Request)
GetProviderProperties() ProviderProperties
// InitiateLogin - does the needed check, returns a true to indicate "return" or false to continue
InitiateLogin(http.ResponseWriter, *http.Request, bool)
TokenHandler(http.ResponseWriter, *http.Request, bool)
ExtractToken(http.ResponseWriter, *http.Request)
GetSession(req *http.Request) error
GetUserDetails(*http.Request) (*User, error)
GetUserByID(req *http.Request, userID string) ([]byte, error)
GetUsers(token, page, pageSize, search, order, filter string) ([]byte, error)
GetUsersKeys(token, page, pageSize, search, order, filter string) ([]byte, error)
GetProviderToken(req *http.Request) (string, error)
UpdateToken(http.ResponseWriter, *http.Request) string
Logout(http.ResponseWriter, *http.Request) error
HandleUnAuthenticated(w http.ResponseWriter, req *http.Request)
FetchResults(tokenVal string, page, pageSize, search, order, profileID string) ([]byte, error)
FetchAllResults(tokenVal string, page, pageSize, search, order, from, to string) ([]byte, error)
PublishResults(req *http.Request, result *MesheryResult, profileID string) (string, error)
FetchSmiResults(req *http.Request, page, pageSize, search, order string) ([]byte, error)
FetchSmiResult(req *http.Request, page, pageSize, search, order string, resultID uuid.UUID) ([]byte, error)
PublishSmiResults(result *SmiResult) (string, error)
PublishMetrics(tokenVal string, data *MesheryResult) error
GetResult(tokenVal string, resultID uuid.UUID) (*MesheryResult, error)
RecordPreferences(req *http.Request, userID string, data *Preference) error
SaveK8sContext(token string, k8sContext K8sContext) (connections.Connection, error)
GetK8sContexts(token, page, pageSize, search, order string, withStatus string, withCredentials bool) ([]byte, error)
DeleteK8sContext(token, id string) (K8sContext, error)
GetK8sContext(token, connectionID string) (K8sContext, error)
LoadAllK8sContext(token string) ([]*K8sContext, error)
// SetCurrentContext(token, id string) (K8sContext, error)
// GetCurrentContext(token string) (K8sContext, error)
SMPTestConfigStore(req *http.Request, perfConfig *SMP.PerformanceTestConfig) (string, error)
SMPTestConfigGet(req *http.Request, testUUID string) (*SMP.PerformanceTestConfig, error)
SMPTestConfigFetch(req *http.Request, page, pageSize, search, order string) ([]byte, error)
SMPTestConfigDelete(req *http.Request, testUUID string) error
GetGenericPersister() *database.Handler
SetKubeClient(client *mesherykube.Client)
GetKubeClient() *mesherykube.Client
SaveMesheryPattern(tokenString string, pattern *MesheryPattern) ([]byte, error)
GetMesheryPatterns(tokenString, page, pageSize, search, order string, updatedAfter string, visbility []string) ([]byte, error)
GetCatalogMesheryPatterns(tokenString string, page, pageSize, search, order string) ([]byte, error)
PublishCatalogPattern(req *http.Request, publishPatternRequest *MesheryCatalogPatternRequestBody) ([]byte, error)
UnPublishCatalogPattern(req *http.Request, publishPatternRequest *MesheryCatalogPatternRequestBody) ([]byte, error)
DeleteMesheryPattern(req *http.Request, patternID string) ([]byte, error)
DeleteMesheryPatterns(req *http.Request, patterns MesheryPatternDeleteRequestBody) ([]byte, error)
CloneMesheryPattern(req *http.Request, patternID string, clonePatternRequest *MesheryClonePatternRequestBody) ([]byte, error)
GetMesheryPattern(req *http.Request, patternID string) ([]byte, error)
RemotePatternFile(req *http.Request, resourceURL, path string, save bool) ([]byte, error)
SaveMesheryPatternResource(token string, resource *PatternResource) (*PatternResource, error)
GetMesheryPatternResource(token, resourceID string) (*PatternResource, error)
GetMesheryPatternResources(token, page, pageSize, search, order, name, namespace, typ, oamType string) (*PatternResourcePage, error)
DeleteMesheryPatternResource(token, resourceID string) error
SaveMesheryPatternSourceContent(token string, applicationID string, sourceContent []byte) error
SaveMesheryFilter(tokenString string, filter *MesheryFilter) ([]byte, error)
GetMesheryFilters(tokenString, page, pageSize, search, order string, visibility []string) ([]byte, error)
GetCatalogMesheryFilters(tokenString string, page, pageSize, search, order string) ([]byte, error)
PublishCatalogFilter(req *http.Request, publishFilterRequest *MesheryCatalogFilterRequestBody) ([]byte, error)
UnPublishCatalogFilter(req *http.Request, publishFilterRequest *MesheryCatalogFilterRequestBody) ([]byte, error)
DeleteMesheryFilter(req *http.Request, filterID string) ([]byte, error)
CloneMesheryFilter(req *http.Request, filterID string, cloneFilterRequest *MesheryCloneFilterRequestBody) ([]byte, error)
GetMesheryFilter(req *http.Request, filterID string) ([]byte, error)
GetMesheryFilterFile(req *http.Request, filterID string) ([]byte, error)
RemoteFilterFile(req *http.Request, resourceURL, path string, save bool, resource string) ([]byte, error)
SaveMesheryApplication(tokenString string, application *MesheryApplication) ([]byte, error)
SaveApplicationSourceContent(token string, applicationID string, sourceContent []byte) error
GetApplicationSourceContent(req *http.Request, applicationID string) ([]byte, error)
GetMesheryApplications(tokenString, page, pageSize, search, order string, updatedAfter string) ([]byte, error)
DeleteMesheryApplication(req *http.Request, applicationID string) ([]byte, error)
GetMesheryApplication(req *http.Request, applicationID string) ([]byte, error)
ShareDesign(req *http.Request) (int, error)
ShareFilter(req *http.Request) (int, error)
SavePerformanceProfile(tokenString string, performanceProfile *PerformanceProfile) ([]byte, error)
GetPerformanceProfiles(tokenString string, page, pageSize, search, order string) ([]byte, error)
GetPerformanceProfile(req *http.Request, performanceProfileID string) ([]byte, error)
DeletePerformanceProfile(req *http.Request, performanceProfileID string) ([]byte, error)
SaveSchedule(tokenString string, s *Schedule) ([]byte, error)
GetSchedules(req *http.Request, page, pageSize, order string) ([]byte, error)
GetSchedule(req *http.Request, scheduleID string) ([]byte, error)
DeleteSchedule(req *http.Request, scheduleID string) ([]byte, error)
ExtensionProxy(req *http.Request) (*ExtensionProxyResponse, error)
SaveConnection(req *http.Request, conn *ConnectionPayload, token string, skipTokenCheck bool) (*connections.Connection, error)
GetConnections(req *http.Request, userID string, page, pageSize int, search, order string) (*connections.ConnectionPage, error)
GetConnectionsByKind(req *http.Request, userID string, page, pageSize int, search, order, connectionKind string) (*map[string]interface{}, error)
GetConnectionsStatus(req *http.Request, userID string) (*connections.ConnectionsStatusPage, error)
UpdateConnection(req *http.Request, conn *connections.Connection) (*connections.Connection, error)
UpdateConnectionById(req *http.Request, conn *ConnectionPayload, connId string) (*connections.Connection, error)
UpdateConnectionStatusByID(token string, connectionID uuid.UUID, connectionStatus connections.ConnectionStatus) (*connections.Connection, int, error)
DeleteConnection(req *http.Request, connID uuid.UUID) (*connections.Connection, error)
DeleteMesheryConnection() error
SaveUserCredential(req *http.Request, credential *Credential) error
GetUserCredentials(req *http.Request, userID string, page, pageSize int, search, order string) (*CredentialsPage, error)
UpdateUserCredential(req *http.Request, credential *Credential) (*Credential, error)
DeleteUserCredential(req *http.Request, credentialID uuid.UUID) (*Credential, error)
GetEnvironments(token, page, pageSize, search, order, filter string) ([]byte, error)
GetEnvironmentByID(req *http.Request, environmentID string) ([]byte, error)
SaveEnvironment(req *http.Request, env *EnvironmentPayload, token string, skipTokenCheck bool) error
DeleteEnvironment(req *http.Request, environmentID string) ([]byte, error)
UpdateEnvironment(req *http.Request, env *EnvironmentPayload, environmentID string) (*EnvironmentData, error)
AddConnectionToEnvironment(req *http.Request, environmentID string, connectionID string) ([]byte, error)
RemoveConnectionFromEnvironment(req *http.Request, environmentID string, connectionID string) ([]byte, error)
}