/info.bliki.wiki/bliki-core/src/main/java/info/bliki/commons/validator/routines/EmailValidator.java

http://gwtwiki.googlecode.com/ · Java · 150 lines · 61 code · 19 blank · 70 comment · 8 complexity · eb5f9690521e00beef063c0c78f0cdb7 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package info.bliki.commons.validator.routines;
  18. import java.io.Serializable;
  19. import java.util.regex.Matcher;
  20. import java.util.regex.Pattern;
  21. /**
  22. * <p>Perform email validations.</p>
  23. * <p>
  24. * This class is a Singleton; you can retrieve the instance via the getInstance() method.
  25. * </p>
  26. * <p>
  27. * Based on a script by <a href="mailto:stamhankar@hotmail.com">Sandeep V. Tamhankar</a>
  28. * http://javascript.internet.com
  29. * </p>
  30. * <p>
  31. * This implementation is not guaranteed to catch all possible errors in an email address.
  32. * For example, an address like nobody@noplace.somedog will pass validator, even though there
  33. * is no TLD "somedog"
  34. * </p>.
  35. *
  36. * @version $Revision$ $Date$
  37. * @since Validator 1.4
  38. */
  39. public class EmailValidator implements Serializable {
  40. /**
  41. * Auto-generated serial version UID.
  42. */
  43. private static final long serialVersionUID = 3799186064442277754L;
  44. private static final String SPECIAL_CHARS = "\\p{Cntrl}\\(\\)<>@,;:'\\\\\\\"\\.\\[\\]";
  45. private static final String VALID_CHARS = "[^\\s" + SPECIAL_CHARS + "]";
  46. private static final String QUOTED_USER = "(\"[^\"]*\")";
  47. private static final String WORD = "((" + VALID_CHARS + "|')+|" + QUOTED_USER + ")";
  48. private static final String LEGAL_ASCII_REGEX = "^\\p{ASCII}+$";
  49. private static final String EMAIL_REGEX = "^\\s*?(.+)@(.+?)\\s*$";
  50. private static final String IP_DOMAIN_REGEX = "^\\[(.*)\\]$";
  51. private static final String USER_REGEX = "^\\s*" + WORD + "(\\." + WORD + ")*$";
  52. private static final Pattern MATCH_ASCII_PATTERN = Pattern.compile(LEGAL_ASCII_REGEX);
  53. private static final Pattern EMAIL_PATTERN = Pattern.compile(EMAIL_REGEX);
  54. private static final Pattern IP_DOMAIN_PATTERN = Pattern.compile(IP_DOMAIN_REGEX);
  55. private static final Pattern USER_PATTERN = Pattern.compile(USER_REGEX);
  56. /**
  57. * Singleton instance of this class.
  58. */
  59. private static final EmailValidator EMAIL_VALIDATOR = new EmailValidator();
  60. /**
  61. * Returns the Singleton instance of this validator.
  62. *
  63. * @return singleton instance of this validator.
  64. */
  65. public static EmailValidator getInstance() {
  66. return EMAIL_VALIDATOR;
  67. }
  68. /**
  69. * Protected constructor for subclasses to use.
  70. */
  71. protected EmailValidator() {
  72. super();
  73. }
  74. /**
  75. * <p>Checks if a field has a valid e-mail address.</p>
  76. *
  77. * @param email The value validation is being performed on. A <code>null</code>
  78. * value is considered invalid.
  79. * @return true if the email address is valid.
  80. */
  81. public boolean isValid(String email) {
  82. if (email == null) {
  83. return false;
  84. }
  85. Matcher asciiMatcher = MATCH_ASCII_PATTERN.matcher(email);
  86. if (!asciiMatcher.matches()) {
  87. return false;
  88. }
  89. // Check the whole email address structure
  90. Matcher emailMatcher = EMAIL_PATTERN.matcher(email);
  91. if (!emailMatcher.matches()) {
  92. return false;
  93. }
  94. if (email.endsWith(".")) {
  95. return false;
  96. }
  97. if (!isValidUser(emailMatcher.group(1))) {
  98. return false;
  99. }
  100. return isValidDomain(emailMatcher.group(2));
  101. }
  102. /**
  103. * Returns true if the domain component of an email address is valid.
  104. *
  105. * @param domain being validated.
  106. * @return true if the email address's domain is valid.
  107. */
  108. protected boolean isValidDomain(String domain) {
  109. // see if domain is an IP address in brackets
  110. Matcher ipDomainMatcher = IP_DOMAIN_PATTERN.matcher(domain);
  111. if (ipDomainMatcher.matches()) {
  112. InetAddressValidator inetAddressValidator =
  113. InetAddressValidator.getInstance();
  114. return inetAddressValidator.isValid(ipDomainMatcher.group(1));
  115. } else {
  116. // Domain is symbolic name
  117. DomainValidator domainValidator =
  118. DomainValidator.getInstance();
  119. return domainValidator.isValid(domain);
  120. }
  121. }
  122. /**
  123. * Returns true if the user component of an email address is valid.
  124. *
  125. * @param user being validated
  126. * @return true if the user name is valid.
  127. */
  128. protected boolean isValidUser(String user) {
  129. return USER_PATTERN.matcher(user).matches();
  130. }
  131. }