mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 19:10:38 +00:00
63 lines
1.7 KiB
Go
63 lines
1.7 KiB
Go
|
package transform
|
||
|
|
||
|
import (
|
||
|
"github.com/drone/drone-runtime/engine"
|
||
|
"github.com/drone/drone-yaml/yaml/compiler/internal/rand"
|
||
|
)
|
||
|
|
||
|
// WithSecrets is a transform function that adds a set
|
||
|
// of global secrets to the container.
|
||
|
func WithSecrets(secrets map[string]string) func(*engine.Spec) {
|
||
|
return func(spec *engine.Spec) {
|
||
|
for key, value := range secrets {
|
||
|
spec.Secrets = append(spec.Secrets,
|
||
|
&engine.Secret{
|
||
|
Metadata: engine.Metadata{
|
||
|
UID: rand.String(),
|
||
|
Name: key,
|
||
|
Namespace: spec.Metadata.Namespace,
|
||
|
},
|
||
|
Data: value,
|
||
|
},
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// SecretFunc is a callback function used to request
|
||
|
// named secret, required by a pipeline step.
|
||
|
type SecretFunc func(string) *engine.Secret
|
||
|
|
||
|
// WithSecretFunc is a transform function that resolves
|
||
|
// all named secrets through a callback function, and
|
||
|
// adds the secrets to the specification.
|
||
|
func WithSecretFunc(f SecretFunc) func(*engine.Spec) {
|
||
|
return func(spec *engine.Spec) {
|
||
|
// first we get a unique list of all secrets
|
||
|
// used by the specification.
|
||
|
set := map[string]struct{}{}
|
||
|
for _, step := range spec.Steps {
|
||
|
// if we know the step is not going to run,
|
||
|
// we can ignore any secrets that it requires.
|
||
|
if step.RunPolicy == engine.RunNever {
|
||
|
continue
|
||
|
}
|
||
|
for _, v := range step.Secrets {
|
||
|
set[v.Name] = struct{}{}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// next we use the callback function to
|
||
|
// get the value for each secret, and append
|
||
|
// to the specification.
|
||
|
for name := range set {
|
||
|
secret := f(name)
|
||
|
if secret != nil {
|
||
|
secret.Metadata.UID = rand.String()
|
||
|
secret.Metadata.Namespace = spec.Metadata.Namespace
|
||
|
spec.Secrets = append(spec.Secrets, secret)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|