This repository was archived by the owner on Dec 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
76 lines (69 loc) · 2.01 KB
/
main.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
// SPDX-License-Identifier: MIT
// SPDX-FileCopyrightText: 2023 Steadybit GmbH
package main
import (
"github.com/rs/zerolog"
"github.com/steadybit/action-kit/go/action_kit_api/v2"
"github.com/steadybit/discovery-kit/go/discovery_kit_api"
"github.com/steadybit/extension-crud/actions"
"github.com/steadybit/extension-crud/discovery"
"github.com/steadybit/extension-kit/extbuild"
"github.com/steadybit/extension-kit/exthttp"
"github.com/steadybit/extension-kit/extlogging"
"github.com/steadybit/extension-kit/extruntime"
)
func main() {
extlogging.InitZeroLog()
extbuild.PrintBuildInformation()
extruntime.LogRuntimeInformation(zerolog.DebugLevel)
exthttp.RegisterHttpHandler("/", exthttp.GetterAsHandler(getExtensionList))
discovery.RegisterDiscoveryHandlers()
actions.RegisterCreateAction()
actions.RegisterUpdateAction()
actions.RegisterDeleteAction()
exthttp.Listen(exthttp.ListenOpts{
Port: 8091,
})
}
type ExtensionListResponse struct {
Actions []action_kit_api.DescribingEndpointReference `json:"actions"`
Discoveries []discovery_kit_api.DescribingEndpointReference `json:"discoveries"`
TargetTypes []discovery_kit_api.DescribingEndpointReference `json:"targetTypes"`
TargetAttributes []discovery_kit_api.DescribingEndpointReference `json:"targetAttributes"`
}
func getExtensionList() ExtensionListResponse {
return ExtensionListResponse{
Actions: []action_kit_api.DescribingEndpointReference{
{
Method: "GET",
Path: "/actions/create",
},
{
Method: "GET",
Path: "/actions/update",
},
{
Method: "GET",
Path: "/actions/delete",
},
},
Discoveries: []discovery_kit_api.DescribingEndpointReference{
{
Method: "GET",
Path: "/discovery-description",
},
},
TargetTypes: []discovery_kit_api.DescribingEndpointReference{
{
Method: "GET",
Path: "/target-description",
},
},
TargetAttributes: []discovery_kit_api.DescribingEndpointReference{
{
Method: "GET",
Path: "/attribute-descriptions",
},
},
}
}