using System.Globalization;
using System.Threading.Tasks;
using Jellyfin.Database.Implementations.Entities;
using MediaBrowser.Controller.Events;
using MediaBrowser.Controller.Events.Authentication;
using MediaBrowser.Model.Activity;
using MediaBrowser.Model.Globalization;
namespace Jellyfin.Server.Implementations.Events.Consumers.Security
{
    /// 
    /// Creates an entry in the activity log when there is a successful login attempt.
    /// 
    public class AuthenticationSucceededLogger : IEventConsumer
    {
        private readonly ILocalizationManager _localizationManager;
        private readonly IActivityManager _activityManager;
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The localization manager.
        /// The activity manager.
        public AuthenticationSucceededLogger(ILocalizationManager localizationManager, IActivityManager activityManager)
        {
            _localizationManager = localizationManager;
            _activityManager = activityManager;
        }
        /// 
        public async Task OnEvent(AuthenticationResultEventArgs eventArgs)
        {
            await _activityManager.CreateAsync(new ActivityLog(
                string.Format(
                    CultureInfo.InvariantCulture,
                    _localizationManager.GetLocalizedString("AuthenticationSucceededWithUserName"),
                    eventArgs.User.Name),
                "AuthenticationSucceeded",
                eventArgs.User.Id)
            {
                ShortOverview = string.Format(
                    CultureInfo.InvariantCulture,
                    _localizationManager.GetLocalizedString("LabelIpAddressValue"),
                    eventArgs.SessionInfo?.RemoteEndPoint),
            }).ConfigureAwait(false);
        }
    }
}