mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
51 lines
1.6 KiB
C#
51 lines
1.6 KiB
C#
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Data;
|
|
using BTCPayServer.Events;
|
|
using BTCPayServer.Services.Notifications.Blobs;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace BTCPayServer.Services.Notifications
|
|
{
|
|
public class NotificationSender
|
|
{
|
|
private readonly ApplicationDbContextFactory _contextFactory;
|
|
private readonly UserManager<ApplicationUser> _userManager;
|
|
private readonly EventAggregator _eventAggregator;
|
|
|
|
public NotificationSender(ApplicationDbContextFactory contextFactory, UserManager<ApplicationUser> userManager, EventAggregator eventAggregator)
|
|
{
|
|
_contextFactory = contextFactory;
|
|
_userManager = userManager;
|
|
_eventAggregator = eventAggregator;
|
|
}
|
|
|
|
internal async Task NoticeNewVersionAsync(string version)
|
|
{
|
|
var admins = await _userManager.GetUsersInRoleAsync(Roles.ServerAdmin);
|
|
var adminUids = admins.Select(a => a.Id).ToArray();
|
|
|
|
var notif = new NewVersionNotification
|
|
{
|
|
Version = version
|
|
};
|
|
using (var db = _contextFactory.CreateContext())
|
|
{
|
|
foreach (var uid in adminUids)
|
|
{
|
|
var data = notif.ToData(uid);
|
|
db.Notifications.Add(data);
|
|
}
|
|
|
|
await db.SaveChangesAsync();
|
|
}
|
|
|
|
// propagate notification
|
|
_eventAggregator.Publish(new NotificationEvent
|
|
{
|
|
ApplicationUserIds = adminUids,
|
|
Notification = notif
|
|
});
|
|
}
|
|
}
|
|
}
|