/vt-password/tags/vt-password-3.0/src/main/java/edu/vt/middleware/password/AbstractDictionaryRule.java
http://vt-middleware.googlecode.com/ · Java · 149 lines · 65 code · 18 blank · 66 comment · 5 complexity · a42e84988bb3d93cb3cc0551b1d885a9 MD5 · raw file
- /*
- $Id: AbstractDictionaryRule.java 1724 2010-10-29 17:47:59Z dfisher $
- Copyright (C) 2003-2010 Virginia Tech.
- All rights reserved.
- SEE LICENSE FOR MORE INFORMATION
- Author: Middleware Services
- Email: middleware@vt.edu
- Version: $Revision: 1724 $
- Updated: $Date: 2010-10-29 19:47:59 +0200 (Fri, 29 Oct 2010) $
- */
- package edu.vt.middleware.password;
- import edu.vt.middleware.dictionary.Dictionary;
- /**
- * <code>AbstractPasswordDictionaryRule</code> provides common implementation
- * for password dictionary rules.
- *
- * @author Middleware Services
- * @version $Revision: 1724 $ $Date: 2010-10-29 19:47:59 +0200 (Fri, 29 Oct 2010) $
- */
- public abstract class AbstractDictionaryRule implements Rule
- {
- /** dictionary of words. */
- protected Dictionary dictionary;
- /** whether to search for dictionary words backwards. */
- protected boolean matchBackwards;
- /**
- * This will set the <code>Dictionary</code> used to search for passwords.
- *
- * @param dict <code>Dictionary</code> to use for searching
- */
- public void setDictionary(final Dictionary dict)
- {
- this.dictionary = dict;
- }
- /**
- * This will return the <code>Dictionary</code> used to search for passwords.
- *
- * @return <code>Dictionary</code>
- */
- public Dictionary getDictionary()
- {
- return this.dictionary;
- }
- /**
- * This causes the verify method to search the password for dictionary words
- * spelled backwards as well as forwards.
- *
- * @param b <code>boolean</code>
- */
- public void setMatchBackwards(final boolean b)
- {
- this.matchBackwards = b;
- }
- /**
- * Return true if the verify method will search the password for dictionary
- * words spelled backwards as well as forwards.
- *
- * @return <code>boolean</code>
- */
- public boolean isMatchBackwards()
- {
- return this.matchBackwards;
- }
- /**
- * See {@link Rule#validate(PasswordData)}.
- *
- * @param passwordData <code>PasswordData</code> to verify (not null).
- *
- * @return <code>DictionaryRuleResult</code> - details on password
- * verification
- *
- * @throws NullPointerException if the password data is null.
- */
- public DictionaryRuleResult validate(final PasswordData passwordData)
- {
- final DictionaryRuleResult result = new DictionaryRuleResult(true);
- String text = passwordData.getPassword().getText();
- String matchingWord = doWordSearch(text);
- if (matchingWord != null) {
- result.setValid(false);
- result.getDetails().add(
- new RuleResultDetail(
- String.format(
- "Password contains the dictionary word '%s'",
- matchingWord)));
- result.setMatchingWord(matchingWord);
- }
- if (this.matchBackwards) {
- text = new StringBuilder(passwordData.getPassword().getText()).reverse()
- .toString();
- matchingWord = doWordSearch(text);
- if (matchingWord != null) {
- result.setValid(false);
- result.getDetails().add(
- new RuleResultDetail(
- String.format(
- "Password contains the reversed dictionary word '%s'",
- matchingWord)));
- result.setMatchingWord(matchingWord);
- }
- }
- return result;
- }
- /**
- * Searches the dictionary with the supplied text.
- *
- * @param text to search dictionary with
- *
- * @return <code>String</code> matching word
- */
- protected abstract String doWordSearch(final String text);
- /**
- * This returns a string representation of this object.
- *
- * @return <code>String</code>
- */
- @Override
- public String toString()
- {
- return
- String.format(
- "%s@%h::dictionary=%s,matchBackwards=%s",
- this.getClass().getName(),
- this.hashCode(),
- this.dictionary,
- this.matchBackwards);
- }
- }