forked from ddrilling/AsbCloudServer
fixed and tested
This commit is contained in:
parent
635e4cd7fc
commit
2759a852ca
@ -8,7 +8,7 @@ public class NotificationRequest : RequestBase
|
||||
/// <summary>
|
||||
/// Получение отправленных/не отправленных уведомлений
|
||||
/// </summary>
|
||||
public bool IsSent { get; set; } = false;
|
||||
public bool? IsSent { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// Id типа доставки уведомления
|
||||
|
@ -1,50 +0,0 @@
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AsbCloudApp.Requests;
|
||||
|
||||
namespace AsbCloudApp.Services.Notifications;
|
||||
|
||||
/// <summary>
|
||||
/// Интерфейс для работы с уведомлениями
|
||||
/// </summary>
|
||||
public interface INotificationService
|
||||
{
|
||||
/// <summary>
|
||||
/// Отправка нового уведомления
|
||||
/// </summary>
|
||||
/// <param name="idUser"></param>
|
||||
/// <param name="idNotificationCategory"></param>
|
||||
/// <param name="title"></param>
|
||||
/// <param name="message"></param>
|
||||
/// <param name="idTransportType"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
Task NotifyAsync(int idUser,
|
||||
int idNotificationCategory,
|
||||
string title,
|
||||
string message,
|
||||
int idTransportType,
|
||||
CancellationToken cancellationToken);
|
||||
|
||||
/// <summary>
|
||||
/// Обновление уведомления
|
||||
/// </summary>
|
||||
/// <param name="idNotification"></param>
|
||||
/// <param name="isRead"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
Task UpdateNotificationAsync(int idNotification,
|
||||
bool isRead,
|
||||
CancellationToken cancellationToken);
|
||||
|
||||
/// <summary>
|
||||
/// Отправка уведомлений, которые не были отправлены
|
||||
/// </summary>
|
||||
/// <param name="idUser"></param>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
Task ResendNotificationAsync(int idUser,
|
||||
NotificationRequest request,
|
||||
CancellationToken cancellationToken);
|
||||
}
|
143
AsbCloudApp/Services/Notifications/NotificationService.cs
Normal file
143
AsbCloudApp/Services/Notifications/NotificationService.cs
Normal file
@ -0,0 +1,143 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Exceptions;
|
||||
using AsbCloudApp.Repositories;
|
||||
using AsbCloudApp.Requests;
|
||||
|
||||
namespace AsbCloudApp.Services.Notifications;
|
||||
|
||||
/// <summary>
|
||||
/// Сервис для работы с уведомлениями
|
||||
/// </summary>
|
||||
public class NotificationService
|
||||
{
|
||||
private readonly ICrudRepository<NotificationCategoryDto> notificationCategoryRepository;
|
||||
private readonly INotificationRepository notificationRepository;
|
||||
private readonly IEnumerable<INotificationTransportService> notificationTransportServices;
|
||||
|
||||
/// <summary>
|
||||
/// Сервис для работы с уведомлениями
|
||||
/// </summary>
|
||||
/// <param name="notificationCategoryRepository"></param>
|
||||
/// <param name="notificationRepository"></param>
|
||||
/// <param name="notificationTransportServices"></param>
|
||||
public NotificationService(ICrudRepository<NotificationCategoryDto> notificationCategoryRepository,
|
||||
INotificationRepository notificationRepository,
|
||||
IEnumerable<INotificationTransportService> notificationTransportServices)
|
||||
{
|
||||
this.notificationCategoryRepository = notificationCategoryRepository;
|
||||
this.notificationRepository = notificationRepository;
|
||||
this.notificationTransportServices = notificationTransportServices;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Отправка нового уведомления
|
||||
/// </summary>
|
||||
/// <param name="idUser"></param>
|
||||
/// <param name="idNotificationCategory"></param>
|
||||
/// <param name="title"></param>
|
||||
/// <param name="message"></param>
|
||||
/// <param name="idTransportType"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public async Task NotifyAsync(int idUser,
|
||||
int idNotificationCategory,
|
||||
string title,
|
||||
string message,
|
||||
int idTransportType,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
var notificationCategory = await notificationCategoryRepository
|
||||
.GetOrDefaultAsync(idNotificationCategory, cancellationToken)
|
||||
?? throw new ArgumentInvalidException("Категория уведомления не найдена", nameof(idNotificationCategory));
|
||||
|
||||
var notification = new NotificationDto()
|
||||
{
|
||||
IdUser = idUser,
|
||||
IdNotificationCategory = idNotificationCategory,
|
||||
Title = title,
|
||||
Message = message,
|
||||
IdTransportType = idTransportType
|
||||
};
|
||||
|
||||
notification.Id = await notificationRepository.InsertAsync(notification,
|
||||
cancellationToken);
|
||||
|
||||
notification.NotificationCategory = notificationCategory;
|
||||
|
||||
var notificationTransportService = GetNotificationTransportService(idTransportType);
|
||||
|
||||
await notificationTransportService.SendAsync(notification, cancellationToken);
|
||||
|
||||
await notificationRepository.UpdateAsync(notification,
|
||||
cancellationToken);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Обновление уведомления
|
||||
/// </summary>
|
||||
/// <param name="idNotification"></param>
|
||||
/// <param name="isRead"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public async Task UpdateNotificationAsync(int idNotification,
|
||||
bool isRead,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
var notification = await notificationRepository.GetOrDefaultAsync(idNotification,
|
||||
cancellationToken)
|
||||
?? throw new ArgumentInvalidException("Уведомление не найдено", nameof(idNotification));
|
||||
|
||||
if (isRead)
|
||||
{
|
||||
if (notification.SentDate == null)
|
||||
throw new ArgumentInvalidException("Уведомление не может быть прочитано", nameof(isRead));
|
||||
|
||||
notification.SentDate = DateTime.UtcNow;
|
||||
}
|
||||
|
||||
await notificationRepository.UpdateAsync(notification,
|
||||
cancellationToken);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Отправка уведомлений, которые не были отправлены
|
||||
/// </summary>
|
||||
/// <param name="idUser"></param>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
/// <returns></returns>
|
||||
public async Task ResendNotificationAsync(int idUser,
|
||||
NotificationRequest request,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
if (!request.IdTransportType.HasValue)
|
||||
throw new ArgumentInvalidException("Id типа доставки уведомления должен иметь значение",
|
||||
nameof(request.IdTransportType));
|
||||
|
||||
var result = await notificationRepository.GetNotificationsAsync(idUser,
|
||||
request,
|
||||
cancellationToken);
|
||||
|
||||
var notificationTransportService = GetNotificationTransportService(request.IdTransportType.Value);
|
||||
|
||||
await notificationTransportService.SendRangeAsync(result.Items,
|
||||
cancellationToken);
|
||||
|
||||
await notificationRepository.UpdateRangeAsync(result.Items,
|
||||
cancellationToken);
|
||||
}
|
||||
|
||||
private INotificationTransportService GetNotificationTransportService(int idTransportType)
|
||||
{
|
||||
var notificationTransportService = notificationTransportServices
|
||||
.FirstOrDefault(s => s.IdTransportType == idTransportType)
|
||||
?? throw new ArgumentInvalidException("Доставщик уведомлений не найден", nameof(idTransportType));
|
||||
|
||||
return notificationTransportService;
|
||||
}
|
||||
}
|
@ -24,7 +24,6 @@ using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using System;
|
||||
using AsbCloudApp.Services.Notifications;
|
||||
using AsbCloudInfrastructure.Services.Notifications;
|
||||
|
||||
namespace AsbCloudInfrastructure
|
||||
{
|
||||
@ -150,7 +149,7 @@ namespace AsbCloudInfrastructure
|
||||
|
||||
services.AddTransient<IGtrRepository, GtrWitsRepository>();
|
||||
|
||||
services.AddTransient<INotificationService, NotificationService>();
|
||||
services.AddTransient<NotificationService>();
|
||||
services.AddTransient<INotificationRepository, NotificationRepository>();
|
||||
services.AddTransient<ICrudRepository<NotificationCategoryDto>, CrudCacheRepositoryBase<NotificationCategoryDto,
|
||||
NotificationCategory>>();
|
||||
|
@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
@ -46,7 +47,9 @@ public class NotificationRepository : CrudCacheRepositoryBase<NotificationDto, N
|
||||
|
||||
dbContext.Notifications.UpdateRange(entities);
|
||||
|
||||
return await dbContext.SaveChangesAsync(cancellationToken);
|
||||
var result = await dbContext.SaveChangesAsync(cancellationToken);
|
||||
DropCache();
|
||||
return result;
|
||||
}
|
||||
|
||||
public async Task<PaginationContainer<NotificationDto>> GetNotificationsAsync(int idUser,
|
||||
@ -65,7 +68,7 @@ public class NotificationRepository : CrudCacheRepositoryBase<NotificationDto, N
|
||||
Count = await query.CountAsync(cancellationToken),
|
||||
};
|
||||
|
||||
if (result.Count == 0)
|
||||
if (result.Count < skip)
|
||||
return result;
|
||||
|
||||
result.Items = await query
|
||||
@ -84,11 +87,15 @@ public class NotificationRepository : CrudCacheRepositoryBase<NotificationDto, N
|
||||
{
|
||||
var query = dbContext.Notifications
|
||||
.Include(x => x.NotificationCategory)
|
||||
.Where(n => n.IdUser == idUser)
|
||||
.AsQueryable();
|
||||
.Where(n => n.IdUser == idUser);
|
||||
|
||||
if (!request.IsSent)
|
||||
if (request.IsSent.HasValue)
|
||||
{
|
||||
if(request.IsSent.Value)
|
||||
query = query.Where(n => n.SentDate != null);
|
||||
else
|
||||
query = query.Where(n => n.SentDate == null);
|
||||
}
|
||||
|
||||
if (request.IdTransportType.HasValue)
|
||||
query = query.Where(n => n.IdTransportType == request.IdTransportType);
|
||||
|
@ -1,114 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AsbCloudApp.Data;
|
||||
using AsbCloudApp.Exceptions;
|
||||
using AsbCloudApp.Repositories;
|
||||
using AsbCloudApp.Requests;
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudApp.Services.Notifications;
|
||||
|
||||
namespace AsbCloudInfrastructure.Services.Notifications;
|
||||
|
||||
public class NotificationService : INotificationService
|
||||
{
|
||||
private readonly ICrudRepository<NotificationCategoryDto> notificationCategoryRepository;
|
||||
private readonly INotificationRepository notificationRepository;
|
||||
private readonly IEnumerable<INotificationTransportService> notificationTransportServices;
|
||||
|
||||
public NotificationService(ICrudRepository<NotificationCategoryDto> notificationCategoryRepository,
|
||||
INotificationRepository notificationRepository,
|
||||
IEnumerable<INotificationTransportService> notificationTransportServices)
|
||||
{
|
||||
this.notificationCategoryRepository = notificationCategoryRepository;
|
||||
this.notificationRepository = notificationRepository;
|
||||
this.notificationTransportServices = notificationTransportServices;
|
||||
}
|
||||
|
||||
public async Task NotifyAsync(int idUser,
|
||||
int idNotificationCategory,
|
||||
string title,
|
||||
string message,
|
||||
int idTransportType,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
var notificationCategory = await notificationCategoryRepository
|
||||
.GetOrDefaultAsync(idNotificationCategory, cancellationToken);
|
||||
|
||||
if(notificationCategory is null)
|
||||
throw new ArgumentInvalidException("Категория уведомления не найдена", nameof(idNotificationCategory));
|
||||
|
||||
var notification = new NotificationDto()
|
||||
{
|
||||
IdUser = idUser,
|
||||
IdNotificationCategory = idNotificationCategory,
|
||||
Title = title,
|
||||
Message = message,
|
||||
IdTransportType = idTransportType
|
||||
};
|
||||
|
||||
notification.Id = await notificationRepository.InsertAsync(notification,
|
||||
cancellationToken);
|
||||
|
||||
notification.NotificationCategory = notificationCategory;
|
||||
|
||||
var notificationTransportService = GetNotificationTransportService(idTransportType);
|
||||
|
||||
await notificationTransportService.SendAsync(notification, cancellationToken);
|
||||
|
||||
await notificationRepository.UpdateAsync(notification,
|
||||
cancellationToken);
|
||||
}
|
||||
|
||||
public async Task UpdateNotificationAsync(int idNotification,
|
||||
bool isRead,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
var notification = await notificationRepository.GetOrDefaultAsync(idNotification,
|
||||
cancellationToken)
|
||||
?? throw new ArgumentInvalidException("Уведомление не найдено", nameof(idNotification));
|
||||
|
||||
if (isRead)
|
||||
{
|
||||
if (notification.SentDate == null)
|
||||
throw new ArgumentInvalidException("Уведомление не может быть прочитано", nameof(isRead));
|
||||
|
||||
notification.SentDate = DateTime.UtcNow;
|
||||
}
|
||||
|
||||
await notificationRepository.UpdateAsync(notification,
|
||||
cancellationToken);
|
||||
}
|
||||
|
||||
public async Task ResendNotificationAsync(int idUser,
|
||||
NotificationRequest request,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
if (!request.IdTransportType.HasValue)
|
||||
throw new ArgumentInvalidException("Id типа доставки уведомления должен иметь значение",
|
||||
nameof(request.IdTransportType));
|
||||
|
||||
var result = await notificationRepository.GetNotificationsAsync(idUser,
|
||||
request,
|
||||
cancellationToken);
|
||||
|
||||
var notificationTransportService = GetNotificationTransportService(request.IdTransportType.Value);
|
||||
|
||||
await notificationTransportService.SendRangeAsync(result.Items,
|
||||
cancellationToken);
|
||||
|
||||
await notificationRepository.UpdateRangeAsync(result.Items,
|
||||
cancellationToken);
|
||||
}
|
||||
|
||||
private INotificationTransportService GetNotificationTransportService(int idTransportType)
|
||||
{
|
||||
var notificationTransportService = notificationTransportServices
|
||||
.FirstOrDefault(s => s.IdTransportType == idTransportType)
|
||||
?? throw new ArgumentInvalidException("Доставщик уведомлений не найден", nameof(idTransportType));
|
||||
|
||||
return notificationTransportService;
|
||||
}
|
||||
}
|
@ -19,10 +19,10 @@ namespace AsbCloudWebApi.Controllers;
|
||||
[Route("api/notification")]
|
||||
public class NotificationController : ControllerBase
|
||||
{
|
||||
private readonly INotificationService notificationService;
|
||||
private readonly NotificationService notificationService;
|
||||
private readonly INotificationRepository notificationRepository;
|
||||
|
||||
public NotificationController(INotificationService notificationService,
|
||||
public NotificationController(NotificationService notificationService,
|
||||
INotificationRepository notificationRepository)
|
||||
{
|
||||
this.notificationService = notificationService;
|
||||
|
@ -24,7 +24,7 @@ namespace AsbCloudWebApi
|
||||
{
|
||||
services.AddSwaggerGen(c =>
|
||||
{
|
||||
c.MapType<TimeSpan>(() => new OpenApiSchema { Type = "string", Example = new OpenApiString("1.00:00:00") });
|
||||
c.MapType<TimeSpan>(() => new OpenApiSchema { Type = "string", Example = new OpenApiString("0.00:00:00") });
|
||||
c.MapType<DateOnly>(() => new OpenApiSchema { Type = "string", Format = "date" });
|
||||
c.MapType<JsonValue>(() => new OpenApiSchema
|
||||
{
|
||||
|
@ -13,21 +13,17 @@ namespace AsbCloudWebApi.SignalR;
|
||||
public class NotificationHub : BaseHub
|
||||
{
|
||||
private readonly ConnectionManagerService connectionManagerService;
|
||||
private readonly INotificationService notificationService;
|
||||
private readonly NotificationService notificationService;
|
||||
|
||||
public NotificationHub(ConnectionManagerService connectionManagerService,
|
||||
INotificationService notificationService)
|
||||
NotificationService notificationService)
|
||||
{
|
||||
this.connectionManagerService = connectionManagerService;
|
||||
this.notificationService = notificationService;
|
||||
}
|
||||
|
||||
public async Task OnConnected(NotificationRequest request)
|
||||
public override async Task OnConnectedAsync()
|
||||
{
|
||||
try
|
||||
{
|
||||
await base.OnConnectedAsync();
|
||||
|
||||
var idUser = Context.User?.GetUserId();
|
||||
|
||||
if (!idUser.HasValue)
|
||||
@ -37,25 +33,21 @@ public class NotificationHub : BaseHub
|
||||
|
||||
connectionManagerService.AddOrUpdateConnection(idUser.Value, connectionId);
|
||||
|
||||
await base.OnConnectedAsync();
|
||||
|
||||
await notificationService.ResendNotificationAsync(idUser.Value,
|
||||
request,
|
||||
new NotificationRequest { IsSent = false, IdTransportType = 0},
|
||||
CancellationToken.None);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine(e);
|
||||
}
|
||||
}
|
||||
|
||||
public async Task OnDisconnected()
|
||||
public override async Task OnDisconnectedAsync(Exception? exception)
|
||||
{
|
||||
await base.OnDisconnectedAsync(null);
|
||||
|
||||
var idUser = Context.User?.GetUserId();
|
||||
|
||||
if (!idUser.HasValue)
|
||||
return;
|
||||
|
||||
connectionManagerService.RemoveConnection(idUser.Value);
|
||||
await base.OnDisconnectedAsync(exception);
|
||||
}
|
||||
}
|
@ -26,7 +26,7 @@ public class SignalRNotificationTransportService : INotificationTransportService
|
||||
public async Task SendAsync(NotificationDto notification,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
const string method = "notifications";
|
||||
const string method = "receiveNotifications";
|
||||
|
||||
var connectionId = connectionManagerService.GetConnectionIdByUserId(notification.IdUser);
|
||||
|
||||
@ -44,8 +44,8 @@ public class SignalRNotificationTransportService : INotificationTransportService
|
||||
public Task SendRangeAsync(IEnumerable<NotificationDto> notifications,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
var tasks = Array.ConvertAll(notifications.ToArray(), notification =>
|
||||
SendAsync(notification, cancellationToken));
|
||||
var tasks = notifications
|
||||
.Select(notification => SendAsync(notification, cancellationToken));
|
||||
|
||||
return Task.WhenAll(tasks);
|
||||
}
|
||||
|
@ -10,7 +10,7 @@ internal class Program
|
||||
{
|
||||
var connectionBuilder = new HubConnectionBuilder();
|
||||
var connection = connectionBuilder
|
||||
.WithUrl("http://test.digitaldrilling.ru/hubs/telemetry", connectionOptions => {
|
||||
.WithUrl("http://localhost:5000/hubs/notifications", connectionOptions => {
|
||||
connectionOptions.AccessTokenProvider = AccessTokenProvider;
|
||||
})
|
||||
.WithAutomaticReconnect()
|
||||
@ -25,9 +25,10 @@ internal class Program
|
||||
Console.WriteLine("connecting");
|
||||
connection.StartAsync().Wait();
|
||||
|
||||
Console.WriteLine("AddToGroup");
|
||||
connection.SendCoreAsync("AddToGroup", new object[] { "well_1" }).Wait();
|
||||
var subsction = connection.On<object>("UpdateProcessMap", (str1) => {
|
||||
//Console.WriteLine("OnConnected");
|
||||
//connection.SendCoreAsync("OnConnected", new object[] { }, CancellationToken.None).Wait();
|
||||
|
||||
var subsction = connection.On<object>("receiveNotifications", (str1) => {
|
||||
Console.WriteLine(str1);
|
||||
} );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user