Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add envsubst package #758

Merged
merged 4 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions envsubst/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# envsubst

`github.com/fluxcd/pkg/envsubst` is a Go package for expanding variables in a string using `${var}` syntax.
Includes support for bash string replacement functions.

This package is a fork of [drone/envsubst](https://github.com/drone/envsubst).

## Supported Functions

| __Expression__ | __Meaning__ |
|-------------------------------|---------------------------------------------------------------------|
| `${var}` | Value of `$var` |
| `${#var}` | String length of `$var` |
| `${var^}` | Uppercase first character of `$var` |
| `${var^^}` | Uppercase all characters in `$var` |
| `${var,}` | Lowercase first character of `$var` |
| `${var,,}` | Lowercase all characters in `$var` |
| `${var:n}` | Offset `$var` `n` characters from start |
| `${var:n:len}` | Offset `$var` `n` characters with max length of `len` |
| `${var#pattern}` | Strip shortest `pattern` match from start |
| `${var##pattern}` | Strip longest `pattern` match from start |
| `${var%pattern}` | Strip shortest `pattern` match from end |
| `${var%%pattern}` | Strip longest `pattern` match from end |
| `${var-default}` | If `$var` is not set, evaluate expression as `$default` |
| `${var:-default}` | If `$var` is not set or is empty, evaluate expression as `$default` |
| `${var=default}` | If `$var` is not set, evaluate expression as `$default` |
| `${var:=default}` | If `$var` is not set or is empty, evaluate expression as `$default` |
| `${var/pattern/replacement}` | Replace as few `pattern` matches as possible with `replacement` |
| `${var//pattern/replacement}` | Replace as many `pattern` matches as possible with `replacement` |
| `${var/#pattern/replacement}` | Replace `pattern` match with `replacement` from `$var` start |
| `${var/%pattern/replacement}` | Replace `pattern` match with `replacement` from `$var` end |

For a deeper reference, see [bash-hackers](https://wiki.bash-hackers.org/syntax/pe#case_modification) or [gnu pattern matching](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html).

## Unsupported Functions

* `${var+default}`
* `${var:?default}`
* `${var:+default}`
19 changes: 19 additions & 0 deletions envsubst/doc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*
Copyright 2024 The Flux 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 envsubst is a Go package for expanding variables in a string using `${var}` syntax.
// Includes support for bash string replacement functions.
package envsubst
47 changes: 47 additions & 0 deletions envsubst/eval.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*
Copyright 2024 The Flux 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.
*/

// Forked from: https://github.com/drone/envsubst
// MIT License
// Copyright (c) 2017 drone.io.

package envsubst

import "os"

// Eval replaces ${var} in the string based on the mapping function.
func Eval(s string, mapping func(string) (string, bool)) (string, error) {
t, err := Parse(s)
if err != nil {
return s, err
}
return t.Execute(mapping)
}

// EvalEnv replaces ${var} in the string according to the values of the
// current environment variables. References to undefined variables are
// replaced by the empty string.
func EvalEnv(s string, strict bool) (string, error) {
mapping := Getenv
if strict {
mapping = os.LookupEnv
}
return Eval(s, mapping)
}

func Getenv(s string) (string, bool) {
return os.Getenv(s), true
}
Loading
Loading