af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
47 lines
1.7 KiB
C#
47 lines
1.7 KiB
C#
// <copyright file="UserUpdatedNotifier.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Server.Implementations.Events.Consumers.Users
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Jellyfin.Data.Events.Users;
|
|
using MediaBrowser.Controller.Events;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Session;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
/// <summary>
|
|
/// Notifies a user when their account has been updated.
|
|
/// </summary>
|
|
public class UserUpdatedNotifier : IEventConsumer<UserUpdatedEventArgs>
|
|
{
|
|
private readonly IUserManager _userManager;
|
|
private readonly ISessionManager _sessionManager;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="UserUpdatedNotifier"/> class.
|
|
/// </summary>
|
|
/// <param name="userManager">The user manager.</param>
|
|
/// <param name="sessionManager">The session manager.</param>
|
|
public UserUpdatedNotifier(IUserManager userManager, ISessionManager sessionManager)
|
|
{
|
|
_userManager = userManager;
|
|
_sessionManager = sessionManager;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task OnEvent(UserUpdatedEventArgs eventArgs)
|
|
{
|
|
await _sessionManager.SendMessageToUserSessions(
|
|
new List<Guid> { eventArgs.Argument.Id },
|
|
SessionMessageType.UserUpdated,
|
|
_userManager.GetUserDto(eventArgs.Argument),
|
|
CancellationToken.None).ConfigureAwait(false);
|
|
}
|
|
}
|
|
}
|