/vt-password/tags/vt-password-3.0.1/src/main/java/edu/vt/middleware/password/UsernameRule.java

http://vt-middleware.googlecode.com/ · Java · 143 lines · 66 code · 19 blank · 58 comment · 6 complexity · f834c6ea5103224c2fe1639f14c9e393 MD5 · raw file

  1. /*
  2. $Id: UsernameRule.java 1841 2011-02-25 19:05:47Z dfisher $
  3. Copyright (C) 2003-2011 Virginia Tech.
  4. All rights reserved.
  5. SEE LICENSE FOR MORE INFORMATION
  6. Author: Middleware Services
  7. Email: middleware@vt.edu
  8. Version: $Revision: 1841 $
  9. Updated: $Date: 2011-02-25 20:05:47 +0100 (Fri, 25 Feb 2011) $
  10. */
  11. package edu.vt.middleware.password;
  12. /**
  13. * <code>UsernameRule</code> contains methods for determining if a password
  14. * contains the username associated with that password.
  15. *
  16. * @author Middleware Services
  17. * @version $Revision: 1841 $ $Date: 2011-02-25 20:05:47 +0100 (Fri, 25 Feb 2011) $
  18. */
  19. public class UsernameRule implements Rule
  20. {
  21. /** whether to search for username backwards. */
  22. private boolean matchBackwards;
  23. /** Whether to ignore case when checking for usernames. */
  24. private boolean ignoreCase;
  25. /** This creates a new <code>UsernameRule</code>. */
  26. public UsernameRule() {}
  27. /**
  28. * This will create a new <code>UsernameRule</code> with the supplied
  29. * matchBackwards and ignoreCase settings.
  30. *
  31. * @param mb <code>boolean</code> whether to match backwards
  32. * @param ic <code>boolean</code> whether to ignore case
  33. */
  34. public UsernameRule(final boolean mb, final boolean ic)
  35. {
  36. this.setMatchBackwards(mb);
  37. this.setIgnoreCase(ic);
  38. }
  39. /**
  40. * This causes the verify method to search the password for the username
  41. * spelled backwards as well as forwards.
  42. *
  43. * @param b <code>boolean</code>
  44. */
  45. public void setMatchBackwards(final boolean b)
  46. {
  47. this.matchBackwards = b;
  48. }
  49. /**
  50. * Get the value of the matchBackwards property.
  51. *
  52. * @return <code>boolean</code>
  53. */
  54. public boolean isMatchBackwards()
  55. {
  56. return this.matchBackwards;
  57. }
  58. /**
  59. * This causes the verify method to ignore case when searching the for a
  60. * username.
  61. *
  62. * @param b <code>boolean</code>
  63. */
  64. public void setIgnoreCase(final boolean b)
  65. {
  66. this.ignoreCase = b;
  67. }
  68. /**
  69. * Get the value of the ignoreCase property.
  70. *
  71. * @return <code>boolean</code>
  72. */
  73. public boolean isIgnoreCase()
  74. {
  75. return ignoreCase;
  76. }
  77. /** {@inheritDoc} */
  78. public RuleResult validate(final PasswordData passwordData)
  79. {
  80. final RuleResult result = new RuleResult(true);
  81. String text = passwordData.getPassword().getText();
  82. String user = passwordData.getUsername();
  83. String reverseUser = new StringBuilder(user).reverse().toString();
  84. if (this.ignoreCase) {
  85. text = text.toLowerCase();
  86. user = user.toLowerCase();
  87. reverseUser = reverseUser.toLowerCase();
  88. }
  89. if (text.indexOf(user) != -1) {
  90. result.setValid(false);
  91. result.getDetails().add(
  92. new RuleResultDetail(
  93. String.format("Password contains the user id '%s'", user)));
  94. }
  95. if (this.matchBackwards && text.indexOf(reverseUser) != -1) {
  96. result.setValid(false);
  97. result.getDetails().add(
  98. new RuleResultDetail(
  99. String.format(
  100. "Password contains the backwards user id '%s'",
  101. reverseUser)));
  102. }
  103. return result;
  104. }
  105. /**
  106. * This returns a string representation of this object.
  107. *
  108. * @return <code>String</code>
  109. */
  110. @Override
  111. public String toString()
  112. {
  113. return
  114. String.format(
  115. "%s@%h::ignoreCase=%s,matchBackwards=%s",
  116. this.getClass().getName(),
  117. this.hashCode(),
  118. this.ignoreCase,
  119. this.matchBackwards);
  120. }
  121. }