/*
* Created on Apr 27, 2005
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.moonlight.www.util;
import org.apache.oro.text.perl.Perl5Util;
/**
* @author eric
*
* TODO To change the template for this generated type comment go to Window -
* Preferences - Java - Code Style - Code Templates
*/
public class EmailValidator {
private static final String SPECIAL_CHARS = "\\(\\)<>@,;:\\\\\\\"\\.\\[\\]";
private static final String VALID_CHARS = "[^\\s" + SPECIAL_CHARS + "]";
private static final String QUOTED_USER = "(\"[^\"]*\")";
private static final String ATOM = VALID_CHARS + '+';
private static final String WORD = "(" + ATOM + "|" + QUOTED_USER + ")";
// Each pattern must be surrounded by /
private static final String LEGAL_ASCII_PATTERN = "/^[\\000-\\177]+$/";
private static final String EMAIL_PATTERN = "/^(.+)@(.+)$/";
private static final String IP_DOMAIN_PATTERN = "/^\\[(\\d{1,3})[.](\\d{1,3})[.](\\d{1,3})[.](\\d{1,3})\\]$/";
private static final String USER_PATTERN = "/^\\s*" + WORD + "(\\." + WORD
+ ")*\\s*$/";
private static final String DOMAIN_PATTERN = "/^\\s*" + ATOM + "(\\."
+ ATOM + ")*\\s*$/";
private static final String ATOM_PATTERN = "/(" + ATOM + ")/";
private static final EmailValidator instance = new EmailValidator();
public static EmailValidator getInstance() {
return instance;
}
protected EmailValidator() {
super();
}
/**
* <p>
* Checks if a field has a valid e-mail address.
* </p>
*
* @param email
* The value validation is being performed on. A
* <code>null</code> value is considered invalid.
*/
public boolean isValid(String email) {
if (email == null) {
return false;
}
Perl5Util matchAsciiPat = new Perl5Util();
if (!matchAsciiPat.match(LEGAL_ASCII_PATTERN, email)) {
return false;
}
email = stripComments(email);
// Check the whole email address structure
Perl5Util emailMatcher = new Perl5Util();
if (!emailMatcher.match(EMAIL_PATTERN, email)) {
return false;
}
if (email.endsWith(".")) {
return false;
}
if (!isValidUser(emailMatcher.group(1))) {
return false;
}
if (!isValidDomain(emailMatcher.group(2))) {
return false;
}
return true;
}
/**
* Returns true if the domain component of an email address is valid.
*
* @param domain
* being validatied.
*/
protected boolean isValidDomain(String domain) {
boolean symbolic = false;
Perl5Util ipAddressMatcher = new Perl5Util();
if (ipAddressMatcher.match(IP_DOMAIN_PATTERN, domain)) {
if (!isValidIpAddress(ipAddressMatcher)) {
return false;
} else {
return true;
}
} else {
// Domain is symbolic name
Perl5Util domainMatcher = new Perl5Util();
symbolic = domainMatcher.match(DOMAIN_PATTERN, domain);
}
if (symbolic) {
if (!isValidSymbolicDomain(domain)) {
return false;
}
} else {
return false;
}
return true;
}
/**
* Returns true if the user component of an email address is valid.
*
* @param user
* being validated
*/
protected boolean isValidUser(String user) {
Perl5Util userMatcher = new Perl5Util();
return userMatcher.match(USER_PATTERN, user);
}
/**
* Validates an IP address. Returns true if valid.
*
* @param ipAddressMatcher
* Pattren matcher
*/
protected boolean isValidIpAddress(Perl5Util ipAddressMatcher) {
for (int i = 1; i <= 4; i++) {
String ipSegment = ipAddressMatcher.group(i);
if (ipSegment == null || ipSegment.length() <= 0) {
return false;
}
int iIpSegment = 0;
try {
iIpSegment = Integer.parseInt(ipSegment);
} catch (NumberFormatException e) {
return false;
}
if (iIpSegment > 255) {
return false;
}
}
return true;
}
/**
* Validates a symbolic domain name. Returns true if it's valid.
*
* @param domain
* symbolic domain name
*/
protected boolean isValidSymbolicDomain(String domain) {
String[] domainSegment = new String[10];
boolean match = true;
int i = 0;
Perl5Util atomMatcher = new Perl5Util();
while (match) {
match = atomMatcher.match(ATOM_PATTERN, domain);
if (match) {
domainSegment[i] = atomMatcher.group(1);
int l = domainSegment[i].length() + 1;
domain = (l >= domain.length()) ? "" : domain.substring(l);
i++;
}
}
int len = i;
if (domainSegment[len - 1].length() < 2
|| domainSegment[len - 1].length() > 4) {
return false;
}
// Make sure there's a host name preceding the domain.
if (len < 2) {
return false;
}
return true;
}
/**
* Recursively remove comments, and replace with a single space. The simpler
* regexps in the Email Addressing FAQ are imperfect - they will miss
* escaped chars in atoms, for example. Derived From Mail::RFC822::Address
*/
protected String stripComments(String emailStr) {
String input = emailStr;
String result = emailStr;
String commentPat = "s/^((?:[^\"\\\\]|\\\\.)*(?:\"(?:[^\"\\\\]|\\\\.)*\"(?:[^\"\\\\]|\111111\\\\.)*)*)\\((?:[^()\\\\]|\\\\.)*\\)/$1 /osx";
Perl5Util commentMatcher = new Perl5Util();
result = commentMatcher.substitute(commentPat, input);
// This really needs to be =~ or Perl5Matcher comparison
while (!result.equals(input)) {
input = result;
result = commentMatcher.substitute(commentPat, input);
}
return result;
}
public static void main(String[] args)
{
EmailValidator email = new EmailValidator();
if(email.isValid("a@a.cn"))
{
System.out.println("the email addr is good");
}
else
{
System.out.println("the email addr is not good");
}
}
}