mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-23 22:46:53 +00:00
* provider http * method * add license header * test cases * test cases * test cases * test cases * generate * lint * upgrade apply component * cover * test install
56 lines
1.5 KiB
Go
56 lines
1.5 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 http
|
|
|
|
import (
|
|
"cuelang.org/go/cue"
|
|
|
|
"github.com/oam-dev/kubevela/pkg/builtin"
|
|
"github.com/oam-dev/kubevela/pkg/builtin/registry"
|
|
"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 = "http"
|
|
)
|
|
|
|
type provider struct {
|
|
}
|
|
|
|
// Do process http request.
|
|
func (h *provider) Do(ctx wfContext.Context, v *value.Value, act types.Action) error {
|
|
ret, err := builtin.RunTaskByKey("http", cue.Value{}, ®istry.Meta{
|
|
Obj: v.CueValue(),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return v.FillObject(ret, "response")
|
|
}
|
|
|
|
// Install register handlers to provider discover.
|
|
func Install(p providers.Providers) {
|
|
prd := &provider{}
|
|
p.Register(ProviderName, map[string]providers.Handler{
|
|
"do": prd.Do,
|
|
})
|
|
}
|