| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Abp.Configuration;
- using Abp.Domain.Services;
- using Abp.Domain.Uow;
- using Abp.Extensions;
- using Castle.Core.Internal;
- namespace Abp.Notifications
- {
- /// <summary>
- /// Used to distribute notifications to users.
- /// </summary>
- public class DefaultNotificationDistributer : DomainService, INotificationDistributer
- {
- public IRealTimeNotifier RealTimeNotifier { get; set; }
- private readonly INotificationDefinitionManager _notificationDefinitionManager;
- private readonly INotificationStore _notificationStore;
- private readonly IUnitOfWorkManager _unitOfWorkManager;
- private readonly IGuidGenerator _guidGenerator;
- /// <summary>
- /// Initializes a new instance of the <see cref="NotificationDistributionJob"/> class.
- /// </summary>
- public DefaultNotificationDistributer(
- INotificationDefinitionManager notificationDefinitionManager,
- INotificationStore notificationStore,
- IUnitOfWorkManager unitOfWorkManager,
- IGuidGenerator guidGenerator)
- {
- _notificationDefinitionManager = notificationDefinitionManager;
- _notificationStore = notificationStore;
- _unitOfWorkManager = unitOfWorkManager;
- _guidGenerator = guidGenerator;
- RealTimeNotifier = NullRealTimeNotifier.Instance;
- }
- public async Task DistributeAsync(Guid notificationId)
- {
- var notificationInfo = await _notificationStore.GetNotificationOrNullAsync(notificationId);
- if (notificationInfo == null)
- {
- Logger.Warn("NotificationDistributionJob can not continue since could not found notification by id: " + notificationId);
- return;
- }
- var users = await GetUsers(notificationInfo);
- var userNotifications = await SaveUserNotifications(users, notificationInfo);
- await _notificationStore.DeleteNotificationAsync(notificationInfo);
- try
- {
- await RealTimeNotifier.SendNotificationsAsync(userNotifications.ToArray());
- }
- catch (Exception ex)
- {
- Logger.Warn(ex.ToString(), ex);
- }
- }
- [UnitOfWork]
- protected virtual async Task<UserIdentifier[]> GetUsers(NotificationInfo notificationInfo)
- {
- List<UserIdentifier> userIds;
- if (!notificationInfo.UserIds.IsNullOrEmpty())
- {
- //Directly get from UserIds
- userIds = notificationInfo
- .UserIds
- .Split(",")
- .Select(uidAsStr => UserIdentifier.Parse(uidAsStr))
- .Where(uid => SettingManager.GetSettingValueForUser<bool>(NotificationSettingNames.ReceiveNotifications, uid.TenantId, uid.UserId))
- .ToList();
- }
- else
- {
- //Get subscribed users
- var tenantIds = GetTenantIds(notificationInfo);
- List<NotificationSubscriptionInfo> subscriptions;
- if (tenantIds.IsNullOrEmpty() ||
- (tenantIds.Length == 1 && tenantIds[0] == NotificationInfo.AllTenantIds.To<int>()))
- {
- //Get all subscribed users of all tenants
- subscriptions = await _notificationStore.GetSubscriptionsAsync(
- notificationInfo.NotificationName,
- notificationInfo.EntityTypeName,
- notificationInfo.EntityId
- );
- }
- else
- {
- //Get all subscribed users of specified tenant(s)
- subscriptions = await _notificationStore.GetSubscriptionsAsync(
- tenantIds,
- notificationInfo.NotificationName,
- notificationInfo.EntityTypeName,
- notificationInfo.EntityId
- );
- }
- //Remove invalid subscriptions
- var invalidSubscriptions = new Dictionary<Guid, NotificationSubscriptionInfo>();
- //TODO: Group subscriptions per tenant for potential performance improvement
- foreach (var subscription in subscriptions)
- {
- using (CurrentUnitOfWork.SetTenantId(subscription.TenantId))
- {
- if (!await _notificationDefinitionManager.IsAvailableAsync(notificationInfo.NotificationName, new UserIdentifier(subscription.TenantId, subscription.UserId)) ||
- !SettingManager.GetSettingValueForUser<bool>(NotificationSettingNames.ReceiveNotifications, subscription.TenantId, subscription.UserId))
- {
- invalidSubscriptions[subscription.Id] = subscription;
- }
- }
- }
- subscriptions.RemoveAll(s => invalidSubscriptions.ContainsKey(s.Id));
- //Get user ids
- userIds = subscriptions
- .Select(s => new UserIdentifier(s.TenantId, s.UserId))
- .ToList();
- }
- if (!notificationInfo.ExcludedUserIds.IsNullOrEmpty())
- {
- //Exclude specified users.
- var excludedUserIds = notificationInfo
- .ExcludedUserIds
- .Split(",")
- .Select(uidAsStr => UserIdentifier.Parse(uidAsStr))
- .ToList();
- userIds.RemoveAll(uid => excludedUserIds.Any(euid => euid.Equals(uid)));
- }
- return userIds.ToArray();
- }
- private static int?[] GetTenantIds(NotificationInfo notificationInfo)
- {
- if (notificationInfo.TenantIds.IsNullOrEmpty())
- {
- return null;
- }
- return notificationInfo
- .TenantIds
- .Split(",")
- .Select(tenantIdAsStr => tenantIdAsStr == "null" ? (int?)null : (int?)tenantIdAsStr.To<int>())
- .ToArray();
- }
- [UnitOfWork]
- protected virtual async Task<List<UserNotification>> SaveUserNotifications(UserIdentifier[] users, NotificationInfo notificationInfo)
- {
- var userNotifications = new List<UserNotification>();
- var tenantGroups = users.GroupBy(user => user.TenantId);
- foreach (var tenantGroup in tenantGroups)
- {
- using (_unitOfWorkManager.Current.SetTenantId(tenantGroup.Key))
- {
- var tenantNotificationInfo = new TenantNotificationInfo(_guidGenerator.Create(), tenantGroup.Key, notificationInfo);
- await _notificationStore.InsertTenantNotificationAsync(tenantNotificationInfo);
- await _unitOfWorkManager.Current.SaveChangesAsync(); //To get tenantNotification.Id.
- var tenantNotification = tenantNotificationInfo.ToTenantNotification();
- foreach (var user in tenantGroup)
- {
- var userNotification = new UserNotificationInfo(_guidGenerator.Create())
- {
- TenantId = tenantGroup.Key,
- UserId = user.UserId,
- TenantNotificationId = tenantNotificationInfo.Id
- };
- await _notificationStore.InsertUserNotificationAsync(userNotification);
- userNotifications.Add(userNotification.ToUserNotification(tenantNotification));
- }
- await CurrentUnitOfWork.SaveChangesAsync(); //To get Ids of the notifications
- }
- }
- return userNotifications;
- }
- }
- }
|