-
Notifications
You must be signed in to change notification settings - Fork 8
/
v1.go
108 lines (91 loc) · 3.35 KB
/
v1.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
/*
Copyright 2021 The CI/CD Operator Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package v1
import (
"fmt"
"net/http"
"github.com/go-logr/logr"
cicdv1 "github.com/tmax-cloud/cicd-operator/api/v1"
"github.com/tmax-cloud/cicd-operator/internal/apiserver"
"github.com/tmax-cloud/cicd-operator/internal/utils"
"github.com/tmax-cloud/cicd-operator/internal/wrapper"
"github.com/tmax-cloud/cicd-operator/pkg/apiserver/apis/v1/approvals"
"github.com/tmax-cloud/cicd-operator/pkg/apiserver/apis/v1/integrationconfigs"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
authorization "k8s.io/client-go/kubernetes/typed/authorization/v1"
"sigs.k8s.io/controller-runtime/pkg/client"
)
const (
// APIVersion of the apis
APIVersion = "v1"
)
type handler struct {
approvalsHandler apiserver.APIHandler
icHandler apiserver.APIHandler
}
// NewHandler instantiates a new v1 api handler
func NewHandler(parent wrapper.RouterWrapper, cli client.Client, authCli authorization.AuthorizationV1Interface, logger logr.Logger) (apiserver.APIHandler, error) {
handler := &handler{}
// /v1
versionWrapper := wrapper.New(fmt.Sprintf("/%s/%s", apiserver.APIGroup, APIVersion), nil, handler.versionHandler)
if err := parent.Add(versionWrapper); err != nil {
return nil, err
}
// /v1/namespaces/<namespace>
namespaceWrapper := wrapper.New("/namespaces/{namespace}", nil, nil)
if err := versionWrapper.Add(namespaceWrapper); err != nil {
return nil, err
}
// /v1/namespaces/<namespace>/approvals
approvalsHandler, err := approvals.NewHandler(namespaceWrapper, cli, authCli, logger)
if err != nil {
return nil, err
}
handler.approvalsHandler = approvalsHandler
// /v1/namespaces/<namespace>/integrationconfigs
icHandler, err := integrationconfigs.NewHandler(namespaceWrapper, cli, authCli, logger)
if err != nil {
return nil, err
}
handler.icHandler = icHandler
return handler, nil
}
func (h *handler) versionHandler(w http.ResponseWriter, _ *http.Request) {
apiResourceList := &metav1.APIResourceList{}
apiResourceList.Kind = "APIResourceList"
apiResourceList.GroupVersion = fmt.Sprintf("%s/%s", apiserver.APIGroup, APIVersion)
apiResourceList.APIVersion = APIVersion
apiResourceList.APIResources = []metav1.APIResource{
{
Name: fmt.Sprintf("%s/%s", cicdv1.ApprovalKind, cicdv1.ApprovalAPIApprove),
Namespaced: true,
},
{
Name: fmt.Sprintf("%s/%s", cicdv1.ApprovalKind, cicdv1.ApprovalAPIReject),
Namespaced: true,
},
{
Name: fmt.Sprintf("%s/%s", cicdv1.IntegrationConfigKind, cicdv1.IntegrationConfigAPIRunPre),
Namespaced: true,
},
{
Name: fmt.Sprintf("%s/%s", cicdv1.IntegrationConfigKind, cicdv1.IntegrationConfigAPIRunPost),
Namespaced: true,
},
{
Name: fmt.Sprintf("%s/%s", cicdv1.IntegrationConfigKind, cicdv1.IntegrationConfigAPIWebhookURL),
Namespaced: true,
},
}
_ = utils.RespondJSON(w, apiResourceList)
}