mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-16 14:27:00 +00:00
(cherry picked from commit 62bd87f13f)
Co-authored-by: FogDong <dongtianxin.tx@alibaba-inc.com>
54 lines
1.4 KiB
Go
54 lines
1.4 KiB
Go
/*
|
|
Copyright 2021 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 convert
|
|
|
|
import (
|
|
"github.com/oam-dev/kubevela/pkg/cue/model/value"
|
|
wfContext "github.com/oam-dev/kubevela/pkg/workflow/context"
|
|
"github.com/oam-dev/kubevela/pkg/workflow/providers"
|
|
"github.com/oam-dev/kubevela/pkg/workflow/types"
|
|
)
|
|
|
|
const (
|
|
// ProviderName is provider name for install.
|
|
ProviderName = "convert"
|
|
)
|
|
|
|
type provider struct {
|
|
}
|
|
|
|
// String convert byte to string
|
|
func (h *provider) String(ctx wfContext.Context, v *value.Value, act types.Action) error {
|
|
b, err := v.LookupValue("bt")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
s, err := b.CueValue().Bytes()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return v.FillObject(string(s), "str")
|
|
}
|
|
|
|
// Install register handlers to provider discover.
|
|
func Install(p providers.Providers) {
|
|
prd := &provider{}
|
|
p.Register(ProviderName, map[string]providers.Handler{
|
|
"string": prd.String,
|
|
})
|
|
}
|