2021-09-19 12:00:00 +00:00
|
|
|
// Copyright (c) 2019, Drone IO Inc.
|
|
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
2019-02-10 19:00:16 +00:00
|
|
|
|
2019-01-22 23:44:17 +00:00
|
|
|
package yaml
|
|
|
|
|
|
|
|
type (
|
|
|
|
// Variable represents an environment variable that
|
|
|
|
// can be defined as a string literal or as a reference
|
|
|
|
// to a secret.
|
|
|
|
Variable struct {
|
2023-02-08 09:14:20 +00:00
|
|
|
Value string `json:"value,omitempty"`
|
|
|
|
FromSecret string `json:"from_secret,omitempty" yaml:"from_secret"`
|
2019-01-22 23:44:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// variable is a tempoary type used to unmarshal
|
|
|
|
// variables with references to secrets.
|
|
|
|
variable struct {
|
2023-02-08 09:14:20 +00:00
|
|
|
Value string
|
|
|
|
FromSecret string `yaml:"from_secret"`
|
2019-01-22 23:44:17 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
// UnmarshalYAML implements yaml unmarshalling.
|
|
|
|
func (v *Variable) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
|
|
d := new(variable)
|
2023-02-08 09:14:20 +00:00
|
|
|
|
2019-02-22 00:59:17 +00:00
|
|
|
err := unmarshal(&d.Value)
|
|
|
|
if err != nil {
|
|
|
|
err = unmarshal(d)
|
2019-01-22 23:44:17 +00:00
|
|
|
}
|
2023-02-08 09:14:20 +00:00
|
|
|
|
2019-02-22 00:59:17 +00:00
|
|
|
v.Value = d.Value
|
2023-02-08 09:14:20 +00:00
|
|
|
v.FromSecret = d.FromSecret
|
|
|
|
|
2019-01-22 23:44:17 +00:00
|
|
|
return err
|
|
|
|
}
|
2019-04-23 23:08:44 +00:00
|
|
|
|
|
|
|
// MarshalYAML implements yaml marshalling.
|
|
|
|
func (v *Variable) MarshalYAML() (interface{}, error) {
|
2023-02-08 09:14:20 +00:00
|
|
|
if v.FromSecret != "" {
|
2019-04-23 23:08:44 +00:00
|
|
|
m := map[string]interface{}{}
|
2023-02-08 09:14:20 +00:00
|
|
|
m["from_secret"] = v.FromSecret
|
|
|
|
|
2019-04-23 23:08:44 +00:00
|
|
|
return m, nil
|
|
|
|
}
|
2023-02-08 09:14:20 +00:00
|
|
|
|
2019-04-23 23:08:44 +00:00
|
|
|
if v.Value != "" {
|
|
|
|
return v.Value, nil
|
|
|
|
}
|
2023-02-08 09:14:20 +00:00
|
|
|
|
|
|
|
//nolint:nilnil
|
2019-04-23 23:08:44 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|