| | 1 | | using System; |
| | 2 | | using System.Globalization; |
| | 3 | | using System.Threading.Tasks; |
| | 4 | | using Jellyfin.Database.Implementations.Entities; |
| | 5 | | using MediaBrowser.Controller.Events; |
| | 6 | | using MediaBrowser.Controller.Events.Authentication; |
| | 7 | | using MediaBrowser.Model.Activity; |
| | 8 | | using MediaBrowser.Model.Globalization; |
| | 9 | | using Microsoft.Extensions.Logging; |
| | 10 | |
|
| | 11 | | namespace Jellyfin.Server.Implementations.Events.Consumers.Security |
| | 12 | | { |
| | 13 | | /// <summary> |
| | 14 | | /// Creates an entry in the activity log when there is a failed login attempt. |
| | 15 | | /// </summary> |
| | 16 | | public class AuthenticationFailedLogger : IEventConsumer<AuthenticationRequestEventArgs> |
| | 17 | | { |
| | 18 | | private readonly ILocalizationManager _localizationManager; |
| | 19 | | private readonly IActivityManager _activityManager; |
| | 20 | |
|
| | 21 | | /// <summary> |
| | 22 | | /// Initializes a new instance of the <see cref="AuthenticationFailedLogger"/> class. |
| | 23 | | /// </summary> |
| | 24 | | /// <param name="localizationManager">The localization manager.</param> |
| | 25 | | /// <param name="activityManager">The activity manager.</param> |
| | 26 | | public AuthenticationFailedLogger(ILocalizationManager localizationManager, IActivityManager activityManager) |
| | 27 | | { |
| 0 | 28 | | _localizationManager = localizationManager; |
| 0 | 29 | | _activityManager = activityManager; |
| 0 | 30 | | } |
| | 31 | |
|
| | 32 | | /// <inheritdoc /> |
| | 33 | | public async Task OnEvent(AuthenticationRequestEventArgs eventArgs) |
| | 34 | | { |
| | 35 | | await _activityManager.CreateAsync(new ActivityLog( |
| | 36 | | string.Format( |
| | 37 | | CultureInfo.InvariantCulture, |
| | 38 | | _localizationManager.GetLocalizedString("FailedLoginAttemptWithUserName"), |
| | 39 | | eventArgs.Username), |
| | 40 | | "AuthenticationFailed", |
| | 41 | | Guid.Empty) |
| | 42 | | { |
| | 43 | | LogSeverity = LogLevel.Error, |
| | 44 | | ShortOverview = string.Format( |
| | 45 | | CultureInfo.InvariantCulture, |
| | 46 | | _localizationManager.GetLocalizedString("LabelIpAddressValue"), |
| | 47 | | eventArgs.RemoteEndPoint), |
| | 48 | | }).ConfigureAwait(false); |
| | 49 | | } |
| | 50 | | } |
| | 51 | | } |