From d60a0f52fdf80d1afc097686994d9b3b65e748e1 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 27 Oct 2022 10:03:35 -0400 Subject: [PATCH] fix logic in some EF cipher queries (#2366) * fix logic in some cipher queries * Update src/Infrastructure.EntityFramework/Repositories/Queries/UserCipherDetailsQuery.cs Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> * Update src/Infrastructure.EntityFramework/Repositories/Queries/UserCipherDetailsQuery.cs Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> --- .../Repositories/CipherRepository.cs | 14 +++++++++++-- .../Queries/UserCipherDetailsQuery.cs | 21 ++++++++++++++----- 2 files changed, 28 insertions(+), 7 deletions(-) diff --git a/src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs b/src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs index 01a9ce2144..1cacc78761 100644 --- a/src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs +++ b/src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs @@ -261,7 +261,7 @@ public class CipherRepository : Repository, using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); - var query = new CipherOrganizationDetailsReadByIdQuery(organizationId); + var query = new CipherOrganizationDetailsReadByOrgizationIdQuery(organizationId); var data = await query.Run(dbContext).ToListAsync(); return data; } @@ -477,6 +477,16 @@ public class CipherRepository : Repository, private async Task ToggleCipherStates(IEnumerable ids, Guid userId, CipherStateAction action) { + static bool FilterDeletedDate(CipherStateAction action, CipherDetails ucd) + { + return action switch + { + CipherStateAction.Restore => ucd.DeletedDate != null, + CipherStateAction.SoftDelete => ucd.DeletedDate == null, + _ => true, + }; + } + using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); @@ -485,7 +495,7 @@ public class CipherRepository : Repository, var query = from ucd in await (userCipherDetailsQuery.Run(dbContext)).ToListAsync() join c in cipherEntitiesToCheck on ucd.Id equals c.Id - where ucd.Edit && ucd.DeletedDate == null + where ucd.Edit && FilterDeletedDate(action, ucd) select c; var utcNow = DateTime.UtcNow; diff --git a/src/Infrastructure.EntityFramework/Repositories/Queries/UserCipherDetailsQuery.cs b/src/Infrastructure.EntityFramework/Repositories/Queries/UserCipherDetailsQuery.cs index b74060ba3d..bb7392bda2 100644 --- a/src/Infrastructure.EntityFramework/Repositories/Queries/UserCipherDetailsQuery.cs +++ b/src/Infrastructure.EntityFramework/Repositories/Queries/UserCipherDetailsQuery.cs @@ -1,6 +1,6 @@ -using Bit.Core.Enums; +using System.Text.Json; +using Bit.Core.Enums; using Core.Models.Data; -using Newtonsoft.Json.Linq; namespace Bit.Infrastructure.EntityFramework.Repositories.Queries; @@ -59,13 +59,24 @@ public class UserCipherDetailsQuery : IQuery RevisionDate = c.RevisionDate, DeletedDate = c.DeletedDate, Favorite = _userId.HasValue && c.Favorites != null && c.Favorites.Contains($"\"{_userId}\":true"), - FolderId = _userId.HasValue && !string.IsNullOrWhiteSpace(c.Folders) ? - Guid.Parse(JObject.Parse(c.Folders)[_userId.Value.ToString()].Value()) : - null, + FolderId = GetFolderId(_userId, c), Edit = true, ViewPassword = true, OrganizationUseTotp = false, }); return union; } + + private static Guid? GetFolderId(Guid? userId, Models.Cipher cipher) + { + if (userId.HasValue && !string.IsNullOrWhiteSpace(cipher.Folders)) + { + var folders = JsonSerializer.Deserialize>(cipher.Folders); + if (folders.TryGetValue(userId.Value, out var folder)) + { + return folder; + } + } + return null; + } }