123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- /*
- Copyright 2014 The Kubernetes 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.
- */
- // Adapted from k8s.io/apimachinery/pkg/util/validation:
- // https://github.com/kubernetes/apimachinery/blob/7687996c715ee7d5c8cf1e3215e607eb065a4221/pkg/util/validation/validation.go
- package k8s
- import (
- "fmt"
- "regexp"
- "strings"
- )
- const qnameCharFmt string = "[A-Za-z0-9]"
- const qnameExtCharFmt string = "[-A-Za-z0-9_.]"
- const qualifiedNameFmt string = "(" + qnameCharFmt + qnameExtCharFmt + "*)?" + qnameCharFmt
- const qualifiedNameErrMsg string = "must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character"
- const qualifiedNameMaxLength int = 63
- var qualifiedNameRegexp = regexp.MustCompile("^" + qualifiedNameFmt + "$")
- // IsQualifiedName tests whether the value passed is what Kubernetes calls a
- // "qualified name". This is a format used in various places throughout the
- // system. If the value is not valid, a list of error strings is returned.
- // Otherwise an empty list (or nil) is returned.
- func IsQualifiedName(value string) []string {
- var errs []string
- parts := strings.Split(value, "/")
- var name string
- switch len(parts) {
- case 1:
- name = parts[0]
- case 2:
- var prefix string
- prefix, name = parts[0], parts[1]
- if len(prefix) == 0 {
- errs = append(errs, "prefix part "+EmptyError())
- } else if msgs := IsDNS1123Subdomain(prefix); len(msgs) != 0 {
- errs = append(errs, prefixEach(msgs, "prefix part ")...)
- }
- default:
- return append(errs, "a qualified name "+RegexError(qualifiedNameErrMsg, qualifiedNameFmt, "MyName", "my.name", "123-abc")+
- " with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')")
- }
- if len(name) == 0 {
- errs = append(errs, "name part "+EmptyError())
- } else if len(name) > qualifiedNameMaxLength {
- errs = append(errs, "name part "+MaxLenError(qualifiedNameMaxLength))
- }
- if !qualifiedNameRegexp.MatchString(name) {
- errs = append(errs, "name part "+RegexError(qualifiedNameErrMsg, qualifiedNameFmt, "MyName", "my.name", "123-abc"))
- }
- return errs
- }
- const labelValueFmt string = "(" + qualifiedNameFmt + ")?"
- const labelValueErrMsg string = "a valid label must be an empty string or consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character"
- // LabelValueMaxLength is a label's max length
- const LabelValueMaxLength int = 63
- var labelValueRegexp = regexp.MustCompile("^" + labelValueFmt + "$")
- // IsValidLabelValue tests whether the value passed is a valid label value. If
- // the value is not valid, a list of error strings is returned. Otherwise an
- // empty list (or nil) is returned.
- func IsValidLabelValue(value string) []string {
- var errs []string
- if len(value) > LabelValueMaxLength {
- errs = append(errs, MaxLenError(LabelValueMaxLength))
- }
- if !labelValueRegexp.MatchString(value) {
- errs = append(errs, RegexError(labelValueErrMsg, labelValueFmt, "MyValue", "my_value", "12345"))
- }
- return errs
- }
- const dns1123LabelFmt string = "[a-z0-9]([-a-z0-9]*[a-z0-9])?"
- const dns1123LabelErrMsg string = "a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character"
- // DNS1123LabelMaxLength is a label's max length in DNS (RFC 1123)
- const DNS1123LabelMaxLength int = 63
- var dns1123LabelRegexp = regexp.MustCompile("^" + dns1123LabelFmt + "$")
- // IsDNS1123Label tests for a string that conforms to the definition of a label in
- // DNS (RFC 1123).
- func IsDNS1123Label(value string) []string {
- var errs []string
- if len(value) > DNS1123LabelMaxLength {
- errs = append(errs, MaxLenError(DNS1123LabelMaxLength))
- }
- if !dns1123LabelRegexp.MatchString(value) {
- errs = append(errs, RegexError(dns1123LabelErrMsg, dns1123LabelFmt, "my-name", "123-abc"))
- }
- return errs
- }
- const dns1123SubdomainFmt string = dns1123LabelFmt + "(\\." + dns1123LabelFmt + ")*"
- const dns1123SubdomainErrorMsg string = "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character"
- // DNS1123SubdomainMaxLength is a subdomain's max length in DNS (RFC 1123)
- const DNS1123SubdomainMaxLength int = 253
- var dns1123SubdomainRegexp = regexp.MustCompile("^" + dns1123SubdomainFmt + "$")
- // IsDNS1123Subdomain tests for a string that conforms to the definition of a
- // subdomain in DNS (RFC 1123).
- func IsDNS1123Subdomain(value string) []string {
- var errs []string
- if len(value) > DNS1123SubdomainMaxLength {
- errs = append(errs, MaxLenError(DNS1123SubdomainMaxLength))
- }
- if !dns1123SubdomainRegexp.MatchString(value) {
- errs = append(errs, RegexError(dns1123SubdomainErrorMsg, dns1123SubdomainFmt, "example.com"))
- }
- return errs
- }
- const dns1035LabelFmt string = "[a-z]([-a-z0-9]*[a-z0-9])?"
- const dns1035LabelErrMsg string = "a DNS-1035 label must consist of lower case alphanumeric characters or '-', start with an alphabetic character, and end with an alphanumeric character"
- // DNS1035LabelMaxLength is a label's max length in DNS (RFC 1035)
- const DNS1035LabelMaxLength int = 63
- var dns1035LabelRegexp = regexp.MustCompile("^" + dns1035LabelFmt + "$")
- // IsDNS1035Label tests for a string that conforms to the definition of a label in
- // DNS (RFC 1035).
- func IsDNS1035Label(value string) []string {
- var errs []string
- if len(value) > DNS1035LabelMaxLength {
- errs = append(errs, MaxLenError(DNS1035LabelMaxLength))
- }
- if !dns1035LabelRegexp.MatchString(value) {
- errs = append(errs, RegexError(dns1035LabelErrMsg, dns1035LabelFmt, "my-name", "abc-123"))
- }
- return errs
- }
- // wildcard definition - RFC 1034 section 4.3.3.
- // examples:
- // - valid: *.bar.com, *.foo.bar.com
- // - invalid: *.*.bar.com, *.foo.*.com, *bar.com, f*.bar.com, *
- const wildcardDNS1123SubdomainFmt = "\\*\\." + dns1123SubdomainFmt
- const wildcardDNS1123SubdomainErrMsg = "a wildcard DNS-1123 subdomain must start with '*.', followed by a valid DNS subdomain, which must consist of lower case alphanumeric characters, '-' or '.' and end with an alphanumeric character"
- // IsWildcardDNS1123Subdomain tests for a string that conforms to the definition of a
- // wildcard subdomain in DNS (RFC 1034 section 4.3.3).
- func IsWildcardDNS1123Subdomain(value string) []string {
- wildcardDNS1123SubdomainRegexp := regexp.MustCompile("^" + wildcardDNS1123SubdomainFmt + "$")
- var errs []string
- if len(value) > DNS1123SubdomainMaxLength {
- errs = append(errs, MaxLenError(DNS1123SubdomainMaxLength))
- }
- if !wildcardDNS1123SubdomainRegexp.MatchString(value) {
- errs = append(errs, RegexError(wildcardDNS1123SubdomainErrMsg, wildcardDNS1123SubdomainFmt, "*.example.com"))
- }
- return errs
- }
- // MaxLenError returns a string explanation of a "string too long" validation
- // failure.
- func MaxLenError(length int) string {
- return fmt.Sprintf("must be no more than %d characters", length)
- }
- // RegexError returns a string explanation of a regex validation failure.
- func RegexError(msg string, fmt string, examples ...string) string {
- if len(examples) == 0 {
- return msg + " (regex used for validation is '" + fmt + "')"
- }
- msg += " (e.g. "
- for i := range examples {
- if i > 0 {
- msg += " or "
- }
- msg += "'" + examples[i] + "', "
- }
- msg += "regex used for validation is '" + fmt + "')"
- return msg
- }
- // EmptyError returns a string explanation of a "must not be empty" validation
- // failure.
- func EmptyError() string {
- return "must be non-empty"
- }
- func prefixEach(msgs []string, prefix string) []string {
- for i := range msgs {
- msgs[i] = prefix + msgs[i]
- }
- return msgs
- }
- // InclusiveRangeError returns a string explanation of a numeric "must be
- // between" validation failure.
- func InclusiveRangeError(lo, hi int) string {
- return fmt.Sprintf(`must be between %d and %d, inclusive`, lo, hi)
- }
|