diff --git a/src/Api/NotificationCenter/Models/Response/NotificationResponseModel.cs b/src/Api/NotificationCenter/Models/Response/NotificationResponseModel.cs index 1ebed87de2..ab882d5557 100644 --- a/src/Api/NotificationCenter/Models/Response/NotificationResponseModel.cs +++ b/src/Api/NotificationCenter/Models/Response/NotificationResponseModel.cs @@ -22,6 +22,7 @@ public class NotificationResponseModel : ResponseModel Title = notificationStatusDetails.Title; Body = notificationStatusDetails.Body; Date = notificationStatusDetails.RevisionDate; + TaskId = notificationStatusDetails.TaskId; ReadDate = notificationStatusDetails.ReadDate; DeletedDate = notificationStatusDetails.DeletedDate; } @@ -40,6 +41,8 @@ public class NotificationResponseModel : ResponseModel public DateTime Date { get; set; } + public Guid? TaskId { get; set; } + public DateTime? ReadDate { get; set; } public DateTime? DeletedDate { get; set; } diff --git a/src/Core/NotificationCenter/Models/Data/NotificationStatusDetails.cs b/src/Core/NotificationCenter/Models/Data/NotificationStatusDetails.cs index d48985e725..5ad8decb94 100644 --- a/src/Core/NotificationCenter/Models/Data/NotificationStatusDetails.cs +++ b/src/Core/NotificationCenter/Models/Data/NotificationStatusDetails.cs @@ -19,6 +19,7 @@ public class NotificationStatusDetails public string? Body { get; set; } public DateTime CreationDate { get; set; } public DateTime RevisionDate { get; set; } + public Guid? TaskId { get; set; } // Notification Status fields public DateTime? ReadDate { get; set; } public DateTime? DeletedDate { get; set; } diff --git a/src/Infrastructure.EntityFramework/NotificationCenter/Repositories/Queries/NotificationStatusDetailsViewQuery.cs b/src/Infrastructure.EntityFramework/NotificationCenter/Repositories/Queries/NotificationStatusDetailsViewQuery.cs index 2f8bade1d3..41f8610101 100644 --- a/src/Infrastructure.EntityFramework/NotificationCenter/Repositories/Queries/NotificationStatusDetailsViewQuery.cs +++ b/src/Infrastructure.EntityFramework/NotificationCenter/Repositories/Queries/NotificationStatusDetailsViewQuery.cs @@ -52,6 +52,7 @@ public class NotificationStatusDetailsViewQuery(Guid userId, ClientType clientTy ClientType = x.n.ClientType, UserId = x.n.UserId, OrganizationId = x.n.OrganizationId, + TaskId = x.n.TaskId, Title = x.n.Title, Body = x.n.Body, CreationDate = x.n.CreationDate, diff --git a/src/Notifications/HubHelpers.cs b/src/Notifications/HubHelpers.cs index 8fa74f7b84..441842da3b 100644 --- a/src/Notifications/HubHelpers.cs +++ b/src/Notifications/HubHelpers.cs @@ -135,6 +135,11 @@ public static class HubHelpers } break; + case PushType.PendingSecurityTasks: + var pendingTasksData = JsonSerializer.Deserialize>(notificationJson, _deserializerOptions); + await hubContext.Clients.User(pendingTasksData.Payload.UserId.ToString()) + .SendAsync(_receiveMessageMethod, pendingTasksData, cancellationToken); + break; default: break; } diff --git a/src/Sql/NotificationCenter/dbo/Views/NotificationStatusDetailsView.sql b/src/Sql/NotificationCenter/dbo/Views/NotificationStatusDetailsView.sql index 5264be2009..57298152c7 100644 --- a/src/Sql/NotificationCenter/dbo/Views/NotificationStatusDetailsView.sql +++ b/src/Sql/NotificationCenter/dbo/Views/NotificationStatusDetailsView.sql @@ -1,10 +1,20 @@ CREATE VIEW [dbo].[NotificationStatusDetailsView] AS SELECT - N.*, - NS.UserId AS NotificationStatusUserId, - NS.ReadDate, - NS.DeletedDate + N.[Id], + N.[Priority], + N.[Global], + N.[ClientType], + N.[UserId], + N.[OrganizationId], + N.[Title], + N.[Body], + N.[CreationDate], + N.[RevisionDate], + N.[TaskId], + NS.[UserId] AS [NotificationStatusUserId], + NS.[ReadDate], + NS.[DeletedDate] FROM [dbo].[Notification] AS N LEFT JOIN diff --git a/test/Api.Test/NotificationCenter/Controllers/NotificationsControllerTests.cs b/test/Api.Test/NotificationCenter/Controllers/NotificationsControllerTests.cs index b8b21ef419..094ef2918e 100644 --- a/test/Api.Test/NotificationCenter/Controllers/NotificationsControllerTests.cs +++ b/test/Api.Test/NotificationCenter/Controllers/NotificationsControllerTests.cs @@ -67,6 +67,7 @@ public class NotificationsControllerTests Assert.Equal(expectedNotificationStatusDetails.RevisionDate, notificationResponseModel.Date); Assert.Equal(expectedNotificationStatusDetails.ReadDate, notificationResponseModel.ReadDate); Assert.Equal(expectedNotificationStatusDetails.DeletedDate, notificationResponseModel.DeletedDate); + Assert.Equal(expectedNotificationStatusDetails.TaskId, notificationResponseModel.TaskId); }); Assert.Null(listResponse.ContinuationToken); @@ -116,6 +117,7 @@ public class NotificationsControllerTests Assert.Equal(expectedNotificationStatusDetails.RevisionDate, notificationResponseModel.Date); Assert.Equal(expectedNotificationStatusDetails.ReadDate, notificationResponseModel.ReadDate); Assert.Equal(expectedNotificationStatusDetails.DeletedDate, notificationResponseModel.DeletedDate); + Assert.Equal(expectedNotificationStatusDetails.TaskId, notificationResponseModel.TaskId); }); Assert.Equal("2", listResponse.ContinuationToken); @@ -164,6 +166,7 @@ public class NotificationsControllerTests Assert.Equal(expectedNotificationStatusDetails.RevisionDate, notificationResponseModel.Date); Assert.Equal(expectedNotificationStatusDetails.ReadDate, notificationResponseModel.ReadDate); Assert.Equal(expectedNotificationStatusDetails.DeletedDate, notificationResponseModel.DeletedDate); + Assert.Equal(expectedNotificationStatusDetails.TaskId, notificationResponseModel.TaskId); }); Assert.Null(listResponse.ContinuationToken); diff --git a/test/Api.Test/NotificationCenter/Models/Response/NotificationResponseModelTests.cs b/test/Api.Test/NotificationCenter/Models/Response/NotificationResponseModelTests.cs index f0dfc03fec..171b972575 100644 --- a/test/Api.Test/NotificationCenter/Models/Response/NotificationResponseModelTests.cs +++ b/test/Api.Test/NotificationCenter/Models/Response/NotificationResponseModelTests.cs @@ -26,6 +26,7 @@ public class NotificationResponseModelTests ClientType = ClientType.All, Title = "Test Title", Body = "Test Body", + TaskId = Guid.NewGuid(), RevisionDate = DateTime.UtcNow - TimeSpan.FromMinutes(3), ReadDate = DateTime.UtcNow - TimeSpan.FromMinutes(1), DeletedDate = DateTime.UtcNow, @@ -39,5 +40,6 @@ public class NotificationResponseModelTests Assert.Equal(model.Date, notificationStatusDetails.RevisionDate); Assert.Equal(model.ReadDate, notificationStatusDetails.ReadDate); Assert.Equal(model.DeletedDate, notificationStatusDetails.DeletedDate); + Assert.Equal(model.TaskId, notificationStatusDetails.TaskId); } } diff --git a/util/Migrator/DbScripts/2025-04-01_00_RecreateNotificationStatusView.sql b/util/Migrator/DbScripts/2025-04-01_00_RecreateNotificationStatusView.sql new file mode 100644 index 0000000000..727218f9ab --- /dev/null +++ b/util/Migrator/DbScripts/2025-04-01_00_RecreateNotificationStatusView.sql @@ -0,0 +1,25 @@ +-- Recreate the NotificationStatusView to include the Notification.TaskId column +CREATE OR ALTER VIEW [dbo].[NotificationStatusDetailsView] +AS +SELECT + N.[Id], + N.[Priority], + N.[Global], + N.[ClientType], + N.[UserId], + N.[OrganizationId], + N.[Title], + N.[Body], + N.[CreationDate], + N.[RevisionDate], + N.[TaskId], + NS.[UserId] AS [NotificationStatusUserId], + NS.[ReadDate], + NS.[DeletedDate] +FROM + [dbo].[Notification] AS N + LEFT JOIN + [dbo].[NotificationStatus] as NS +ON + N.[Id] = NS.[NotificationId] +GO