mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-21 16:53:23 +00:00
* Feat: support resource topology for endpoints Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com> * Fix: add and refactor the test for endpoint Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
/*
|
|
Copyright 2022. The KubeVela 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 query
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
cuejson "cuelang.org/go/pkg/encoding/json"
|
|
|
|
"github.com/oam-dev/kubevela/pkg/cue/model/value"
|
|
)
|
|
|
|
// fillQueryResult help fill query result which contains k8s object to *value.Value
|
|
func fillQueryResult(v *value.Value, res interface{}, paths ...string) error {
|
|
b, err := json.Marshal(res)
|
|
if err != nil {
|
|
return v.FillObject(err, "err")
|
|
}
|
|
expr, err := cuejson.Unmarshal(b)
|
|
if err != nil {
|
|
return v.FillObject(err, "err")
|
|
}
|
|
err = v.FillObject(expr, paths...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return v.Error()
|
|
}
|