packer-cn/builder/yandex/template_func.go

37 lines
678 B
Go
Raw Normal View History

2019-03-26 08:29:15 -04:00
package yandex
import "strings"
import "text/template"
2019-03-26 08:29:15 -04:00
func isalphanumeric(b byte) bool {
if '0' <= b && b <= '9' {
return true
}
if 'a' <= b && b <= 'z' {
return true
}
return false
}
// Clean up image name by replacing invalid characters with "-"
2019-03-26 08:29:15 -04:00
// and converting upper cases to lower cases
func templateCleanImageName(s string) string {
2019-03-26 08:29:15 -04:00
if reImageFamily.MatchString(s) {
return s
}
b := []byte(strings.ToLower(s))
newb := make([]byte, len(b))
for i := range newb {
if isalphanumeric(b[i]) {
newb[i] = b[i]
} else {
newb[i] = '-'
}
}
return string(newb)
}
var TemplateFuncs = template.FuncMap{
"clean_image_name": templateCleanImageName,
2019-03-26 08:29:15 -04:00
}