1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

[PM-10600] Push notification with full notification center content (#5086)

* PM-10600: Notification push notification

* PM-10600: Sending to specific client types for relay push notifications

* PM-10600: Sending to specific client types for other clients

* PM-10600: Send push notification on notification creation

* PM-10600: Explicit group names

* PM-10600: Id typos

* PM-10600: Revert global push notifications

* PM-10600: Added DeviceType claim

* PM-10600: Sent to organization typo

* PM-10600: UT coverage

* PM-10600: Small refactor, UTs coverage

* PM-10600: UTs coverage

* PM-10600: Startup fix

* PM-10600: Test fix

* PM-10600: Required attribute, organization group for push notification fix

* PM-10600: UT coverage

* PM-10600: Fix Mobile devices not registering to organization push notifications

We only register devices for organization push notifications when the organization is being created. This does not work, since we have a use case (Notification Center) of delivering notifications to all users of organization. This fixes it, by adding the organization id tag when device registers for push notifications.

* PM-10600: Unit Test coverage for NotificationHubPushRegistrationService

Fixed IFeatureService substitute mocking for Android tests.
Added user part of organization test with organizationId tags expectation.

* PM-10600: Unit Tests fix to NotificationHubPushRegistrationService after merge conflict

* PM-10600: Organization push notifications not sending to mobile device from self-hosted.

Self-hosted instance uses relay to register the mobile device against Bitwarden Cloud Api. Only the self-hosted server knows client's organization membership, which means it needs to pass in the organization id's information to the relay. Similarly, for Bitwarden Cloud, the organizaton id will come directly from the server.

* PM-10600: Fix self-hosted organization notification not being received by mobile device.

When mobile device registers on self-hosted through the relay, every single id, like user id, device id and now organization id needs to be prefixed with the installation id. This have been missing in the PushController that handles this for organization id.

* PM-10600: Broken NotificationsController integration test

Device type is now part of JWT access token, so the notification center results in the integration test are now scoped to client type web and all.

* PM-10600: Merge conflicts fix

* merge conflict fix

* PM-10600: Push notification with full notification center content.

Notification Center push notification now includes all the fields.
This commit is contained in:
Maciej Zieniuk 2025-02-12 17:31:03 +01:00 committed by GitHub
parent ae9bb427a1
commit b98b74cef6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
15 changed files with 85 additions and 47 deletions

View File

@ -1,4 +1,5 @@
using Bit.Core.Enums; using Bit.Core.Enums;
using Bit.Core.NotificationCenter.Enums;
namespace Bit.Core.Models; namespace Bit.Core.Models;
@ -45,14 +46,21 @@ public class SyncSendPushNotification
public DateTime RevisionDate { get; set; } public DateTime RevisionDate { get; set; }
} }
public class SyncNotificationPushNotification #nullable enable
public class NotificationPushNotification
{ {
public Guid Id { get; set; } public Guid Id { get; set; }
public Priority Priority { get; set; }
public bool Global { get; set; }
public ClientType ClientType { get; set; }
public Guid? UserId { get; set; } public Guid? UserId { get; set; }
public Guid? OrganizationId { get; set; } public Guid? OrganizationId { get; set; }
public ClientType ClientType { get; set; } public string? Title { get; set; }
public string? Body { get; set; }
public DateTime CreationDate { get; set; }
public DateTime RevisionDate { get; set; } public DateTime RevisionDate { get; set; }
} }
#nullable disable
public class AuthRequestPushNotification public class AuthRequestPushNotification
{ {

View File

@ -37,7 +37,7 @@ public class CreateNotificationCommand : ICreateNotificationCommand
var newNotification = await _notificationRepository.CreateAsync(notification); var newNotification = await _notificationRepository.CreateAsync(notification);
await _pushNotificationService.PushSyncNotificationAsync(newNotification); await _pushNotificationService.PushNotificationAsync(newNotification);
return newNotification; return newNotification;
} }

View File

