Add #TrimSecret task
Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com>
This commit is contained in:
31
plan/task/trimsecret.go
Normal file
31
plan/task/trimsecret.go
Normal file
@@ -0,0 +1,31 @@
|
||||
package task
|
||||
|
||||
import (
|
||||
"context"
|
||||
"strings"
|
||||
|
||||
"go.dagger.io/dagger/compiler"
|
||||
"go.dagger.io/dagger/plancontext"
|
||||
"go.dagger.io/dagger/solver"
|
||||
)
|
||||
|
||||
func init() {
|
||||
Register("TrimSecret", func() Task { return &trimSecretTask{} })
|
||||
}
|
||||
|
||||
type trimSecretTask struct {
|
||||
}
|
||||
|
||||
func (t *trimSecretTask) Run(ctx context.Context, pctx *plancontext.Context, s solver.Solver, v *compiler.Value) (*compiler.Value, error) {
|
||||
input, err := pctx.Secrets.FromValue(v.Lookup("input"))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
plaintext := strings.TrimSpace(input.PlainText())
|
||||
secret := pctx.Secrets.New(plaintext)
|
||||
|
||||
return compiler.NewValue().FillFields(map[string]interface{}{
|
||||
"output": secret.MarshalCUE(),
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user