Initial commit
This commit is contained in:
12
vendor/github.com/hyperhq/hypercli/utils/names.go
generated
vendored
Normal file
12
vendor/github.com/hyperhq/hypercli/utils/names.go
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
package utils
|
||||
|
||||
import "regexp"
|
||||
|
||||
// RestrictedNameChars collects the characters allowed to represent a name, normally used to validate container and volume names.
|
||||
const RestrictedNameChars = `[a-zA-Z0-9][a-zA-Z0-9_.-]`
|
||||
|
||||
// RestrictedNamePattern is a regular expression to validate names against the collection of restricted characters.
|
||||
var RestrictedNamePattern = regexp.MustCompile(`^/?` + RestrictedNameChars + `+$`)
|
||||
|
||||
// RestrictedVolumeNamePattern is a regular expression to validate volume names against the collection of restricted characters.
|
||||
var RestrictedVolumeNamePattern = regexp.MustCompile(`^` + RestrictedNameChars + `+$`)
|
||||
Reference in New Issue
Block a user