-
Notifications
You must be signed in to change notification settings - Fork 480
/
GitHostRestHandler.go
295 lines (244 loc) · 9.4 KB
/
GitHostRestHandler.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
/*
* Copyright (c) 2020 Devtron Labs
*
* 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 restHandler
import (
"encoding/json"
"github.com/devtron-labs/devtron/api/restHandler/common"
"github.com/devtron-labs/devtron/client/gitSensor"
"github.com/devtron-labs/devtron/pkg/pipeline"
"github.com/devtron-labs/devtron/pkg/user"
"github.com/devtron-labs/devtron/pkg/user/casbin"
"github.com/gorilla/mux"
"go.uber.org/zap"
"gopkg.in/go-playground/validator.v9"
"net/http"
"strconv"
"strings"
)
type GitHostRestHandler interface {
GetGitHosts(w http.ResponseWriter, r *http.Request)
GetGitHostById(w http.ResponseWriter, r *http.Request)
CreateGitHost(w http.ResponseWriter, r *http.Request)
GetAllWebhookEventConfig(w http.ResponseWriter, r *http.Request)
GetWebhookEventConfig(w http.ResponseWriter, r *http.Request)
GetWebhookDataMetaConfig(w http.ResponseWriter, r *http.Request)
}
type GitHostRestHandlerImpl struct {
logger *zap.SugaredLogger
gitHostConfig pipeline.GitHostConfig
userAuthService user.UserService
validator *validator.Validate
enforcer casbin.Enforcer
gitSensorClient gitSensor.GitSensorClient
gitProviderConfig pipeline.GitRegistryConfig
}
func NewGitHostRestHandlerImpl(logger *zap.SugaredLogger,
gitHostConfig pipeline.GitHostConfig, userAuthService user.UserService,
validator *validator.Validate, enforcer casbin.Enforcer, gitSensorClient gitSensor.GitSensorClient, gitProviderConfig pipeline.GitRegistryConfig) *GitHostRestHandlerImpl {
return &GitHostRestHandlerImpl{
logger: logger,
gitHostConfig: gitHostConfig,
userAuthService: userAuthService,
validator: validator,
enforcer: enforcer,
gitSensorClient: gitSensorClient,
gitProviderConfig: gitProviderConfig,
}
}
func (impl GitHostRestHandlerImpl) GetGitHosts(w http.ResponseWriter, r *http.Request) {
// check if user is logged in or not
userId, err := impl.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
res, err := impl.gitHostConfig.GetAll()
if err != nil {
impl.logger.Errorw("service err, GetGitHosts", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
// RBAC enforcer applying
token := r.Header.Get("token")
result := make([]pipeline.GitHostRequest, 0)
for _, item := range res {
if ok := impl.enforcer.Enforce(token, casbin.ResourceGit, casbin.ActionGet, strings.ToLower(item.Name)); ok {
result = append(result, item)
}
}
//RBAC enforcer Ends
common.WriteJsonResp(w, err, res, http.StatusOK)
}
// Need to make this call RBAC free as this API is called from the create app flow (configuring ci)
func (impl GitHostRestHandlerImpl) GetGitHostById(w http.ResponseWriter, r *http.Request) {
// check if user is logged in or not
userId, err := impl.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
params := mux.Vars(r)
id, err := strconv.Atoi(params["id"])
if err != nil {
impl.logger.Errorw("service err in parsing Id , GetGitHostById", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
res, err := impl.gitHostConfig.GetById(id)
if err != nil {
impl.logger.Errorw("service err, GetGitHostById", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
common.WriteJsonResp(w, err, res, http.StatusOK)
}
func (impl GitHostRestHandlerImpl) CreateGitHost(w http.ResponseWriter, r *http.Request) {
// check if user is logged in or not
userId, err := impl.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
decoder := json.NewDecoder(r.Body)
var bean pipeline.GitHostRequest
err = decoder.Decode(&bean)
if err != nil {
impl.logger.Errorw("request err, CreateGitHost", "err", err, "payload", bean)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
bean.UserId = userId
impl.logger.Infow("request payload, CreateGitHost", "err", err, "payload", bean)
err = impl.validator.Struct(bean)
if err != nil {
impl.logger.Errorw("validation err, CreateGitHost", "err", err, "payload", bean)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
// RBAC enforcer applying
token := r.Header.Get("token")
if ok := impl.enforcer.Enforce(token, casbin.ResourceGit, casbin.ActionCreate, strings.ToLower(bean.Name)); !ok {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusForbidden)
return
}
//RBAC enforcer Ends
res, err := impl.gitHostConfig.Create(&bean)
if err != nil {
impl.logger.Errorw("service err, CreateGitHost", "err", err, "payload", bean)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
common.WriteJsonResp(w, err, res, http.StatusOK)
}
// Need to make this call RBAC free as this API is called from the create app flow (configuring ci)
func (impl GitHostRestHandlerImpl) GetAllWebhookEventConfig(w http.ResponseWriter, r *http.Request) {
// check if user is logged in or not
userId, err := impl.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
params := mux.Vars(r)
id, err := strconv.Atoi(params["id"])
if err != nil {
impl.logger.Errorw("service err in parsing Id , GetAllWebhookEventConfig", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
webhookEventRequest := &gitSensor.WebhookEventConfigRequest{
GitHostId: id,
}
res, err := impl.gitSensorClient.GetAllWebhookEventConfigForHost(webhookEventRequest)
if err != nil {
impl.logger.Errorw("service err, GetAllWebhookEventConfig", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
common.WriteJsonResp(w, err, res, http.StatusOK)
}
// Need to make this call RBAC free as this API is called from the create app flow (configuring ci)
func (impl GitHostRestHandlerImpl) GetWebhookEventConfig(w http.ResponseWriter, r *http.Request) {
// check if user is logged in or not
userId, err := impl.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
params := mux.Vars(r)
eventId, err := strconv.Atoi(params["eventId"])
if err != nil {
impl.logger.Errorw("service err in parsing eventId , GetWebhookEventConfig", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
webhookEventRequest := &gitSensor.WebhookEventConfigRequest{
EventId: eventId,
}
res, err := impl.gitSensorClient.GetWebhookEventConfig(webhookEventRequest)
if err != nil {
impl.logger.Errorw("service err, GetWebhookEventConfig", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
common.WriteJsonResp(w, err, res, http.StatusOK)
}
// Need to make this call RBAC free as this API is called from the create app flow (configuring ci)
func (impl GitHostRestHandlerImpl) GetWebhookDataMetaConfig(w http.ResponseWriter, r *http.Request) {
// check if user is logged in or not
userId, err := impl.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
params := mux.Vars(r)
gitProviderId := params["gitProviderId"]
gitProvider, err := impl.gitProviderConfig.FetchOneGitProvider(gitProviderId)
if err != nil {
impl.logger.Errorw("service err FetchOneGitProvider, GetWebhookDataMetaConfig", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
gitHostId := gitProvider.GitHostId
webhookDataMetaConfigResponse := &WebhookDataMetaConfigResponse{
GitHostId: gitHostId,
}
if gitHostId != 0 {
gitHost, err := impl.gitHostConfig.GetById(gitHostId)
if err != nil {
impl.logger.Errorw("service err, GetGitHostById", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
webhookDataMetaConfigResponse.GitHost = gitHost
webhookEventRequest := &gitSensor.WebhookEventConfigRequest{
GitHostId: gitHostId,
}
webhookEvents, err := impl.gitSensorClient.GetAllWebhookEventConfigForHost(webhookEventRequest)
if err != nil {
impl.logger.Errorw("service err, GetAllWebhookEventConfig", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
webhookDataMetaConfigResponse.WebhookEvents = webhookEvents
}
common.WriteJsonResp(w, err, webhookDataMetaConfigResponse, http.StatusOK)
}
type WebhookDataMetaConfigResponse struct {
GitHostId int `json:"gitHostId"`
GitHost *pipeline.GitHostRequest `json:"gitHost"`
WebhookEvents []*gitSensor.WebhookEventConfig `json:"webhookEvents"`
}