-
Notifications
You must be signed in to change notification settings - Fork 11
/
Wire.go
85 lines (79 loc) · 3.43 KB
/
Wire.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
//go:build wireinject
// +build wireinject
/*
* Copyright (c) 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 main
import (
"github.com/devtron-labs/common-lib/helmLib/registry"
"github.com/devtron-labs/common-lib/monitoring"
"github.com/devtron-labs/common-lib/utils/grpc"
"github.com/devtron-labs/common-lib/utils/k8s"
"github.com/devtron-labs/kubelink/api/router"
globalConfig "github.com/devtron-labs/kubelink/config"
"github.com/devtron-labs/kubelink/converter"
"github.com/devtron-labs/kubelink/internals/lock"
"github.com/devtron-labs/kubelink/internals/logger"
"github.com/devtron-labs/kubelink/pkg/asyncProvider"
repository "github.com/devtron-labs/kubelink/pkg/cluster"
"github.com/devtron-labs/kubelink/pkg/k8sInformer"
"github.com/devtron-labs/kubelink/pkg/service"
commonHelmService "github.com/devtron-labs/kubelink/pkg/service/commonHelmService"
fluxService "github.com/devtron-labs/kubelink/pkg/service/fluxService"
helmApplicationService "github.com/devtron-labs/kubelink/pkg/service/helmApplicationService"
"github.com/devtron-labs/kubelink/pkg/sql"
"github.com/google/wire"
)
func InitializeApp() (*App, error) {
wire.Build(
NewApp,
sql.PgSqlWireSet,
logger.NewSugaredLogger,
k8s.GetRuntimeConfig,
k8s.NewK8sUtil,
wire.Bind(new(k8s.K8sService), new(*k8s.K8sServiceImpl)),
lock.NewChartRepositoryLocker,
commonHelmService.NewK8sServiceImpl,
wire.Bind(new(commonHelmService.K8sService), new(*commonHelmService.K8sServiceImpl)),
commonHelmService.NewCommonHelmServiceImpl,
wire.Bind(new(commonHelmService.CommonHelmService), new(*commonHelmService.CommonHelmServiceImpl)),
helmApplicationService.NewHelmAppServiceImpl,
wire.Bind(new(helmApplicationService.HelmAppService), new(*helmApplicationService.HelmAppServiceImpl)),
converter.NewConverterImpl,
wire.Bind(new(converter.ClusterBeanConverter), new(*converter.ClusterBeanConverterImpl)),
fluxService.NewFluxApplicationServiceImpl,
wire.Bind(new(fluxService.FluxApplicationService), new(*fluxService.FluxApplicationServiceImpl)),
service.NewApplicationServiceServerImpl,
router.NewRouter,
asyncProvider.NewAsyncRunnable,
k8sInformer.Newk8sInformerImpl,
wire.Bind(new(k8sInformer.K8sInformer), new(*k8sInformer.K8sInformerImpl)),
repository.NewClusterRepositoryImpl,
wire.Bind(new(repository.ClusterRepository), new(*repository.ClusterRepositoryImpl)),
globalConfig.GetHelmReleaseConfig,
//k8sInformer.GetHelmReleaseConfig,
grpc.GetConfiguration,
//pubsub_lib.NewPubSubClientServiceImpl,
//cache.NewClusterCacheImpl,
//wire.Bind(new(cache.ClusterCache), new(*cache.ClusterCacheImpl)),
//cache.GetClusterCacheConfig,
registry.NewSettingsFactoryImpl,
wire.Bind(new(registry.SettingsFactory), new(*registry.SettingsFactoryImpl)),
registry.NewDefaultSettingsGetter,
wire.Bind(new(registry.DefaultSettingsGetter), new(*registry.DefaultSettingsGetterImpl)),
monitoring.NewMonitoringRouter,
)
return &App{}, nil
}