@ -15,9 +15,8 @@ public class Notification : ITableObject<Guid>
public ClientType ClientType { get; set; } public ClientType ClientType { get; set; }
public Guid? UserId { get; set; } public Guid? UserId { get; set; }
public Guid? OrganizationId { get; set; } public Guid? OrganizationId { get; set; }
[MaxLength(256)] [MaxLength(256)] public string? Title { get; set; }
public string? Title { get; set; } [MaxLength(3000)] public string? Body { get; set; }
public string? Body { get; set; }
public DateTime CreationDate { get; set; } public DateTime CreationDate { get; set; }
public DateTime RevisionDate { get; set; } public DateTime RevisionDate { get; set; }
public Guid? TaskId { get; set; } public Guid? TaskId { get; set; }

View File

@ -181,14 +181,19 @@ public class NotificationHubPushNotificationService : IPushNotificationService
await PushAuthRequestAsync(authRequest, PushType.AuthRequestResponse); await PushAuthRequestAsync(authRequest, PushType.AuthRequestResponse);
} }
public async Task PushSyncNotificationAsync(Notification notification) public async Task PushNotificationAsync(Notification notification)
{ {
var message = new SyncNotificationPushNotification var message = new NotificationPushNotification
{ {
Id = notification.Id, Id = notification.Id,
Priority = notification.Priority,
Global = notification.Global,
ClientType = notification.ClientType,
UserId = notification.UserId, UserId = notification.UserId,
OrganizationId = notification.OrganizationId, OrganizationId = notification.OrganizationId,
ClientType = notification.ClientType, Title = notification.Title,
Body = notification.Body,
CreationDate = notification.CreationDate,
RevisionDate = notification.RevisionDate RevisionDate = notification.RevisionDate
}; };

View File

@ -165,14 +165,19 @@ public class AzureQueuePushNotificationService : IPushNotificationService
await PushSendAsync(send, PushType.SyncSendDelete); await PushSendAsync(send, PushType.SyncSendDelete);
} }
public async Task PushSyncNotificationAsync(Notification notification) public async Task PushNotificationAsync(Notification notification)
{ {
var message = new SyncNotificationPushNotification var message = new NotificationPushNotification
{ {
Id = notification.Id, Id = notification.Id,
Priority = notification.Priority,
Global = notification.Global,
ClientType = notification.ClientType,
UserId = notification.UserId, UserId = notification.UserId,
OrganizationId = notification.OrganizationId, OrganizationId = notification.OrganizationId,
ClientType = notification.ClientType, Title = notification.Title,
Body = notification.Body,
CreationDate = notification.CreationDate,
RevisionDate = notification.RevisionDate RevisionDate = notification.RevisionDate
}; };

View File

@ -24,7 +24,7 @@ public interface IPushNotificationService
Task PushSyncSendCreateAsync(Send send); Task PushSyncSendCreateAsync(Send send);
Task PushSyncSendUpdateAsync(Send send); Task PushSyncSendUpdateAsync(Send send);
Task PushSyncSendDeleteAsync(Send send); Task PushSyncSendDeleteAsync(Send send);
Task PushSyncNotificationAsync(Notification notification); Task PushNotificationAsync(Notification notification);
Task PushAuthRequestAsync(AuthRequest authRequest); Task PushAuthRequestAsync(AuthRequest authRequest);
Task PushAuthRequestResponseAsync(AuthRequest authRequest); Task PushAuthRequestResponseAsync(AuthRequest authRequest);
Task PushSyncOrganizationStatusAsync(Organization organization); Task PushSyncOrganizationStatusAsync(Organization organization);

View File

@ -144,9 +144,9 @@ public class MultiServicePushNotificationService : IPushNotificationService
return Task.CompletedTask; return Task.CompletedTask;
} }
public Task PushSyncNotificationAsync(Notification notification) public Task PushNotificationAsync(Notification notification)
{ {
PushToServices((s) => s.PushSyncNotificationAsync(notification)); PushToServices((s) => s.PushNotificationAsync(notification));
return Task.CompletedTask; return Task.CompletedTask;
} }

