/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

  1. /*
  2. $Id: AbstractDictionaryRule.java 1724 2010-10-29 17:47:59Z dfisher $
  3. Copyright (C) 2003-2010 Virginia Tech.
  4. All rights reserved.
  5. SEE LICENSE FOR MORE INFORMATION
  6. Author: Middleware Services
  7. Email: middleware@vt.edu
  8. Version: $Revision: 1724 $
  9. Updated: $Date: 2010-10-29 19:47:59 +0200 (Fri, 29 Oct 2010) $
  10. */
  11. package edu.vt.middleware.password;
  12. import edu.vt.middleware.dictionary.Dictionary;
  13. /**
  14. * <code>AbstractPasswordDictionaryRule</code> provides common implementation
  15. * for password dictionary rules.
  16. *
  17. * @author Middleware Services
  18. * @version $Revision: 1724 $ $Date: 2010-10-29 19:47:59 +0200 (Fri, 29 Oct 2010) $
  19. */
  20. public abstract class AbstractDictionaryRule implements Rule
  21. {
  22. /** dictionary of words. */
  23. protected Dictionary dictionary;
  24. /** whether to search for dictionary words backwards. */
  25. protected boolean matchBackwards;
  26. /**
  27. * This will set the <code>Dictionary</code> used to search for passwords.
  28. *
  29. * @param dict <code>Dictionary</code> to use for searching
  30. */
  31. public void setDictionary(final Dictionary dict)
  32. {
  33. this.dictionary = dict;
  34. }
  35. /**
  36. * This will return the <code>Dictionary</code> used to search for passwords.
  37. *
  38. * @return <code>Dictionary</code>
  39. */
  40. public Dictionary getDictionary()
  41. {
  42. return this.dictionary;
  43. }
  44. /**
  45. * This causes the verify method to search the password for dictionary words
  46. * spelled backwards as well as forwards.
  47. *
  48. * @param b <code>boolean</code>
  49. */
  50. public void setMatchBackwards(final boolean b)
  51. {
  52. this.matchBackwards = b;
  53. }
  54. /**
  55. * Return true if the verify method will search the password for dictionary
  56. * words spelled backwards as well as forwards.
  57. *
  58. * @return <code>boolean</code>
  59. */
  60. public boolean isMatchBackwards()
  61. {
  62. return this.matchBackwards;
  63. }
  64. /**
  65. * See {@link Rule#validate(PasswordData)}.
  66. *
  67. * @param passwordData <code>PasswordData</code> to verify (not null).
  68. *
  69. * @return <code>DictionaryRuleResult</code> - details on password
  70. * verification
  71. *
  72. * @throws NullPointerException if the password data is null.
  73. */
  74. public DictionaryRuleResult validate(final PasswordData passwordData)
  75. {
  76. final DictionaryRuleResult result = new DictionaryRuleResult(true);
  77. String text = passwordData.getPassword().getText();
  78. String matchingWord = doWordSearch(text);
  79. if (matchingWord != null) {
  80. result.setValid(false);
  81. result.getDetails().add(
  82. new RuleResultDetail(
  83. String.format(
  84. "Password contains the dictionary word '%s'",
  85. matchingWord)));
  86. result.setMatchingWord(matchingWord);
  87. }
  88. if (this.matchBackwards) {
  89. text = new StringBuilder(passwordData.getPassword().getText()).reverse()
  90. .toString();
  91. matchingWord = doWordSearch(text);
  92. if (matchingWord != null) {
  93. result.setValid(false);
  94. result.getDetails().add(
  95. new RuleResultDetail(
  96. String.format(
  97. "Password contains the reversed dictionary word '%s'",
  98. matchingWord)));
  99. result.setMatchingWord(matchingWord);
  100. }
  101. }
  102. return result;
  103. }
  104. /**
  105. * Searches the dictionary with the supplied text.
  106. *
  107. * @param text to search dictionary with
  108. *
  109. * @return <code>String</code> matching word
  110. */
  111. protected abstract String doWordSearch(final String text);
  112. /**
  113. * This returns a string representation of this object.
  114. *
  115. * @return <code>String</code>
  116. */
  117. @Override
  118. public String toString()
  119. {
  120. return
  121. String.format(
  122. "%s@%h::dictionary=%s,matchBackwards=%s",
  123. this.getClass().getName(),
  124. this.hashCode(),
  125. this.dictionary,
  126. this.matchBackwards);
  127. }
  128. }