/vendor/github.com/thedevsaddam/govalidator/helper.go

https://bitbucket.org/logicielsolutions/lpm · Go · 152 lines · 96 code · 26 blank · 30 comment · 8 complexity · 0d225a8ca13447aed28e36b8401073ce MD5 · raw file

  1. package govalidator
  2. import (
  3. "encoding/json"
  4. "regexp"
  5. )
  6. // isAlpha check the input is letters (a-z,A-Z) or not
  7. func isAlpha(str string) bool {
  8. return regexAlpha.MatchString(str)
  9. }
  10. // isAlphaDash check the input is letters, number with dash and underscore
  11. func isAlphaDash(str string) bool {
  12. return regexAlphaDash.MatchString(str)
  13. }
  14. // isAlphaNumeric check the input is alpha numeric or not
  15. func isAlphaNumeric(str string) bool {
  16. return regexAlphaNumeric.MatchString(str)
  17. }
  18. // isBoolean check the input contains boolean type values
  19. // in this case: "0", "1", "true", "false", "True", "False"
  20. func isBoolean(str string) bool {
  21. bools := []string{"0", "1", "true", "false", "True", "False"}
  22. for _, b := range bools {
  23. if b == str {
  24. return true
  25. }
  26. }
  27. return false
  28. }
  29. //isCreditCard check the provided card number is a valid
  30. // Visa, MasterCard, American Express, Diners Club, Discover or JCB card
  31. func isCreditCard(card string) bool {
  32. return regexCreditCard.MatchString(card)
  33. }
  34. // isCoordinate is a valid Coordinate or not
  35. func isCoordinate(str string) bool {
  36. return regexCoordinate.MatchString(str)
  37. }
  38. // isCSSColor is a valid CSS color value (hex, rgb, rgba, hsl, hsla) etc like #909, #00aaff, rgb(255,122,122)
  39. func isCSSColor(str string) bool {
  40. return regexCSSColor.MatchString(str)
  41. }
  42. // isDate check the date string is valid or not
  43. func isDate(date string) bool {
  44. return regexDate.MatchString(date)
  45. }
  46. // isDateDDMMYY check the date string is valid or not
  47. func isDateDDMMYY(date string) bool {
  48. return regexDateDDMMYY.MatchString(date)
  49. }
  50. // isEmail check a email is valid or not
  51. func isEmail(email string) bool {
  52. return regexEmail.MatchString(email)
  53. }
  54. // isFloat check the input string is a float or not
  55. func isFloat(str string) bool {
  56. return regexFloat.MatchString(str)
  57. }
  58. // isIn check if the niddle exist in the haystack
  59. func isIn(haystack []string, niddle string) bool {
  60. for _, h := range haystack {
  61. if h == niddle {
  62. return true
  63. }
  64. }
  65. return false
  66. }
  67. // isJSON check wheather the input string is a valid json or not
  68. func isJSON(str string) bool {
  69. var data interface{}
  70. if err := json.Unmarshal([]byte(str), &data); err != nil {
  71. return false
  72. }
  73. return true
  74. }
  75. // isNumeric check the provided input string is numeric or not
  76. func isNumeric(str string) bool {
  77. return regexNumeric.MatchString(str)
  78. }
  79. // isLatitude check the provided input string is a valid latitude or not
  80. func isLatitude(str string) bool {
  81. return regexLatitude.MatchString(str)
  82. }
  83. // isLongitude check the provided input string is a valid longitude or not
  84. func isLongitude(str string) bool {
  85. return regexLongitude.MatchString(str)
  86. }
  87. // isIP check the provided input string is a valid IP address or not
  88. func isIP(str string) bool {
  89. return regexIP.MatchString(str)
  90. }
  91. // isIPV4 check the provided input string is a valid IP address version 4 or not
  92. // Ref: https://en.wikipedia.org/wiki/IPv4
  93. func isIPV4(str string) bool {
  94. return regexIPV4.MatchString(str)
  95. }
  96. // isIPV6 check the provided input string is a valid IP address version 6 or not
  97. // Ref: https://en.wikipedia.org/wiki/IPv6
  98. func isIPV6(str string) bool {
  99. return regexIPV6.MatchString(str)
  100. }
  101. // isMatchedRegex match the regular expression string provided in first argument
  102. // with second argument which is also a string
  103. func isMatchedRegex(rxStr, str string) bool {
  104. rx := regexp.MustCompile(rxStr)
  105. return rx.MatchString(str)
  106. }
  107. // isURL check a URL is valid or not
  108. func isURL(url string) bool {
  109. return regexURL.MatchString(url)
  110. }
  111. // isUUID check the provided string is valid UUID or not
  112. func isUUID(str string) bool {
  113. return regexUUID.MatchString(str)
  114. }
  115. // isUUID3 check the provided string is valid UUID version 3 or not
  116. func isUUID3(str string) bool {
  117. return regexUUID3.MatchString(str)
  118. }
  119. // isUUID4 check the provided string is valid UUID version 4 or not
  120. func isUUID4(str string) bool {
  121. return regexUUID4.MatchString(str)
  122. }
  123. // isUUID5 check the provided string is valid UUID version 5 or not
  124. func isUUID5(str string) bool {
  125. return regexUUID5.MatchString(str)
  126. }