LoginCounter.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* Copyright (C) 2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Text;
  10. namespace SMBLibrary.Authentication
  11. {
  12. public class LoginCounter
  13. {
  14. public class LoginEntry
  15. {
  16. public DateTime LoginWindowStartDT;
  17. public int NumberOfAttempts;
  18. }
  19. private int m_maxLoginAttemptsInWindow;
  20. private TimeSpan m_loginWindowDuration;
  21. private Dictionary<string, LoginEntry> m_loginEntries = new Dictionary<string, LoginEntry>();
  22. public LoginCounter(int maxLoginAttemptsInWindow, TimeSpan loginWindowDuration)
  23. {
  24. m_maxLoginAttemptsInWindow = maxLoginAttemptsInWindow;
  25. m_loginWindowDuration = loginWindowDuration;
  26. }
  27. public bool HasRemainingLoginAttempts(string userID)
  28. {
  29. return HasRemainingLoginAttempts(userID, false);
  30. }
  31. public bool HasRemainingLoginAttempts(string userID, bool incrementCount)
  32. {
  33. lock (m_loginEntries)
  34. {
  35. LoginEntry entry;
  36. if (m_loginEntries.TryGetValue(userID, out entry))
  37. {
  38. if (entry.LoginWindowStartDT.Add(m_loginWindowDuration) >= DateTime.Now)
  39. {
  40. // Existing login Window
  41. if (incrementCount)
  42. {
  43. entry.NumberOfAttempts++;
  44. }
  45. }
  46. else
  47. {
  48. // New login Window
  49. if (!incrementCount)
  50. {
  51. return true;
  52. }
  53. entry.LoginWindowStartDT = DateTime.Now;
  54. entry.NumberOfAttempts = 1;
  55. }
  56. }
  57. else
  58. {
  59. if (!incrementCount)
  60. {
  61. return true;
  62. }
  63. entry = new LoginEntry();
  64. entry.LoginWindowStartDT = DateTime.Now;
  65. entry.NumberOfAttempts = 1;
  66. m_loginEntries.Add(userID, entry);
  67. }
  68. return (entry.NumberOfAttempts < m_maxLoginAttemptsInWindow);
  69. }
  70. }
  71. }
  72. }