View File

@ -113,5 +113,5 @@ public class NoopPushNotificationService : IPushNotificationService
return Task.FromResult(0); return Task.FromResult(0);
} }
public Task PushSyncNotificationAsync(Notification notification) => Task.CompletedTask; public Task PushNotificationAsync(Notification notification) => Task.CompletedTask;
} }

View File

@ -184,14 +184,19 @@ public class NotificationsApiPushNotificationService : BaseIdentityClientService
await PushSendAsync(send, PushType.SyncSendDelete); await PushSendAsync(send, PushType.SyncSendDelete);
} }
public async Task PushSyncNotificationAsync(Notification notification) public async Task PushNotificationAsync(Notification notification)
{ {
var message = new SyncNotificationPushNotification var message = new NotificationPushNotification
{ {
Id = notification.Id, Id = notification.Id,
Priority = notification.Priority,
Global = notification.Global,
ClientType = notification.ClientType,
UserId = notification.UserId, UserId = notification.UserId,
OrganizationId = notification.OrganizationId, OrganizationId = notification.OrganizationId,
ClientType = notification.ClientType, Title = notification.Title,
Body = notification.Body,
CreationDate = notification.CreationDate,
RevisionDate = notification.RevisionDate RevisionDate = notification.RevisionDate
}; };

View File

@ -191,14 +191,19 @@ public class RelayPushNotificationService : BaseIdentityClientService, IPushNoti
await SendPayloadToUserAsync(authRequest.UserId, type, message, true); await SendPayloadToUserAsync(authRequest.UserId, type, message, true);
} }
public async Task PushSyncNotificationAsync(Notification notification) public async Task PushNotificationAsync(Notification notification)
{ {
var message = new SyncNotificationPushNotification var message = new NotificationPushNotification
{ {
Id = notification.Id, Id = notification.Id,
Priority = notification.Priority,
Global = notification.Global,
ClientType = notification.ClientType,
UserId = notification.UserId, UserId = notification.UserId,
OrganizationId = notification.OrganizationId, OrganizationId = notification.OrganizationId,
ClientType = notification.ClientType, Title = notification.Title,
Body = notification.Body,
CreationDate = notification.CreationDate,
RevisionDate = notification.RevisionDate RevisionDate = notification.RevisionDate
}; };

View File

@ -105,7 +105,7 @@ public static class HubHelpers
break; break;
case PushType.SyncNotification: case PushType.SyncNotification:
var syncNotification = var syncNotification =
JsonSerializer.Deserialize<PushNotificationData<SyncNotificationPushNotification>>( JsonSerializer.Deserialize<PushNotificationData<NotificationPushNotification>>(
notificationJson, _deserializerOptions); notificationJson, _deserializerOptions);
if (syncNotification.Payload.UserId.HasValue) if (syncNotification.Payload.UserId.HasValue)
{ {

View File

@ -58,6 +58,6 @@ public class CreateNotificationCommandTest
Assert.Equal(notification.CreationDate, notification.RevisionDate); Assert.Equal(notification.CreationDate, notification.RevisionDate);
await sutProvider.GetDependency<IPushNotificationService>() await sutProvider.GetDependency<IPushNotificationService>()
.Received(1) .Received(1)
.PushSyncNotificationAsync(newNotification); .PushNotificationAsync(newNotification);
} }
} }

View File

