pulumi/cmd/pulumi-test-language/providers/simple_invoke_provider.go

318 lines
8.3 KiB
Go

// Copyright 2016-2023, Pulumi Corporation.
//
// 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 providers
import (
"context"
"encoding/json"
"fmt"
"github.com/blang/semver"
"github.com/pulumi/pulumi/pkg/v3/codegen/schema"
"github.com/pulumi/pulumi/sdk/v3/go/common/resource"
"github.com/pulumi/pulumi/sdk/v3/go/common/resource/plugin"
"github.com/pulumi/pulumi/sdk/v3/go/common/tokens"
"github.com/pulumi/pulumi/sdk/v3/go/common/workspace"
)
type SimpleInvokeProvider struct {
plugin.UnimplementedProvider
}
var _ plugin.Provider = (*SimpleInvokeProvider)(nil)
func (p *SimpleInvokeProvider) Close() error {
return nil
}
func (p *SimpleInvokeProvider) Configure(
context.Context, plugin.ConfigureRequest,
) (plugin.ConfigureResponse, error) {
return plugin.ConfigureResponse{}, nil
}
func (p *SimpleInvokeProvider) Pkg() tokens.Package {
return "simple-invoke"
}
func (p *SimpleInvokeProvider) GetPluginInfo(context.Context) (workspace.PluginInfo, error) {
ver := semver.MustParse("10.0.0")
return workspace.PluginInfo{
Version: &ver,
}, nil
}
func (p *SimpleInvokeProvider) GetSchema(
context.Context, plugin.GetSchemaRequest,
) (plugin.GetSchemaResponse, error) {
resourceProperties := map[string]schema.PropertySpec{
"text": {
TypeSpec: schema.TypeSpec{
Type: "string",
},
},
}
resourceRequired := []string{"text"}
pkg := schema.PackageSpec{
Name: "simple-invoke",
Version: "10.0.0",
Resources: map[string]schema.ResourceSpec{
// A small resource that just has a single string property.
"simple-invoke:index:StringResource": {
ObjectTypeSpec: schema.ObjectTypeSpec{
Type: "object",
Properties: resourceProperties,
Required: resourceRequired,
},
InputProperties: resourceProperties,
RequiredInputs: resourceRequired,
},
},
Functions: map[string]schema.FunctionSpec{
"simple-invoke:index:myInvoke": {
Inputs: &schema.ObjectTypeSpec{
Type: "object",
Properties: map[string]schema.PropertySpec{
"value": {
TypeSpec: schema.TypeSpec{
Type: "string",
},
},
},
Required: []string{"value"},
},
ReturnType: &schema.ReturnTypeSpec{
ObjectTypeSpec: &schema.ObjectTypeSpec{
Type: "object",
Properties: map[string]schema.PropertySpec{
"result": {
TypeSpec: schema.TypeSpec{
Type: "string",
},
},
},
Required: []string{"result"},
},
},
},
"simple-invoke:index:unit": {
Inputs: &schema.ObjectTypeSpec{
Type: "object",
},
ReturnType: &schema.ReturnTypeSpec{
ObjectTypeSpec: &schema.ObjectTypeSpec{
Type: "object",
Properties: map[string]schema.PropertySpec{
"result": {
TypeSpec: schema.TypeSpec{
Type: "string",
},
},
},
Required: []string{"result"},
},
},
},
"simple-invoke:index:secretInvoke": {
Inputs: &schema.ObjectTypeSpec{
Type: "object",
Properties: map[string]schema.PropertySpec{
"value": {
TypeSpec: schema.TypeSpec{
Type: "string",
},
},
// indicates that the response should be wrapped as a secret
"secretResponse": {
TypeSpec: schema.TypeSpec{
Type: "boolean",
},
},
},
Required: []string{"value", "secretResponse"},
},
ReturnType: &schema.ReturnTypeSpec{
ObjectTypeSpec: &schema.ObjectTypeSpec{
Type: "object",
Properties: map[string]schema.PropertySpec{
"response": {
TypeSpec: schema.TypeSpec{
Type: "string",
},
},
"secret": {
TypeSpec: schema.TypeSpec{
Type: "boolean",
},
},
},
Required: []string{"response", "secret"},
},
},
},
},
}
jsonBytes, err := json.Marshal(pkg)
return plugin.GetSchemaResponse{Schema: jsonBytes}, err
}
func (p *SimpleInvokeProvider) CheckConfig(
_ context.Context, req plugin.CheckConfigRequest,
) (plugin.CheckConfigResponse, error) {
// Expect just the version
version, ok := req.News["version"]
if !ok {
return plugin.CheckConfigResponse{
Failures: makeCheckFailure("version", "missing version"),
}, nil
}
if !version.IsString() {
return plugin.CheckConfigResponse{
Failures: makeCheckFailure("version", "version is not a string"),
}, nil
}
if version.StringValue() != "10.0.0" {
return plugin.CheckConfigResponse{
Failures: makeCheckFailure("version", "version is not 10.0.0"),
}, nil
}
if len(req.News) != 1 {
return plugin.CheckConfigResponse{
Failures: makeCheckFailure("", fmt.Sprintf("too many properties: %v", req.News)),
}, nil
}
return plugin.CheckConfigResponse{Properties: req.News}, nil
}
func (p *SimpleInvokeProvider) Invoke(
_ context.Context, req plugin.InvokeRequest,
) (plugin.InvokeResponse, error) {
if req.Tok == "simple-invoke:index:myInvoke" {
value, ok := req.Args["value"]
if !ok {
return plugin.InvokeResponse{
Failures: makeCheckFailure("value", "missing value"),
}, nil
}
if !value.IsString() {
return plugin.InvokeResponse{
Failures: makeCheckFailure("value", "is not a string"),
}, nil
}
return plugin.InvokeResponse{
Properties: resource.PropertyMap{
"result": resource.NewStringProperty(value.StringValue() + " world"),
},
}, nil
} else if req.Tok == "simple-invoke:index:unit" {
if len(req.Args) > 0 {
return plugin.InvokeResponse{
Failures: makeCheckFailure("", fmt.Sprintf("too many properties: %v", req.Args)),
}, nil
}
return plugin.InvokeResponse{
Properties: resource.PropertyMap{
"result": resource.NewStringProperty("Hello world"),
},
}, nil
} else if req.Tok == "simple-invoke:index:secretInvoke" {
value, ok := req.Args["value"]
if !ok {
return plugin.InvokeResponse{
Failures: makeCheckFailure("value", "missing value"),
}, nil
}
if !value.IsString() {
reason := fmt.Sprintf("value is not a string: %v", value)
return plugin.InvokeResponse{
Failures: makeCheckFailure("value", reason),
}, nil
}
secretResponse, ok := req.Args["secretResponse"]
if !ok {
return plugin.InvokeResponse{
Failures: makeCheckFailure("secretResponse", "missing secretResponse"),
}, nil
}
if !secretResponse.IsBool() {
return plugin.InvokeResponse{
Failures: makeCheckFailure("secretResponse", "secretResponse is not a bool"),
}, nil
}
// if the secretResponse is true, wrap the response as a secret
response := resource.NewStringProperty(value.StringValue() + " world")
if secretResponse.BoolValue() {
response = resource.MakeSecret(response)
}
return plugin.InvokeResponse{
Properties: resource.PropertyMap{
"response": response,
"secret": secretResponse,
},
}, nil
}
return plugin.InvokeResponse{}, fmt.Errorf("unknown function %v", req.Tok)
}
func (p *SimpleInvokeProvider) Check(
_ context.Context, req plugin.CheckRequest,
) (plugin.CheckResponse, error) {
if req.URN.Type() != "simple-invoke:index:StringResource" {
return plugin.CheckResponse{
Failures: makeCheckFailure("", fmt.Sprintf("invalid URN type: %s", req.URN.Type())),
}, nil
}
if len(req.News) != 1 {
return plugin.CheckResponse{
Failures: makeCheckFailure("", fmt.Sprintf("expected exactly one property: %v", req.News)),
}, nil
}
return plugin.CheckResponse{Properties: req.News}, nil
}
func (p *SimpleInvokeProvider) Create(
_ context.Context, req plugin.CreateRequest,
) (plugin.CreateResponse, error) {
if req.URN.Type() != "simple-invoke:index:StringResource" {
return plugin.CreateResponse{
Status: resource.StatusUnknown,
}, fmt.Errorf("invalid URN type: %s", req.URN.Type())
}
id := "id"
if req.Preview {
id = ""
}
return plugin.CreateResponse{
ID: resource.ID(id),
Properties: resource.PropertyMap{
"text": resource.NewStringProperty("Goodbye"),
},
Status: resource.StatusOK,
}, nil
}