forked from apache/dubbo-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigurator_rule.go
More file actions
173 lines (161 loc) · 6.17 KB
/
configurator_rule.go
File metadata and controls
173 lines (161 loc) · 6.17 KB
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
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 service
import (
"github.com/apache/dubbo-admin/pkg/common/constants"
"github.com/apache/dubbo-admin/pkg/core/lock"
"github.com/duke-git/lancet/v2/slice"
"github.com/apache/dubbo-admin/pkg/common/bizerror"
consolectx "github.com/apache/dubbo-admin/pkg/console/context"
"github.com/apache/dubbo-admin/pkg/console/model"
"github.com/apache/dubbo-admin/pkg/core/logger"
"github.com/apache/dubbo-admin/pkg/core/manager"
meshresource "github.com/apache/dubbo-admin/pkg/core/resource/apis/mesh/v1alpha1"
coremodel "github.com/apache/dubbo-admin/pkg/core/resource/model"
"github.com/apache/dubbo-admin/pkg/core/store/index"
)
func PageListConfiguratorRule(ctx consolectx.Context, req *model.SearchReq) (*model.SearchPaginationResult, error) {
pageData, err := manager.PageListByIndexes[*meshresource.DynamicConfigResource](
ctx.ResourceManager(),
meshresource.DynamicConfigKind,
map[string]string{
index.ByMeshIndex: req.Mesh,
},
req.PageReq)
if err != nil {
logger.Errorf("search dynamic config rule error: %v", err)
return nil, bizerror.New(bizerror.InternalError, "search dynamic config rule failed, please try again")
}
if pageData.Data == nil || len(pageData.Data) == 0 {
return &model.SearchPaginationResult{
List: nil,
PageInfo: coremodel.Pagination{
Total: 0,
PageSize: req.PageReq.PageSize,
PageOffset: req.PageReq.PageOffset,
},
}, nil
}
respList := slice.Map(pageData.Data, func(_ int, item *meshresource.DynamicConfigResource) *model.ConfiguratorSearchResp {
return &model.ConfiguratorSearchResp{
Scope: item.Spec.Scope,
CreateTime: "",
Enabled: item.Spec.Enabled,
RuleName: item.Name,
}
})
return &model.SearchPaginationResult{
List: respList,
PageInfo: pageData.Pagination,
}, nil
}
// SearchConfiguratorRuleByKeywords for now, only accurate search is supported
func SearchConfiguratorRuleByKeywords(ctx consolectx.Context, req *model.SearchReq) (*model.SearchPaginationResult, error) {
resKey := coremodel.BuildResourceKey(req.Mesh, req.Keywords)
configuratorRuleRes, exists, err := manager.GetByKey[*meshresource.DynamicConfigResource](
ctx.ResourceManager(), meshresource.DynamicConfigKind, resKey)
if err != nil {
logger.Errorf("search dynamic config rule error: %v", err)
return nil, bizerror.New(bizerror.InternalError, "search dynamic config rule failed, please try again")
}
if !exists {
return &model.SearchPaginationResult{
List: nil,
PageInfo: coremodel.Pagination{
Total: 0,
PageSize: req.PageReq.PageSize,
PageOffset: req.PageReq.PageOffset,
},
}, nil
}
resp := &model.ConfiguratorSearchResp{
Scope: configuratorRuleRes.Spec.Scope,
CreateTime: "",
Enabled: configuratorRuleRes.Spec.Enabled,
RuleName: configuratorRuleRes.Name,
}
return &model.SearchPaginationResult{
List: []*model.ConfiguratorSearchResp{resp},
PageInfo: coremodel.Pagination{
Total: 1,
PageSize: req.PageReq.PageSize,
PageOffset: req.PageReq.PageOffset,
},
}, nil
}
func GetConfigurator(ctx consolectx.Context, name string, mesh string) (*meshresource.DynamicConfigResource, error) {
res, _, err := manager.GetByKey[*meshresource.DynamicConfigResource](
ctx.ResourceManager(),
meshresource.DynamicConfigKind,
coremodel.BuildResourceKey(mesh, name),
)
if err != nil {
return nil, err
}
return res, nil
}
func UpdateConfigurator(ctx consolectx.Context, res *meshresource.DynamicConfigResource) error {
lockMgr := ctx.LockManager()
if lockMgr == nil {
return updateConfiguratorUnsafe(ctx, res)
}
lockKey := lock.BuildConfiguratorRuleLockKey(res.Mesh, res.Name)
return lockMgr.WithLock(ctx.AppContext(), lockKey, constants.DefaultLockTimeout, func() error {
return updateConfiguratorUnsafe(ctx, res)
})
}
func updateConfiguratorUnsafe(ctx consolectx.Context, res *meshresource.DynamicConfigResource) error {
if err := ctx.ResourceManager().Update(res); err != nil {
logger.Warnf("update %s configurator failed with error: %s", res.Name, err.Error())
return err
}
return nil
}
func CreateConfigurator(ctx consolectx.Context, res *meshresource.DynamicConfigResource) error {
lockMgr := ctx.LockManager()
if lockMgr == nil {
return createConfiguratorUnsafe(ctx, res)
}
lockKey := lock.BuildConfiguratorRuleLockKey(res.Mesh, res.Name)
return lockMgr.WithLock(ctx.AppContext(), lockKey, constants.DefaultLockTimeout, func() error {
return createConfiguratorUnsafe(ctx, res)
})
}
func createConfiguratorUnsafe(ctx consolectx.Context, res *meshresource.DynamicConfigResource) error {
if err := ctx.ResourceManager().Add(res); err != nil {
logger.Warnf("create %s configurator failed with error: %s", res.Name, err.Error())
return err
}
return nil
}
func DeleteConfigurator(ctx consolectx.Context, name string, mesh string) error {
lockMgr := ctx.LockManager()
if lockMgr == nil {
return deleteConfiguratorUnsafe(ctx, name, mesh)
}
lockKey := lock.BuildConfiguratorRuleLockKey(mesh, name)
return lockMgr.WithLock(ctx.AppContext(), lockKey, constants.DefaultLockTimeout, func() error {
return deleteConfiguratorUnsafe(ctx, name, mesh)
})
}
func deleteConfiguratorUnsafe(ctx consolectx.Context, name string, mesh string) error {
if err := ctx.ResourceManager().DeleteByKey(meshresource.DynamicConfigKind, mesh, coremodel.BuildResourceKey(mesh, name)); err != nil {
logger.Warnf("delete %s configurator failed with error: %s", name, err.Error())
return err
}
return nil
}