mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00

* PM-10563: Notification Center API * PM-10563: continuation token hack * PM-10563: Resolving merge conflicts * PM-10563: Unit Tests * PM-10563: Paging simplification by page number and size in database * PM-10563: Request validation * PM-10563: Read, Deleted status filters change * PM-10563: Plural name for tests * PM-10563: Request validation to always for int type * PM-10563: Continuation Token returns null on response when no more records available * PM-10563: Integration tests for GET * PM-10563: Mark notification read, deleted commands date typos fix * PM-10563: Integration tests for PATCH read, deleted * PM-10563: Request, Response models tests * PM-10563: EditorConfig compliance * PM-10563: Extracting to const * PM-10563: Update db migration script date * PM-10563: Update migration script date
40 lines
1.4 KiB
C#
40 lines
1.4 KiB
C#
#nullable enable
|
|
using Bit.Core.Context;
|
|
using Bit.Core.Exceptions;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.NotificationCenter.Models.Data;
|
|
using Bit.Core.NotificationCenter.Models.Filter;
|
|
using Bit.Core.NotificationCenter.Queries.Interfaces;
|
|
using Bit.Core.NotificationCenter.Repositories;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Core.NotificationCenter.Queries;
|
|
|
|
public class GetNotificationStatusDetailsForUserQuery : IGetNotificationStatusDetailsForUserQuery
|
|
{
|
|
private readonly ICurrentContext _currentContext;
|
|
private readonly INotificationRepository _notificationRepository;
|
|
|
|
public GetNotificationStatusDetailsForUserQuery(ICurrentContext currentContext,
|
|
INotificationRepository notificationRepository)
|
|
{
|
|
_currentContext = currentContext;
|
|
_notificationRepository = notificationRepository;
|
|
}
|
|
|
|
public async Task<PagedResult<NotificationStatusDetails>> GetByUserIdStatusFilterAsync(
|
|
NotificationStatusFilter statusFilter, PageOptions pageOptions)
|
|
{
|
|
if (!_currentContext.UserId.HasValue)
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
var clientType = DeviceTypes.ToClientType(_currentContext.DeviceType);
|
|
|
|
// Note: only returns the user's notifications - no authorization check needed
|
|
return await _notificationRepository.GetByUserIdAndStatusAsync(_currentContext.UserId.Value, clientType,
|
|
statusFilter, pageOptions);
|
|
}
|
|
}
|