using Bit.Core.Enums; using Bit.Core.Exceptions; using Bit.Core.Platform.Push; using Bit.Core.Services; using Bit.Core.Vault.Entities; using Bit.Core.Vault.Models.Data; using Bit.Core.Vault.Repositories; namespace Bit.Core.Vault.Commands.Interfaces; public class UnarchiveCiphersCommand : IUnarchiveCiphersCommand { private readonly ICipherRepository _cipherRepository; private readonly IEventService _eventService; private readonly IPushNotificationService _pushService; public UnarchiveCiphersCommand( ICipherRepository cipherRepository, IEventService eventService, IPushNotificationService pushService ) { _cipherRepository = cipherRepository; _eventService = eventService; _pushService = pushService; } public async Task> UnarchiveManyAsync(IEnumerable cipherIds, Guid unarchivingUserId) { var cipherIdEnumerable = cipherIds as Guid[] ?? cipherIds.ToArray(); if (cipherIds == null || cipherIdEnumerable.Length == 0) { throw new BadRequestException("No cipher ids provided."); } var cipherIdsSet = new HashSet(cipherIdEnumerable); var ciphers = await _cipherRepository.GetManyByUserIdAsync(unarchivingUserId); var unarchivingCiphers = ciphers .Where(c => cipherIdsSet.Contains(c.Id) && c.Edit) .Select(CipherOrganizationDetails (c) => c).ToList(); var revisionDate = await _cipherRepository.UnarchiveAsync(unarchivingCiphers.Select(c => c.Id), unarchivingUserId); var events = unarchivingCiphers.Select(c => { c.RevisionDate = revisionDate; c.ArchivedDate = null; return new Tuple(c, EventType.Cipher_Unarchived, null); }); foreach (var eventsBatch in events.Chunk(100)) { await _eventService.LogCipherEventsAsync(eventsBatch); } await _pushService.PushSyncCiphersAsync(unarchivingUserId); return unarchivingCiphers; } }