123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- package is
- import (
- "regexp"
- "unicode"
- "kpt-tmr-group/pkg/valid"
- "github.com/asaskevich/govalidator"
- "github.com/nyaruka/phonenumbers"
- )
- var (
- // ErrEmail is the error that returns in case of an invalid email.
- ErrEmail = valid.NewError("validation_is_email", "must be a valid email address")
- // ErrURL is the error that returns in case of an invalid URL.
- ErrURL = valid.NewError("validation_is_url", "must be a valid URL")
- // ErrRequestURL is the error that returns in case of an invalid request URL.
- ErrRequestURL = valid.NewError("validation_is_request_url", "must be a valid request URL")
- // ErrRequestURI is the error that returns in case of an invalid request URI.
- ErrRequestURI = valid.NewError("validation_request_is_request_uri", "must be a valid request URI")
- // ErrAlpha is the error that returns in case of an invalid alpha value.
- ErrAlpha = valid.NewError("validation_is_alpha", "must contain English letters only")
- // ErrDigit is the error that returns in case of an invalid digit value.
- ErrDigit = valid.NewError("validation_is_digit", "must contain digits only")
- // ErrAlphanumeric is the error that returns in case of an invalid alphanumeric value.
- ErrAlphanumeric = valid.NewError("validation_is_alphanumeric", "must contain English letters and digits only")
- // ErrUTFLetter is the error that returns in case of an invalid utf letter value.
- ErrUTFLetter = valid.NewError("validation_is_utf_letter", "must contain unicode letter characters only")
- // ErrUTFDigit is the error that returns in case of an invalid utf digit value.
- ErrUTFDigit = valid.NewError("validation_is_utf_digit", "must contain unicode decimal digits only")
- // ErrUTFLetterNumeric is the error that returns in case of an invalid utf numeric or letter value.
- ErrUTFLetterNumeric = valid.NewError("validation_is utf_letter_numeric", "must contain unicode letters and numbers only")
- // ErrUTFNumeric is the error that returns in case of an invalid utf numeric value.
- ErrUTFNumeric = valid.NewError("validation_is_utf_numeric", "must contain unicode number characters only")
- // ErrLowerCase is the error that returns in case of an invalid lower case value.
- ErrLowerCase = valid.NewError("validation_is_lower_case", "must be in lower case")
- // ErrUpperCase is the error that returns in case of an invalid upper case value.
- ErrUpperCase = valid.NewError("validation_is_upper_case", "must be in upper case")
- // ErrHexadecimal is the error that returns in case of an invalid hexadecimal number.
- ErrHexadecimal = valid.NewError("validation_is_hexadecimal", "must be a valid hexadecimal number")
- // ErrHexColor is the error that returns in case of an invalid hexadecimal color code.
- ErrHexColor = valid.NewError("validation_is_hex_color", "must be a valid hexadecimal color code")
- // ErrRGBColor is the error that returns in case of an invalid RGB color code.
- ErrRGBColor = valid.NewError("validation_is_rgb_color", "must be a valid RGB color code")
- // ErrInt is the error that returns in case of an invalid integer value.
- ErrInt = valid.NewError("validation_is_int", "must be an integer number")
- // ErrFloat is the error that returns in case of an invalid float value.
- ErrFloat = valid.NewError("validation_is_float", "must be a floating point number")
- // ErrUUIDv3 is the error that returns in case of an invalid UUIDv3 value.
- ErrUUIDv3 = valid.NewError("validation_is_uuid_v3", "must be a valid UUID v3")
- // ErrUUIDv4 is the error that returns in case of an invalid UUIDv4 value.
- ErrUUIDv4 = valid.NewError("validation_is_uuid_v4", "must be a valid UUID v4")
- // ErrUUIDv5 is the error that returns in case of an invalid UUIDv5 value.
- ErrUUIDv5 = valid.NewError("validation_is_uuid_v5", "must be a valid UUID v5")
- // ErrUUID is the error that returns in case of an invalid UUID value.
- ErrUUID = valid.NewError("validation_is_uuid", "must be a valid UUID")
- // ErrCreditCard is the error that returns in case of an invalid credit card number.
- ErrCreditCard = valid.NewError("validation_is_credit_card", "must be a valid credit card number")
- // ErrISBN10 is the error that returns in case of an invalid ISBN-10 value.
- ErrISBN10 = valid.NewError("validation_is_isbn_10", "must be a valid ISBN-10")
- // ErrISBN13 is the error that returns in case of an invalid ISBN-13 value.
- ErrISBN13 = valid.NewError("validation_is_isbn_13", "must be a valid ISBN-13")
- // ErrISBN is the error that returns in case of an invalid ISBN value.
- ErrISBN = valid.NewError("validation_is_isbn", "must be a valid ISBN")
- // ErrJSON is the error that returns in case of an invalid JSON.
- ErrJSON = valid.NewError("validation_is_json", "must be in valid JSON format")
- // ErrASCII is the error that returns in case of an invalid ASCII.
- ErrASCII = valid.NewError("validation_is_ascii", "must contain ASCII characters only")
- // ErrPrintableASCII is the error that returns in case of an invalid printable ASCII value.
- ErrPrintableASCII = valid.NewError("validation_is_printable_ascii", "must contain printable ASCII characters only")
- // ErrMultibyte is the error that returns in case of an invalid multibyte value.
- ErrMultibyte = valid.NewError("validation_is_multibyte", "must contain multibyte characters")
- // ErrFullWidth is the error that returns in case of an invalid full-width value.
- ErrFullWidth = valid.NewError("validation_is_full_width", "must contain full-width characters")
- // ErrHalfWidth is the error that returns in case of an invalid half-width value.
- ErrHalfWidth = valid.NewError("validation_is_half_width", "must contain half-width characters")
- // ErrVariableWidth is the error that returns in case of an invalid variable width value.
- ErrVariableWidth = valid.NewError("validation_is_variable_width", "must contain both full-width and half-width characters")
- // ErrBase64 is the error that returns in case of an invalid base54 value.
- ErrBase64 = valid.NewError("validation_is_base64", "must be encoded in Base64")
- // ErrDataURI is the error that returns in case of an invalid data URI.
- ErrDataURI = valid.NewError("validation_is_data_uri", "must be a Base64-encoded data URI")
- // ErrE164 is the error that returns in case of an invalid e165.
- ErrE164 = valid.NewError("validation_is_e164_number", "must be a valid E164 number")
- // ErrCountryCode2 is the error that returns in case of an invalid two-letter country code.
- ErrCountryCode2 = valid.NewError("validation_is_country_code_2_letter", "must be a valid two-letter country code")
- // ErrCountryCode3 is the error that returns in case of an invalid three-letter country code.
- ErrCountryCode3 = valid.NewError("validation_is_country_code_3_letter", "must be a valid three-letter country code")
- // ErrCurrencyCode is the error that returns in case of an invalid currency code.
- ErrCurrencyCode = valid.NewError("validation_is_currency_code", "must be valid ISO 4217 currency code")
- // ErrDialString is the error that returns in case of an invalid string.
- ErrDialString = valid.NewError("validation_is_dial_string", "must be a valid dial string")
- // ErrMac is the error that returns in case of an invalid mac address.
- ErrMac = valid.NewError("validation_is_mac_address", "must be a valid MAC address")
- // ErrIP is the error that returns in case of an invalid IP.
- ErrIP = valid.NewError("validation_is_ip", "must be a valid IP address")
- // ErrIPv4 is the error that returns in case of an invalid IPv4.
- ErrIPv4 = valid.NewError("validation_is_ipv4", "must be a valid IPv4 address")
- // ErrIPv6 is the error that returns in case of an invalid IPv6.
- ErrIPv6 = valid.NewError("validation_is_ipv6", "must be a valid IPv6 address")
- // ErrSubdomain is the error that returns in case of an invalid subdomain.
- ErrSubdomain = valid.NewError("validation_is_sub_domain", "must be a valid subdomain")
- // ErrDomain is the error that returns in case of an invalid domain.
- ErrDomain = valid.NewError("validation_is_domain", "must be a valid domain")
- // ErrDNSName is the error that returns in case of an invalid DNS name.
- ErrDNSName = valid.NewError("validation_is_dns_name", "must be a valid DNS name")
- // ErrHost is the error that returns in case of an invalid host.
- ErrHost = valid.NewError("validation_is_host", "must be a valid IP address or DNS name")
- // ErrPort is the error that returns in case of an invalid port.
- ErrPort = valid.NewError("validation_is_port", "must be a valid port number")
- // ErrMongoID is the error that returns in case of an invalid MongoID.
- ErrMongoID = valid.NewError("validation_is_mongo_id", "must be a valid hex-encoded MongoDB ObjectId")
- // ErrLatitude is the error that returns in case of an invalid latitude.
- ErrLatitude = valid.NewError("validation_is_latitude", "must be a valid latitude")
- // ErrLongitude is the error that returns in case of an invalid longitude.
- ErrLongitude = valid.NewError("validation_is_longitude", "must be a valid longitude")
- // ErrSSN is the error that returns in case of an invalid SSN.
- ErrSSN = valid.NewError("validation_is_ssn", "must be a valid social security number")
- // ErrSemver is the error that returns in case of an invalid semver.
- ErrSemver = valid.NewError("validation_is_semver", "must be a valid semantic version")
- )
- var (
- // Email validates if a string is an email or not. It also checks if the MX record exists for the email domain.
- Email = valid.NewStringRuleWithError(govalidator.IsExistingEmail, ErrEmail)
- // EmailFormat validates if a string is an email or not. Note that it does NOT check if the MX record exists or not.
- EmailFormat = valid.NewStringRuleWithError(govalidator.IsEmail, ErrEmail)
- // EmailUser validates if a string is an user email or not.
- EmailUser = valid.NewStringRuleWithError(isUserEmail, ErrEmail)
- // URL validates if a string is a valid URL
- URL = valid.NewStringRuleWithError(govalidator.IsURL, ErrURL)
- // RequestURL validates if a string is a valid request URL
- RequestURL = valid.NewStringRuleWithError(govalidator.IsRequestURL, ErrRequestURL)
- // RequestURI validates if a string is a valid request URI
- RequestURI = valid.NewStringRuleWithError(govalidator.IsRequestURI, ErrRequestURI)
- // Alpha validates if a string contains English letters only (a-zA-Z)
- Alpha = valid.NewStringRuleWithError(govalidator.IsAlpha, ErrAlpha)
- // Digit validates if a string contains digits only (0-9)
- Digit = valid.NewStringRuleWithError(isDigit, ErrDigit)
- // Alphanumeric validates if a string contains English letters and digits only (a-zA-Z0-9)
- Alphanumeric = valid.NewStringRuleWithError(govalidator.IsAlphanumeric, ErrAlphanumeric)
- // UTFLetter validates if a string contains unicode letters only
- UTFLetter = valid.NewStringRuleWithError(govalidator.IsUTFLetter, ErrUTFLetter)
- // UTFDigit validates if a string contains unicode decimal digits only
- UTFDigit = valid.NewStringRuleWithError(govalidator.IsUTFDigit, ErrUTFDigit)
- // UTFLetterNumeric validates if a string contains unicode letters and numbers only
- UTFLetterNumeric = valid.NewStringRuleWithError(govalidator.IsUTFLetterNumeric, ErrUTFLetterNumeric)
- // UTFNumeric validates if a string contains unicode number characters (category N) only
- UTFNumeric = valid.NewStringRuleWithError(isUTFNumeric, ErrUTFNumeric)
- // LowerCase validates if a string contains lower case unicode letters only
- LowerCase = valid.NewStringRuleWithError(govalidator.IsLowerCase, ErrLowerCase)
- // UpperCase validates if a string contains upper case unicode letters only
- UpperCase = valid.NewStringRuleWithError(govalidator.IsUpperCase, ErrUpperCase)
- // Hexadecimal validates if a string is a valid hexadecimal number
- Hexadecimal = valid.NewStringRuleWithError(govalidator.IsHexadecimal, ErrHexadecimal)
- // HexColor validates if a string is a valid hexadecimal color code
- HexColor = valid.NewStringRuleWithError(govalidator.IsHexcolor, ErrHexColor)
- // RGBColor validates if a string is a valid RGB color in the form of rgb(R, G, B)
- RGBColor = valid.NewStringRuleWithError(govalidator.IsRGBcolor, ErrRGBColor)
- // Int validates if a string is a valid integer number
- Int = valid.NewStringRuleWithError(govalidator.IsInt, ErrInt)
- // Float validates if a string is a floating point number
- Float = valid.NewStringRuleWithError(govalidator.IsFloat, ErrFloat)
- // UUIDv3 validates if a string is a valid version 3 UUID
- UUIDv3 = valid.NewStringRuleWithError(govalidator.IsUUIDv3, ErrUUIDv3)
- // UUIDv4 validates if a string is a valid version 4 UUID
- UUIDv4 = valid.NewStringRuleWithError(govalidator.IsUUIDv4, ErrUUIDv4)
- // UUIDv5 validates if a string is a valid version 5 UUID
- UUIDv5 = valid.NewStringRuleWithError(govalidator.IsUUIDv5, ErrUUIDv5)
- // UUID validates if a string is a valid UUID
- UUID = valid.NewStringRuleWithError(govalidator.IsUUID, ErrUUID)
- // CreditCard validates if a string is a valid credit card number
- CreditCard = valid.NewStringRuleWithError(govalidator.IsCreditCard, ErrCreditCard)
- // ISBN10 validates if a string is an ISBN version 10
- ISBN10 = valid.NewStringRuleWithError(govalidator.IsISBN10, ErrISBN10)
- // ISBN13 validates if a string is an ISBN version 13
- ISBN13 = valid.NewStringRuleWithError(govalidator.IsISBN13, ErrISBN13)
- // ISBN validates if a string is an ISBN (either version 10 or 13)
- ISBN = valid.NewStringRuleWithError(isISBN, ErrISBN)
- // JSON validates if a string is in valid JSON format
- JSON = valid.NewStringRuleWithError(govalidator.IsJSON, ErrJSON)
- // ASCII validates if a string contains ASCII characters only
- ASCII = valid.NewStringRuleWithError(govalidator.IsASCII, ErrASCII)
- // PrintableASCII validates if a string contains printable ASCII characters only
- PrintableASCII = valid.NewStringRuleWithError(govalidator.IsPrintableASCII, ErrPrintableASCII)
- // Multibyte validates if a string contains multibyte characters
- Multibyte = valid.NewStringRuleWithError(govalidator.IsMultibyte, ErrMultibyte)
- // FullWidth validates if a string contains full-width characters
- FullWidth = valid.NewStringRuleWithError(govalidator.IsFullWidth, ErrFullWidth)
- // HalfWidth validates if a string contains half-width characters
- HalfWidth = valid.NewStringRuleWithError(govalidator.IsHalfWidth, ErrHalfWidth)
- // VariableWidth validates if a string contains both full-width and half-width characters
- VariableWidth = valid.NewStringRuleWithError(govalidator.IsVariableWidth, ErrVariableWidth)
- // Base64 validates if a string is encoded in Base64
- Base64 = valid.NewStringRuleWithError(govalidator.IsBase64, ErrBase64)
- // DataURI validates if a string is a valid base64-encoded data URI
- DataURI = valid.NewStringRuleWithError(govalidator.IsDataURI, ErrDataURI)
- // E164 validates if a string is a valid ISO3166 Alpha 2 country code
- E164 = valid.NewStringRuleWithError(isE164Number, ErrE164)
- // CountryCode2 validates if a string is a valid ISO3166 Alpha 2 country code
- CountryCode2 = valid.NewStringRuleWithError(govalidator.IsISO3166Alpha2, ErrCountryCode2)
- // CountryCode3 validates if a string is a valid ISO3166 Alpha 3 country code
- CountryCode3 = valid.NewStringRuleWithError(govalidator.IsISO3166Alpha3, ErrCountryCode3)
- // CurrencyCode validates if a string is a valid IsISO4217 currency code.
- CurrencyCode = valid.NewStringRuleWithError(govalidator.IsISO4217, ErrCurrencyCode)
- // DialString validates if a string is a valid dial string that can be passed to Dial()
- DialString = valid.NewStringRuleWithError(govalidator.IsDialString, ErrDialString)
- // MAC validates if a string is a MAC address
- MAC = valid.NewStringRuleWithError(govalidator.IsMAC, ErrMac)
- // IP validates if a string is a valid IP address (either version 4 or 6)
- IP = valid.NewStringRuleWithError(govalidator.IsIP, ErrIP)
- // IPv4 validates if a string is a valid version 4 IP address
- IPv4 = valid.NewStringRuleWithError(govalidator.IsIPv4, ErrIPv4)
- // IPv6 validates if a string is a valid version 6 IP address
- IPv6 = valid.NewStringRuleWithError(govalidator.IsIPv6, ErrIPv6)
- // Subdomain validates if a string is valid subdomain
- Subdomain = valid.NewStringRuleWithError(isSubdomain, ErrSubdomain)
- // Domain validates if a string is valid domain
- Domain = valid.NewStringRuleWithError(isDomain, ErrDomain)
- // DNSName validates if a string is valid DNS name
- DNSName = valid.NewStringRuleWithError(govalidator.IsDNSName, ErrDNSName)
- // Host validates if a string is a valid IP (both v4 and v6) or a valid DNS name
- Host = valid.NewStringRuleWithError(govalidator.IsHost, ErrHost)
- // Port validates if a string is a valid port number
- Port = valid.NewStringRuleWithError(govalidator.IsPort, ErrPort)
- // MongoID validates if a string is a valid Mongo ID
- MongoID = valid.NewStringRuleWithError(govalidator.IsMongoID, ErrMongoID)
- // Latitude validates if a string is a valid latitude
- Latitude = valid.NewStringRuleWithError(govalidator.IsLatitude, ErrLatitude)
- // Longitude validates if a string is a valid longitude
- Longitude = valid.NewStringRuleWithError(govalidator.IsLongitude, ErrLongitude)
- // SSN validates if a string is a social security number (SSN)
- SSN = valid.NewStringRuleWithError(govalidator.IsSSN, ErrSSN)
- // Semver validates if a string is a valid semantic version
- Semver = valid.NewStringRuleWithError(govalidator.IsSemver, ErrSemver)
- )
- var (
- reDigit = regexp.MustCompile("^[0-9]+$")
- // Subdomain regex source: https://stackoverflow.com/a/7933253
- reSubdomain = regexp.MustCompile(`^[A-Za-z0-9](?:[A-Za-z0-9\-]{0,61}[A-Za-z0-9])?$`)
- // Domain regex source: https://stackoverflow.com/a/7933253
- // Slightly modified: Removed 255 max length validation since Go regex does not
- // support lookarounds. More info: https://stackoverflow.com/a/38935027
- reDomain = regexp.MustCompile(`^(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-z0-9])?\.)+(?:[a-zA-Z]{1,63}| xn--[a-z0-9]{1,59})$`)
- // UserEmail regex 来源自 Russell 的代码,这里作为用户邮箱的校验逻辑
- reUserEmail = regexp.MustCompile(`\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*`)
- )
- func isISBN(value string) bool {
- return govalidator.IsISBN(value, 10) || govalidator.IsISBN(value, 13)
- }
- func isDigit(value string) bool {
- return reDigit.MatchString(value)
- }
- func isE164Number(value string) bool {
- phoneNumber, err := phonenumbers.Parse(value, "CN")
- if err != nil {
- return false
- }
- if !phonenumbers.IsValidNumber(phoneNumber) {
- return false
- }
- return true
- }
- func isSubdomain(value string) bool {
- return reSubdomain.MatchString(value)
- }
- func isDomain(value string) bool {
- if len(value) > 255 {
- return false
- }
- return reDomain.MatchString(value)
- }
- func isUTFNumeric(value string) bool {
- for _, c := range value {
- if unicode.IsNumber(c) == false {
- return false
- }
- }
- return true
- }
- func isUserEmail(value string) bool {
- return reUserEmail.MatchString(value)
- }
|