-
Notifications
You must be signed in to change notification settings - Fork 522
/
Copy pathPipelineConfigRestHandler.go
907 lines (859 loc) · 34.2 KB
/
PipelineConfigRestHandler.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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
/*
* Copyright (c) 2020-2024. Devtron Inc.
*
* 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 configure
import (
"bufio"
"context"
"encoding/json"
"fmt"
"github.com/devtron-labs/devtron/pkg/build/artifacts/imageTagging"
imageTaggingRead "github.com/devtron-labs/devtron/pkg/build/artifacts/imageTagging/read"
read2 "github.com/devtron-labs/devtron/pkg/build/git/gitMaterial/read"
gitProviderRead "github.com/devtron-labs/devtron/pkg/build/git/gitProvider/read"
bean3 "github.com/devtron-labs/devtron/pkg/build/pipeline/bean"
"github.com/devtron-labs/devtron/pkg/chart/gitOpsConfig"
read5 "github.com/devtron-labs/devtron/pkg/chart/read"
repository2 "github.com/devtron-labs/devtron/pkg/cluster/environment/repository"
"github.com/devtron-labs/devtron/pkg/deployment/manifest/deployedAppMetrics"
"github.com/devtron-labs/devtron/pkg/deployment/manifest/deploymentTemplate/chartRef"
validator2 "github.com/devtron-labs/devtron/pkg/deployment/manifest/deploymentTemplate/validator"
security2 "github.com/devtron-labs/devtron/pkg/policyGovernance/security/imageScanning"
"github.com/devtron-labs/devtron/pkg/policyGovernance/security/imageScanning/read"
read3 "github.com/devtron-labs/devtron/pkg/team/read"
"github.com/devtron-labs/devtron/util/beHelper"
"io"
"net/http"
"strconv"
"strings"
"sync"
"github.com/caarlos0/env"
"github.com/devtron-labs/devtron/api/restHandler/common"
"github.com/devtron-labs/devtron/client/gitSensor"
"github.com/devtron-labs/devtron/pkg/auth/authorisation/casbin"
"github.com/devtron-labs/devtron/pkg/auth/user"
"github.com/devtron-labs/devtron/pkg/chart"
"github.com/devtron-labs/devtron/pkg/generateManifest"
resourceGroup2 "github.com/devtron-labs/devtron/pkg/resourceGroup"
"github.com/go-pg/pg"
"go.opentelemetry.io/otel"
"github.com/devtron-labs/devtron/internal/sql/repository"
"github.com/devtron-labs/devtron/internal/sql/repository/pipelineConfig"
"github.com/devtron-labs/devtron/internal/util"
"github.com/devtron-labs/devtron/pkg/appClone"
"github.com/devtron-labs/devtron/pkg/appWorkflow"
"github.com/devtron-labs/devtron/pkg/bean"
"github.com/devtron-labs/devtron/pkg/pipeline"
"github.com/devtron-labs/devtron/pkg/team"
"github.com/devtron-labs/devtron/util/rbac"
"github.com/gorilla/mux"
"go.uber.org/zap"
"gopkg.in/go-playground/validator.v9"
)
type PipelineRestHandlerEnvConfig struct {
UseArtifactListApiV2 bool `env:"USE_ARTIFACT_LISTING_API_V2" envDefault:"true"` //deprecated
}
type DevtronAppRestHandler interface {
CreateApp(w http.ResponseWriter, r *http.Request)
DeleteApp(w http.ResponseWriter, r *http.Request)
DeleteACDAppWithNonCascade(w http.ResponseWriter, r *http.Request)
GetApp(w http.ResponseWriter, r *http.Request)
FindAppsByTeamId(w http.ResponseWriter, r *http.Request)
FindAppsByTeamName(w http.ResponseWriter, r *http.Request)
GetEnvironmentListWithAppData(w http.ResponseWriter, r *http.Request)
GetApplicationsByEnvironment(w http.ResponseWriter, r *http.Request)
}
type DevtronAppWorkflowRestHandler interface {
FetchAppWorkflowStatusForTriggerView(w http.ResponseWriter, r *http.Request)
FetchAppWorkflowStatusForTriggerViewByEnvironment(w http.ResponseWriter, r *http.Request)
FetchAppDeploymentStatusForEnvironments(w http.ResponseWriter, r *http.Request)
}
type PipelineConfigRestHandler interface {
DevtronAppRestHandler
DevtronAppWorkflowRestHandler
DevtronAppBuildRestHandler
DevtronAppBuildMaterialRestHandler
DevtronAppBuildHistoryRestHandler
DevtronAppDeploymentRestHandler
DevtronAppDeploymentHistoryRestHandler
DevtronAppPrePostDeploymentRestHandler
DevtronAppDeploymentConfigRestHandler
ImageTaggingRestHandler
PipelineNameSuggestion(w http.ResponseWriter, r *http.Request)
}
type PipelineConfigRestHandlerImpl struct {
pipelineBuilder pipeline.PipelineBuilder
ciPipelineRepository pipelineConfig.CiPipelineRepository
ciPipelineMaterialRepository pipelineConfig.CiPipelineMaterialRepository
ciHandler pipeline.CiHandler
Logger *zap.SugaredLogger
deploymentTemplateValidationService validator2.DeploymentTemplateValidationService
chartService chart.ChartService
devtronAppGitOpConfigService gitOpsConfig.DevtronAppGitOpConfigService
propertiesConfigService pipeline.PropertiesConfigService
userAuthService user.UserService
validator *validator.Validate
teamService team.TeamService
enforcer casbin.Enforcer
gitSensorClient gitSensor.Client
pipelineRepository pipelineConfig.PipelineRepository
appWorkflowService appWorkflow.AppWorkflowService
enforcerUtil rbac.EnforcerUtil
dockerRegistryConfig pipeline.DockerRegistryConfig
cdHandler pipeline.CdHandler
appCloneService appClone.AppCloneService
gitMaterialReadService read2.GitMaterialReadService
policyService security2.PolicyService
imageScanResultReadService read.ImageScanResultReadService
gitProviderReadService gitProviderRead.GitProviderReadService
imageTaggingReadService imageTaggingRead.ImageTaggingReadService
imageTaggingService imageTagging.ImageTaggingService
deploymentTemplateService generateManifest.DeploymentTemplateService
pipelineRestHandlerEnvConfig *PipelineRestHandlerEnvConfig
ciArtifactRepository repository.CiArtifactRepository
deployedAppMetricsService deployedAppMetrics.DeployedAppMetricsService
chartRefService chartRef.ChartRefService
ciCdPipelineOrchestrator pipeline.CiCdPipelineOrchestrator
teamReadService read3.TeamReadService
environmentRepository repository2.EnvironmentRepository
chartReadService read5.ChartReadService
}
func NewPipelineRestHandlerImpl(pipelineBuilder pipeline.PipelineBuilder, Logger *zap.SugaredLogger,
deploymentTemplateValidationService validator2.DeploymentTemplateValidationService,
chartService chart.ChartService,
devtronAppGitOpConfigService gitOpsConfig.DevtronAppGitOpConfigService,
propertiesConfigService pipeline.PropertiesConfigService,
userAuthService user.UserService,
teamService team.TeamService,
enforcer casbin.Enforcer,
ciHandler pipeline.CiHandler,
validator *validator.Validate,
gitSensorClient gitSensor.Client,
ciPipelineRepository pipelineConfig.CiPipelineRepository,
pipelineRepository pipelineConfig.PipelineRepository,
enforcerUtil rbac.EnforcerUtil,
dockerRegistryConfig pipeline.DockerRegistryConfig,
cdHandler pipeline.CdHandler,
appCloneService appClone.AppCloneService,
deploymentTemplateService generateManifest.DeploymentTemplateService,
appWorkflowService appWorkflow.AppWorkflowService,
gitMaterialReadService read2.GitMaterialReadService, policyService security2.PolicyService,
imageScanResultReadService read.ImageScanResultReadService,
ciPipelineMaterialRepository pipelineConfig.CiPipelineMaterialRepository,
imageTaggingReadService imageTaggingRead.ImageTaggingReadService,
imageTaggingService imageTagging.ImageTaggingService,
ciArtifactRepository repository.CiArtifactRepository,
deployedAppMetricsService deployedAppMetrics.DeployedAppMetricsService,
chartRefService chartRef.ChartRefService,
ciCdPipelineOrchestrator pipeline.CiCdPipelineOrchestrator,
gitProviderReadService gitProviderRead.GitProviderReadService,
teamReadService read3.TeamReadService,
EnvironmentRepository repository2.EnvironmentRepository,
chartReadService read5.ChartReadService) *PipelineConfigRestHandlerImpl {
envConfig := &PipelineRestHandlerEnvConfig{}
err := env.Parse(envConfig)
if err != nil {
Logger.Errorw("error in parsing PipelineRestHandlerEnvConfig", "err", err)
}
return &PipelineConfigRestHandlerImpl{
pipelineBuilder: pipelineBuilder,
Logger: Logger,
deploymentTemplateValidationService: deploymentTemplateValidationService,
chartService: chartService,
devtronAppGitOpConfigService: devtronAppGitOpConfigService,
propertiesConfigService: propertiesConfigService,
userAuthService: userAuthService,
validator: validator,
teamService: teamService,
enforcer: enforcer,
ciHandler: ciHandler,
gitSensorClient: gitSensorClient,
ciPipelineRepository: ciPipelineRepository,
pipelineRepository: pipelineRepository,
enforcerUtil: enforcerUtil,
dockerRegistryConfig: dockerRegistryConfig,
cdHandler: cdHandler,
appCloneService: appCloneService,
appWorkflowService: appWorkflowService,
gitMaterialReadService: gitMaterialReadService,
policyService: policyService,
imageScanResultReadService: imageScanResultReadService,
ciPipelineMaterialRepository: ciPipelineMaterialRepository,
imageTaggingReadService: imageTaggingReadService,
imageTaggingService: imageTaggingService,
deploymentTemplateService: deploymentTemplateService,
pipelineRestHandlerEnvConfig: envConfig,
ciArtifactRepository: ciArtifactRepository,
deployedAppMetricsService: deployedAppMetricsService,
chartRefService: chartRefService,
ciCdPipelineOrchestrator: ciCdPipelineOrchestrator,
gitProviderReadService: gitProviderReadService,
teamReadService: teamReadService,
environmentRepository: EnvironmentRepository,
chartReadService: chartReadService,
}
}
const (
devtron = "DEVTRON"
SSH_URL_PREFIX = "git@"
HTTPS_URL_PREFIX = "https://"
argoWFLogIdentifier = "argo=true"
)
func (handler *PipelineConfigRestHandlerImpl) DeleteApp(w http.ResponseWriter, r *http.Request) {
token := r.Header.Get("token")
userId, err := handler.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
vars := mux.Vars(r)
appId, err := strconv.Atoi(vars["appId"])
if err != nil {
handler.Logger.Errorw("request err, delete app", "err", err, "appId", appId)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
handler.Logger.Infow("request payload, delete app", "appId", appId)
wfs, err := handler.appWorkflowService.FindAppWorkflows(appId)
if err != nil {
handler.Logger.Errorw("could not fetch wfs", "err", err, "appId", appId)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
if len(wfs) != 0 {
handler.Logger.Info("cannot delete app with workflow's")
err = &util.ApiError{Code: "400", HttpStatusCode: 400, UserMessage: "cannot delete app having workflow's"}
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
resourceObject := handler.enforcerUtil.GetAppRBACNameByAppId(appId)
ok := handler.enforcerUtil.CheckAppRbacForAppOrJob(token, resourceObject, casbin.ActionDelete)
if !ok {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusForbidden)
return
}
err = handler.pipelineBuilder.DeleteApp(appId, userId)
if err != nil {
handler.Logger.Errorw("service error, delete app", "err", err, "appId", appId)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
common.WriteJsonResp(w, err, nil, http.StatusOK)
}
func (handler *PipelineConfigRestHandlerImpl) DeleteACDAppWithNonCascade(w http.ResponseWriter, r *http.Request) {
token := r.Header.Get("token")
userId, err := handler.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
vars := mux.Vars(r)
appId, err := strconv.Atoi(vars["appId"])
if err != nil {
handler.Logger.Errorw("request err, delete app", "err", err, "appId", appId)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
envId, err := strconv.Atoi(vars["envId"])
if err != nil {
handler.Logger.Errorw("request err, delete app", "err", err, "envId", envId)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
handler.Logger.Infow("request payload, delete app", "appId", appId)
v := r.URL.Query()
forceDelete := false
force := v.Get("force")
if len(force) > 0 {
forceDelete, err = strconv.ParseBool(force)
if err != nil {
handler.Logger.Errorw("request err, NonCascadeDeleteCdPipeline", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
}
app, err := handler.pipelineBuilder.GetApp(appId)
if err != nil {
handler.Logger.Infow("service error, NonCascadeDeleteCdPipeline", "err", err, "appId", appId)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
// rbac enforcer applying
resourceName := handler.enforcerUtil.GetAppRBACName(app.AppName)
if ok := handler.enforcer.Enforce(token, casbin.ResourceApplications, casbin.ActionGet, resourceName); !ok {
common.WriteJsonResp(w, fmt.Errorf("unauthorized user"), "Unauthorized User", http.StatusForbidden)
return
}
object := handler.enforcerUtil.GetEnvRBACNameByAppId(appId, envId)
if ok := handler.enforcer.Enforce(token, casbin.ResourceEnvironment, casbin.ActionDelete, object); !ok {
common.WriteJsonResp(w, fmt.Errorf("unauthorized user"), "Unauthorized User", http.StatusForbidden)
return
}
// rbac enforcer ends
pipelines, err := handler.pipelineRepository.FindActiveByAppIdAndEnvironmentId(appId, envId)
if err != nil && err != pg.ErrNoRows {
handler.Logger.Errorw("error in fetching pipelines from db", "appId", appId, "envId", envId)
common.WriteJsonResp(w, err, "error in fetching pipelines from db", http.StatusInternalServerError)
return
} else if len(pipelines) == 0 {
common.WriteJsonResp(w, err, "deployment not found, unable to fetch resource tree", http.StatusNotFound)
return
} else if len(pipelines) > 1 {
common.WriteJsonResp(w, err, "multiple pipelines found for an envId", http.StatusBadRequest)
return
}
cdPipeline := pipelines[0]
err = handler.pipelineBuilder.DeleteACDAppCdPipelineWithNonCascade(cdPipeline, r.Context(), forceDelete, userId)
if err != nil {
handler.Logger.Errorw("service err, NonCascadeDeleteCdPipeline", "err", err, "payload", cdPipeline)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
common.WriteJsonResp(w, err, nil, http.StatusOK)
}
func (handler *PipelineConfigRestHandlerImpl) CreateApp(w http.ResponseWriter, r *http.Request) {
token := r.Header.Get("token")
decoder := json.NewDecoder(r.Body)
userId, err := handler.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
var createRequest bean.CreateAppDTO
err = decoder.Decode(&createRequest)
createRequest.UserId = userId
if err != nil {
handler.Logger.Errorw("request err, CreateApp", "err", err, "CreateApp", createRequest)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
handler.Logger.Infow("request payload, CreateApp", "CreateApp", createRequest)
err = handler.validator.Struct(createRequest)
if err != nil {
handler.Logger.Errorw("validation err, CreateApp", "err", err, "CreateApp", createRequest)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
project, err := handler.teamReadService.FindOne(createRequest.TeamId)
if err != nil {
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
// with admin roles, you have to access for all the apps of the project to create new app. (admin or manager with specific app permission can't create app.)
object := fmt.Sprintf("%s/%s", project.Name, "*")
isAuthorised := handler.enforcerUtil.CheckAppRbacForAppOrJob(token, object, casbin.ActionCreate)
if !isAuthorised {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusForbidden)
return
}
// Validation For appName
if ok := strings.Contains(createRequest.AppName, bean3.UniquePlaceHolderForAppName); ok {
common.WriteJsonResp(w, err, "app creation failed due to validation on app-name as it contains not allowed place-holder in name", http.StatusBadRequest)
return
}
var createResp *bean.CreateAppDTO
err = nil
if createRequest.TemplateId == 0 {
createResp, err = handler.pipelineBuilder.CreateApp(&createRequest)
} else {
ctx, cancel := context.WithCancel(r.Context())
if cn, ok := w.(http.CloseNotifier); ok {
go func(done <-chan struct{}, closed <-chan bool) {
select {
case <-done:
case <-closed:
cancel()
}
}(ctx.Done(), cn.CloseNotify())
}
createResp, err = handler.appCloneService.CloneApp(&createRequest, ctx)
}
if err != nil {
handler.Logger.Errorw("service err, CreateApp", "err", err, "CreateApp", createRequest)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
common.WriteJsonResp(w, err, createResp, http.StatusOK)
}
func (handler *PipelineConfigRestHandlerImpl) GetApp(w http.ResponseWriter, r *http.Request) {
token := r.Header.Get("token")
vars := mux.Vars(r)
appId, err := strconv.Atoi(vars["appId"])
if err != nil {
handler.Logger.Errorw("request err, get app", "err", err, "appId", appId)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
handler.Logger.Infow("request payload, get app", "appId", appId)
ciConf, err := handler.pipelineBuilder.GetApp(appId)
if err != nil {
handler.Logger.Errorw("service err, get app", "err", err, "appId", appId)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
//rbac implementation starts here
object := handler.enforcerUtil.GetAppRBACNameByAppId(appId)
ok := handler.enforcerUtil.CheckAppRbacForAppOrJob(token, object, casbin.ActionGet)
if !ok {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusForbidden)
return
}
//rbac implementation ends here
common.WriteJsonResp(w, err, ciConf, http.StatusOK)
}
func (handler *PipelineConfigRestHandlerImpl) FindAppsByTeamId(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
teamId, err := strconv.Atoi(vars["teamId"])
if err != nil {
handler.Logger.Errorw("request err, FindAppsByTeamId", "err", err, "teamId", teamId)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
handler.Logger.Infow("request payload, FindAppsByTeamId", "teamId", teamId)
project, err := handler.pipelineBuilder.FindAppsByTeamId(teamId)
if err != nil {
handler.Logger.Errorw("service err, FindAppsByTeamId", "err", err, "teamId", teamId)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
common.WriteJsonResp(w, err, project, http.StatusOK)
}
func (handler *PipelineConfigRestHandlerImpl) FindAppsByTeamName(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
teamName := vars["teamName"]
handler.Logger.Infow("request payload, FindAppsByTeamName", "teamName", teamName)
project, err := handler.pipelineBuilder.FindAppsByTeamName(teamName)
if err != nil {
handler.Logger.Errorw("service err, FindAppsByTeamName", "err", err, "teamName", teamName)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
common.WriteJsonResp(w, err, project, http.StatusOK)
}
func (handler *PipelineConfigRestHandlerImpl) streamOutput(w http.ResponseWriter, reader *bufio.Reader, lastSeenMsgId int) {
f, ok := w.(http.Flusher)
if !ok {
http.Error(w, "unexpected server doesnt support streaming", http.StatusInternalServerError)
}
// Important to make it work in browsers
w.Header().Set("Connection", "keep-alive")
w.Header().Set("Cache-Control", "no-cache")
w.Header().Set("Transfer-Encoding", "chunked")
w.Header().Set("Content-Type", "text/event-stream")
w.Header().Set("X-Accel-Buffering", "no")
w.Header().Set("X-Content-Type-Options", "nosniff")
//var wroteHeader bool
startOfStream := []byte("START_OF_STREAM")
endOfStreamEvent := []byte("END_OF_STREAM")
reconnectEvent := []byte("RECONNECT_STREAM")
unexpectedEndOfStreamEvent := []byte("UNEXPECTED_END_OF_STREAM")
streamStarted := false
msgCounter := 0
if lastSeenMsgId == -1 {
handler.sendData(startOfStream, w, msgCounter)
handler.sendEvent(startOfStream, w)
f.Flush()
} else {
handler.sendEvent(reconnectEvent, w)
f.Flush()
}
for {
data, err := reader.ReadBytes('\n')
if err == io.EOF {
if streamStarted {
handler.sendData(endOfStreamEvent, w, msgCounter)
handler.sendEvent(endOfStreamEvent, w)
f.Flush()
return
}
return
}
if err != nil {
//TODO handle error
handler.sendData(unexpectedEndOfStreamEvent, w, msgCounter)
handler.sendEvent(unexpectedEndOfStreamEvent, w)
f.Flush()
return
}
msgCounter = msgCounter + 1
//skip for seen msg
if msgCounter <= lastSeenMsgId {
continue
}
// only skip the logs of argo-wf if found at starting
isAWFLog := msgCounter == 1 && strings.Contains(string(data), argoWFLogIdentifier)
if strings.Contains(string(data), devtron) || isAWFLog {
continue
}
var res []byte
res = append(res, "id:"...)
res = append(res, fmt.Sprintf("%d\n", msgCounter)...)
res = append(res, "data:"...)
res = append(res, data...)
res = append(res, '\n')
if _, err = w.Write(res); err != nil {
//TODO handle error
handler.Logger.Errorw("Failed to send response chunk, streamOutput", "err", err)
handler.sendData(unexpectedEndOfStreamEvent, w, msgCounter)
handler.sendEvent(unexpectedEndOfStreamEvent, w)
f.Flush()
return
}
streamStarted = true
f.Flush()
}
}
func (handler *PipelineConfigRestHandlerImpl) sendEvent(event []byte, w http.ResponseWriter) {
var res []byte
res = append(res, "event:"...)
res = append(res, event...)
res = append(res, '\n')
res = append(res, "data:"...)
res = append(res, '\n', '\n')
if _, err := w.Write(res); err != nil {
handler.Logger.Debugf("Failed to send response chunk: %v", err)
return
}
}
func (handler *PipelineConfigRestHandlerImpl) sendData(event []byte, w http.ResponseWriter, msgId int) {
var res []byte
res = append(res, "id:"...)
res = append(res, fmt.Sprintf("%d\n", msgId)...)
res = append(res, "data:"...)
res = append(res, event...)
res = append(res, '\n', '\n')
if _, err := w.Write(res); err != nil {
handler.Logger.Errorw("Failed to send response chunk, sendData", "err", err)
return
}
}
func (handler *PipelineConfigRestHandlerImpl) FetchAppWorkflowStatusForTriggerView(w http.ResponseWriter, r *http.Request) {
userId, err := handler.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
token := r.Header.Get("token")
vars := mux.Vars(r)
appId, err := strconv.Atoi(vars["appId"])
if err != nil {
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
handler.Logger.Infow("request payload, FetchAppWorkflowStatusForTriggerView", "appId", appId)
//RBAC CHECK
resourceName := handler.enforcerUtil.GetAppRBACNameByAppId(appId)
ok := handler.enforcerUtil.CheckAppRbacForAppOrJob(token, resourceName, casbin.ActionGet)
if !ok {
common.WriteJsonResp(w, fmt.Errorf("unauthorized user"), "Unauthorized User", http.StatusForbidden)
return
}
//RBAC CHECK
apiVersion := vars["version"]
triggerWorkflowStatus := pipelineConfig.TriggerWorkflowStatus{}
var ciWorkflowStatus []*pipelineConfig.CiWorkflowStatus
var err1 error
var cdWorkflowStatus []*pipelineConfig.CdWorkflowStatus
wg := sync.WaitGroup{}
wg.Add(2)
go func() {
if apiVersion == "v2" {
ciWorkflowStatus, err = handler.ciHandler.FetchCiStatusForTriggerViewV1(appId)
} else {
ciWorkflowStatus, err = handler.ciHandler.FetchCiStatusForTriggerView(appId)
}
wg.Done()
}()
go func() {
cdWorkflowStatus, err1 = handler.cdHandler.FetchAppWorkflowStatusForTriggerView(appId)
wg.Done()
}()
wg.Wait()
if err != nil {
handler.Logger.Errorw("service err, FetchAppWorkflowStatusForTriggerView", "err", err, "appId", appId)
if util.IsErrNoRows(err) {
err = &util.ApiError{Code: "404", HttpStatusCode: 200, UserMessage: "no workflow found"}
common.WriteJsonResp(w, err, nil, http.StatusOK)
} else {
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
}
return
}
if err1 != nil {
handler.Logger.Errorw("service err, FetchAppWorkflowStatusForTriggerView", "err", err1, "appId", appId)
if util.IsErrNoRows(err1) {
err1 = &util.ApiError{Code: "404", HttpStatusCode: 200, UserMessage: "no status found"}
common.WriteJsonResp(w, err1, nil, http.StatusOK)
} else {
common.WriteJsonResp(w, err1, nil, http.StatusInternalServerError)
}
return
}
triggerWorkflowStatus.CiWorkflowStatus = ciWorkflowStatus
triggerWorkflowStatus.CdWorkflowStatus = cdWorkflowStatus
common.WriteJsonResp(w, err, triggerWorkflowStatus, http.StatusOK)
}
func (handler *PipelineConfigRestHandlerImpl) PipelineNameSuggestion(w http.ResponseWriter, r *http.Request) {
token := r.Header.Get("token")
vars := mux.Vars(r)
appId, err := strconv.Atoi(vars["appId"])
if err != nil {
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
pType := vars["type"]
handler.Logger.Infow("request payload, PipelineNameSuggestion", "err", err, "appId", appId)
app, err := handler.pipelineBuilder.GetApp(appId)
if err != nil {
handler.Logger.Infow("service error, GetCIPipelineById", "err", err, "appId", appId)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
suggestedName := beHelper.GetPipelineNameByPipelineType(pType, appId)
resourceName := handler.enforcerUtil.GetAppRBACName(app.AppName)
ok := handler.enforcerUtil.CheckAppRbacForAppOrJob(token, resourceName, casbin.ActionGet)
if !ok {
common.WriteJsonResp(w, fmt.Errorf("unauthorized user"), "Unauthorized User", http.StatusForbidden)
return
}
common.WriteJsonResp(w, err, suggestedName, http.StatusOK)
}
func (handler *PipelineConfigRestHandlerImpl) FetchAppWorkflowStatusForTriggerViewByEnvironment(w http.ResponseWriter, r *http.Request) {
token := r.Header.Get("token")
userId, err := handler.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
vars := mux.Vars(r)
envId, err := strconv.Atoi(vars["envId"])
if err != nil {
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
v := r.URL.Query()
appIdsString := v.Get("appIds")
var appIds []int
if len(appIdsString) > 0 {
appIdsSlices := strings.Split(appIdsString, ",")
for _, appId := range appIdsSlices {
id, err := strconv.Atoi(appId)
if err != nil {
common.WriteJsonResp(w, err, "please provide valid appIds", http.StatusBadRequest)
return
}
appIds = append(appIds, id)
}
}
var appGroupId int
appGroupIdStr := v.Get("appGroupId")
if len(appGroupIdStr) > 0 {
appGroupId, err = strconv.Atoi(appGroupIdStr)
if err != nil {
common.WriteJsonResp(w, err, "please provide valid appGroupId", http.StatusBadRequest)
return
}
}
request := resourceGroup2.ResourceGroupingRequest{
ParentResourceId: envId,
ResourceGroupId: appGroupId,
ResourceGroupType: resourceGroup2.APP_GROUP,
ResourceIds: appIds,
CheckAuthBatch: handler.checkAuthBatch,
UserId: userId,
Ctx: r.Context(),
}
triggerWorkflowStatus := pipelineConfig.TriggerWorkflowStatus{}
_, span := otel.Tracer("orchestrator").Start(r.Context(), "ciHandler.FetchCiStatusForBuildAndDeployInResourceGrouping")
ciWorkflowStatus, err := handler.ciHandler.FetchCiStatusForTriggerViewForEnvironment(request, token)
span.End()
if err != nil {
handler.Logger.Errorw("service err", "err", err)
if util.IsErrNoRows(err) {
err = &util.ApiError{Code: "404", HttpStatusCode: 200, UserMessage: "no workflow found"}
common.WriteJsonResp(w, err, nil, http.StatusOK)
} else {
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
}
return
}
_, span = otel.Tracer("orchestrator").Start(r.Context(), "ciHandler.FetchCdStatusForBuildAndDeployInResourceGrouping")
cdWorkflowStatus, err := handler.cdHandler.FetchAppWorkflowStatusForTriggerViewForEnvironment(request, token)
span.End()
if err != nil {
handler.Logger.Errorw("service err, FetchAppWorkflowStatusForTriggerView", "err", err)
if util.IsErrNoRows(err) {
err = &util.ApiError{Code: "404", HttpStatusCode: 200, UserMessage: "no status found"}
common.WriteJsonResp(w, err, nil, http.StatusOK)
} else {
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
}
return
}
triggerWorkflowStatus.CiWorkflowStatus = ciWorkflowStatus
triggerWorkflowStatus.CdWorkflowStatus = cdWorkflowStatus
common.WriteJsonResp(w, err, triggerWorkflowStatus, http.StatusOK)
}
func (handler *PipelineConfigRestHandlerImpl) GetEnvironmentListWithAppData(w http.ResponseWriter, r *http.Request) {
v := r.URL.Query()
token := r.Header.Get("token")
envName := v.Get("envName")
clusterIdString := v.Get("clusterIds")
offset := 0
offsetStr := v.Get("offset")
if len(offsetStr) > 0 {
offset, _ = strconv.Atoi(offsetStr)
}
size := 0
sizeStr := v.Get("size")
if len(sizeStr) > 0 {
size, _ = strconv.Atoi(sizeStr)
}
var clusterIds []int
if clusterIdString != "" {
clusterIdSlices := strings.Split(clusterIdString, ",")
for _, clusterId := range clusterIdSlices {
id, err := strconv.Atoi(clusterId)
if err != nil {
common.WriteJsonResp(w, err, "please send valid cluster Ids", http.StatusBadRequest)
return
}
clusterIds = append(clusterIds, id)
}
}
_, span := otel.Tracer("orchestrator").Start(r.Context(), "pipelineBuilder.GetEnvironmentListWithAppData")
result, err := handler.pipelineBuilder.GetEnvironmentListForAutocompleteFilter(envName, clusterIds, offset, size, token, handler.checkAuthBatch, r.Context())
span.End()
if err != nil {
handler.Logger.Errorw("service err, get app", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
common.WriteJsonResp(w, err, result, http.StatusOK)
}
func (handler *PipelineConfigRestHandlerImpl) GetApplicationsByEnvironment(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
token := r.Header.Get("token")
userId, err := handler.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
envId, err := strconv.Atoi(vars["envId"])
if err != nil {
handler.Logger.Errorw("request err, get app", "err", err, "envId", envId)
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
v := r.URL.Query()
appIdsString := v.Get("appIds")
var appIds []int
if len(appIdsString) > 0 {
appIdsSlices := strings.Split(appIdsString, ",")
for _, appId := range appIdsSlices {
id, err := strconv.Atoi(appId)
if err != nil {
common.WriteJsonResp(w, err, "please provide valid appIds", http.StatusBadRequest)
return
}
appIds = append(appIds, id)
}
}
var appGroupId int
appGroupIdStr := v.Get("appGroupId")
if len(appGroupIdStr) > 0 {
appGroupId, err = strconv.Atoi(appGroupIdStr)
if err != nil {
common.WriteJsonResp(w, err, "please provide valid appGroupId", http.StatusBadRequest)
return
}
}
request := resourceGroup2.ResourceGroupingRequest{
ParentResourceId: envId,
ResourceGroupId: appGroupId,
ResourceGroupType: resourceGroup2.APP_GROUP,
ResourceIds: appIds,
CheckAuthBatch: handler.checkAuthBatch,
UserId: userId,
Ctx: r.Context(),
}
results, err := handler.pipelineBuilder.GetAppListForEnvironment(request, token)
if err != nil {
handler.Logger.Errorw("service err, get app", "err", err)
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
return
}
common.WriteJsonResp(w, err, results, http.StatusOK)
}
func (handler *PipelineConfigRestHandlerImpl) FetchAppDeploymentStatusForEnvironments(w http.ResponseWriter, r *http.Request) {
token := r.Header.Get("token")
userId, err := handler.userAuthService.GetLoggedInUser(r)
if userId == 0 || err != nil {
common.WriteJsonResp(w, err, "Unauthorized User", http.StatusUnauthorized)
return
}
vars := mux.Vars(r)
envId, err := strconv.Atoi(vars["envId"])
if err != nil {
common.WriteJsonResp(w, err, nil, http.StatusBadRequest)
return
}
v := r.URL.Query()
appIdsString := v.Get("appIds")
var appIds []int
if len(appIdsString) > 0 {
appIdsSlices := strings.Split(appIdsString, ",")
for _, appId := range appIdsSlices {
id, err := strconv.Atoi(appId)
if err != nil {
common.WriteJsonResp(w, err, "please provide valid appIds", http.StatusBadRequest)
return
}
appIds = append(appIds, id)
}
}
var appGroupId int
appGroupIdStr := v.Get("appGroupId")
if len(appGroupIdStr) > 0 {
appGroupId, err = strconv.Atoi(appGroupIdStr)
if err != nil {
common.WriteJsonResp(w, err, "please provide valid appGroupId", http.StatusBadRequest)
return
}
}
request := resourceGroup2.ResourceGroupingRequest{
ParentResourceId: envId,
ResourceGroupId: appGroupId,
ResourceGroupType: resourceGroup2.APP_GROUP,
ResourceIds: appIds,
CheckAuthBatch: handler.checkAuthBatch,
UserId: userId,
Ctx: r.Context(),
}
_, span := otel.Tracer("orchestrator").Start(r.Context(), "pipelineBuilder.FetchAppDeploymentStatusForEnvironments")
results, err := handler.cdHandler.FetchAppDeploymentStatusForEnvironments(request, token)
span.End()
if err != nil {
handler.Logger.Errorw("service err, FetchAppWorkflowStatusForTriggerView", "err", err)
if util.IsErrNoRows(err) {
err = &util.ApiError{Code: "404", HttpStatusCode: 200, UserMessage: "no status found"}
common.WriteJsonResp(w, err, nil, http.StatusOK)
} else {
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
}
return
}
common.WriteJsonResp(w, err, results, http.StatusOK)
}