@ -20,10 +20,10 @@ public class NotificationHubPushNotificationServiceTests
[Theory] [Theory]
[BitAutoData] [BitAutoData]
[NotificationCustomize] [NotificationCustomize]
public async void PushSyncNotificationAsync_Global_NotSent( public async void PushNotificationAsync_Global_NotSent(
SutProvider<NotificationHubPushNotificationService> sutProvider, Notification notification) SutProvider<NotificationHubPushNotificationService> sutProvider, Notification notification)
{ {
await sutProvider.Sut.PushSyncNotificationAsync(notification); await sutProvider.Sut.PushNotificationAsync(notification);
await sutProvider.GetDependency<INotificationHubPool>() await sutProvider.GetDependency<INotificationHubPool>()
.Received(0) .Received(0)
@ -39,7 +39,7 @@ public class NotificationHubPushNotificationServiceTests
[BitAutoData(false)] [BitAutoData(false)]
[BitAutoData(true)] [BitAutoData(true)]
[NotificationCustomize(false)] [NotificationCustomize(false)]
public async void PushSyncNotificationAsync_UserIdProvidedClientTypeAll_SentToUser( public async void PushNotificationAsync_UserIdProvidedClientTypeAll_SentToUser(
bool organizationIdNull, SutProvider<NotificationHubPushNotificationService> sutProvider, bool organizationIdNull, SutProvider<NotificationHubPushNotificationService> sutProvider,
Notification notification) Notification notification)
{ {
@ -51,7 +51,7 @@ public class NotificationHubPushNotificationServiceTests
notification.ClientType = ClientType.All; notification.ClientType = ClientType.All;
var expectedSyncNotification = ToSyncNotificationPushNotification(notification); var expectedSyncNotification = ToSyncNotificationPushNotification(notification);
await sutProvider.Sut.PushSyncNotificationAsync(notification); await sutProvider.Sut.PushNotificationAsync(notification);
await AssertSendTemplateNotificationAsync(sutProvider, PushType.SyncNotification, expectedSyncNotification, await AssertSendTemplateNotificationAsync(sutProvider, PushType.SyncNotification, expectedSyncNotification,
$"(template:payload_userId:{notification.UserId})"); $"(template:payload_userId:{notification.UserId})");
@ -70,7 +70,7 @@ public class NotificationHubPushNotificationServiceTests
[BitAutoData(true, ClientType.Web)] [BitAutoData(true, ClientType.Web)]
[BitAutoData(true, ClientType.Mobile)] [BitAutoData(true, ClientType.Mobile)]
[NotificationCustomize(false)] [NotificationCustomize(false)]
public async void PushSyncNotificationAsync_UserIdProvidedClientTypeNotAll_SentToUser(bool organizationIdNull, public async void PushNotificationAsync_UserIdProvidedClientTypeNotAll_SentToUser(bool organizationIdNull,
ClientType clientType, SutProvider<NotificationHubPushNotificationService> sutProvider, ClientType clientType, SutProvider<NotificationHubPushNotificationService> sutProvider,
Notification notification) Notification notification)
{ {
@ -82,7 +82,7 @@ public class NotificationHubPushNotificationServiceTests
notification.ClientType = clientType; notification.ClientType = clientType;
var expectedSyncNotification = ToSyncNotificationPushNotification(notification); var expectedSyncNotification = ToSyncNotificationPushNotification(notification);
await sutProvider.Sut.PushSyncNotificationAsync(notification); await sutProvider.Sut.PushNotificationAsync(notification);
await AssertSendTemplateNotificationAsync(sutProvider, PushType.SyncNotification, expectedSyncNotification, await AssertSendTemplateNotificationAsync(sutProvider, PushType.SyncNotification, expectedSyncNotification,
$"(template:payload_userId:{notification.UserId} && clientType:{clientType})"); $"(template:payload_userId:{notification.UserId} && clientType:{clientType})");
@ -94,14 +94,14 @@ public class NotificationHubPushNotificationServiceTests
[Theory] [Theory]
[BitAutoData] [BitAutoData]
[NotificationCustomize(false)] [NotificationCustomize(false)]
public async void PushSyncNotificationAsync_UserIdNullOrganizationIdProvidedClientTypeAll_SentToOrganization( public async void PushNotificationAsync_UserIdNullOrganizationIdProvidedClientTypeAll_SentToOrganization(
SutProvider<NotificationHubPushNotificationService> sutProvider, Notification notification) SutProvider<NotificationHubPushNotificationService> sutProvider, Notification notification)
{ {
notification.UserId = null; notification.UserId = null;
notification.ClientType = ClientType.All; notification.ClientType = ClientType.All;
var expectedSyncNotification = ToSyncNotificationPushNotification(notification); var expectedSyncNotification = ToSyncNotificationPushNotification(notification);
await sutProvider.Sut.PushSyncNotificationAsync(notification); await sutProvider.Sut.PushNotificationAsync(notification);
await AssertSendTemplateNotificationAsync(sutProvider, PushType.SyncNotification, expectedSyncNotification, await AssertSendTemplateNotificationAsync(sutProvider, PushType.SyncNotification, expectedSyncNotification,
$"(template:payload && organizationId:{notification.OrganizationId})"); $"(template:payload && organizationId:{notification.OrganizationId})");
@ -116,7 +116,7 @@ public class NotificationHubPushNotificationServiceTests
[BitAutoData(ClientType.Web)] [BitAutoData(ClientType.Web)]
[BitAutoData(ClientType.Mobile)] [BitAutoData(ClientType.Mobile)]
[NotificationCustomize(false)] [NotificationCustomize(false)]
public async void PushSyncNotificationAsync_UserIdNullOrganizationIdProvidedClientTypeNotAll_SentToOrganization( public async void PushNotificationAsync_UserIdNullOrganizationIdProvidedClientTypeNotAll_SentToOrganization(
ClientType clientType, SutProvider<NotificationHubPushNotificationService> sutProvider, ClientType clientType, SutProvider<NotificationHubPushNotificationService> sutProvider,
Notification notification) Notification notification)
{ {
@ -125,7 +125,7 @@ public class NotificationHubPushNotificationServiceTests
var expectedSyncNotification = ToSyncNotificationPushNotification(notification); var expectedSyncNotification = ToSyncNotificationPushNotification(notification);
await sutProvider.Sut.PushSyncNotificationAsync(notification); await sutProvider.Sut.PushNotificationAsync(notification);
await AssertSendTemplateNotificationAsync(sutProvider, PushType.SyncNotification, expectedSyncNotification, await AssertSendTemplateNotificationAsync(sutProvider, PushType.SyncNotification, expectedSyncNotification,
$"(template:payload && organizationId:{notification.OrganizationId} && clientType:{clientType})"); $"(template:payload && organizationId:{notification.OrganizationId} && clientType:{clientType})");
@ -206,13 +206,18 @@ public class NotificationHubPushNotificationServiceTests
.UpsertAsync(Arg.Any<InstallationDeviceEntity>()); .UpsertAsync(Arg.Any<InstallationDeviceEntity>());
} }
private static SyncNotificationPushNotification ToSyncNotificationPushNotification(Notification notification) => private static NotificationPushNotification ToSyncNotificationPushNotification(Notification notification) =>
new() new()
{ {
Id = notification.Id, Id = notification.Id,
Priority = notification.Priority,
Global = notification.Global,
ClientType = notification.ClientType,
UserId = notification.UserId, UserId = notification.UserId,
OrganizationId = notification.OrganizationId, OrganizationId = notification.OrganizationId,
ClientType = notification.ClientType, Title = notification.Title,
Body = notification.Body,
CreationDate = notification.CreationDate,
RevisionDate = notification.RevisionDate RevisionDate = notification.RevisionDate
}; };

View File

@ -24,7 +24,7 @@ public class AzureQueuePushNotificationServiceTests
[BitAutoData] [BitAutoData]
[NotificationCustomize] [NotificationCustomize]
[CurrentContextCustomize] [CurrentContextCustomize]
public async void PushSyncNotificationAsync_Notification_Sent( public async void PushNotificationAsync_Notification_Sent(
SutProvider<AzureQueuePushNotificationService> sutProvider, Notification notification, Guid deviceIdentifier, SutProvider<AzureQueuePushNotificationService> sutProvider, Notification notification, Guid deviceIdentifier,
ICurrentContext currentContext) ICurrentContext currentContext)
{ {
@ -32,7 +32,7 @@ public class AzureQueuePushNotificationServiceTests
sutProvider.GetDependency<IHttpContextAccessor>().HttpContext!.RequestServices sutProvider.GetDependency<IHttpContextAccessor>().HttpContext!.RequestServices
.GetService(Arg.Any<Type>()).Returns(currentContext); .GetService(Arg.Any<Type>()).Returns(currentContext);
await sutProvider.Sut.PushSyncNotificationAsync(notification); await sutProvider.Sut.PushNotificationAsync(notification);
await sutProvider.GetDependency<QueueClient>().Received(1) await sutProvider.GetDependency<QueueClient>().Received(1)
.SendMessageAsync(Arg.Is<string>(message => .SendMessageAsync(Arg.Is<string>(message =>
@ -43,23 +43,29 @@ public class AzureQueuePushNotificationServiceTests
private static bool MatchMessage<T>(PushType pushType, string message, IEquatable<T> expectedPayloadEquatable, private static bool MatchMessage<T>(PushType pushType, string message, IEquatable<T> expectedPayloadEquatable,
string contextId) string contextId)
{ {
var pushNotificationData = var pushNotificationData = JsonSerializer.Deserialize<PushNotificationData<T>>(message);
JsonSerializer.Deserialize<PushNotificationData<T>>(message);
return pushNotificationData != null && return pushNotificationData != null &&
pushNotificationData.Type == pushType && pushNotificationData.Type == pushType &&
expectedPayloadEquatable.Equals(pushNotificationData.Payload) && expectedPayloadEquatable.Equals(pushNotificationData.Payload) &&
pushNotificationData.ContextId == contextId; pushNotificationData.ContextId == contextId;
} }
private class SyncNotificationEquals(Notification notification) : IEquatable<SyncNotificationPushNotification> private class SyncNotificationEquals(Notification notification) : IEquatable<NotificationPushNotification>
{ {
public bool Equals(SyncNotificationPushNotification? other) public bool Equals(NotificationPushNotification? other)
{ {
return other != null && return other != null &&
other.Id == notification.Id && other.Id == notification.Id &&
other.UserId == notification.UserId && other.Priority == notification.Priority &&
other.OrganizationId == notification.OrganizationId && other.Global == notification.Global &&
other.ClientType == notification.ClientType && other.ClientType == notification.ClientType &&
other.UserId.HasValue == notification.UserId.HasValue &&
other.UserId == notification.UserId &&
other.OrganizationId.HasValue == notification.OrganizationId.HasValue &&
other.OrganizationId == notification.OrganizationId &&
other.Title == notification.Title &&
other.Body == notification.Body &&
other.CreationDate == notification.CreationDate &&
other.RevisionDate == notification.RevisionDate; other.RevisionDate == notification.RevisionDate;
} }
} }

View File

@ -15,15 +15,15 @@ public class MultiServicePushNotificationServiceTests
[Theory] [Theory]
[BitAutoData] [BitAutoData]
[NotificationCustomize] [NotificationCustomize]
public async Task PushSyncNotificationAsync_Notification_Sent( public async Task PushNotificationAsync_Notification_Sent(
SutProvider<MultiServicePushNotificationService> sutProvider, Notification notification) SutProvider<MultiServicePushNotificationService> sutProvider, Notification notification)
{ {
await sutProvider.Sut.PushSyncNotificationAsync(notification); await sutProvider.Sut.PushNotificationAsync(notification);
await sutProvider.GetDependency<IEnumerable<IPushNotificationService>>() await sutProvider.GetDependency<IEnumerable<IPushNotificationService>>()
.First() .First()
.Received(1) .Received(1)
.PushSyncNotificationAsync(notification); .PushNotificationAsync(notification);
} }
[Theory] [Theory]