fix: change upload name

This commit is contained in:
2026-09-15 22:23:54 +07:00
parent 4078bf01f4
commit 637ca51f47
11 changed files with 62 additions and 46 deletions
@@ -56,11 +56,10 @@ public class CreateDocumentHandler(IUnitOfWork uow, IMapper mapper, IDocumentCon
if (request.Type == DocumentType.Document && !string.IsNullOrEmpty(request.Content))
{
await contentStore.EnsureBucketAsync(doc.ProjectId, ct);
var bytes = Encoding.UTF8.GetBytes(request.Content);
using (var ms = new MemoryStream(bytes))
{
await contentStore.UploadAsync(doc.ProjectId, doc.Id, "text/html; charset=utf-8", ms, ct);
doc.StorageKey = await contentStore.UploadAsync(doc.ProjectId, doc.Title, "text/html; charset=utf-8", ms, ct);
}
doc.ContentSize = bytes.Length;
@@ -14,29 +14,35 @@ public class DeleteDocumentHandler(IUnitOfWork uow, IDocumentContentStore conten
var doc = await DocumentAccess.GetDocumentForUserAsync(uow, command.UserId, command.DocumentId, ct);
await DocumentAccess.EnsureDocumentPermissionAsync(uow, command.UserId, doc.ProjectId, PermissionAction.Delete, ct);
var allIds = new List<(Guid ProjectId, Guid DocumentId)>();
await CollectDescendants(uow, command.DocumentId, doc.ProjectId, allIds, ct);
allIds.Add((doc.ProjectId, doc.Id));
var keys = new List<string>();
await CollectDescendants(uow, command.DocumentId, keys, ct);
if (!string.IsNullOrEmpty(doc.StorageKey))
{
keys.Add(doc.StorageKey);
}
await DocumentAccess.DeleteDescendantsAsync(uow, command.DocumentId, ct);
uow.Documents.Remove(doc);
await uow.SaveChangesAsync(ct);
foreach (var (projectId, documentId) in allIds)
foreach (var key in keys)
{
await contentStore.DeleteAsync(projectId, documentId, ct);
await contentStore.DeleteAsync(key, ct);
}
}
private static async Task CollectDescendants(
IUnitOfWork uow, Guid parentId, Guid projectId,
List<(Guid ProjectId, Guid DocumentId)> ids, CancellationToken ct)
IUnitOfWork uow, Guid parentId,
List<string> keys, CancellationToken ct)
{
var children = await uow.Documents.GetChildrenAsync(parentId, ct);
foreach (var child in children)
{
ids.Add((projectId, child.Id));
await CollectDescendants(uow, child.Id, projectId, ids, ct);
if (!string.IsNullOrEmpty(child.StorageKey))
{
keys.Add(child.StorageKey);
}
await CollectDescendants(uow, child.Id, keys, ct);
}
}
}
@@ -31,11 +31,16 @@ public class UpdateDocumentHandler(IUnitOfWork uow, IMapper mapper, IDocumentCon
if (doc.Type == DocumentType.Document)
{
await contentStore.EnsureBucketAsync(doc.ProjectId, ct);
var previousKey = doc.StorageKey;
var bytes = Encoding.UTF8.GetBytes(request.Content ?? "");
using (var ms = new MemoryStream(bytes))
{
await contentStore.UploadAsync(doc.ProjectId, doc.Id, "text/html; charset=utf-8", ms, ct);
doc.StorageKey = await contentStore.UploadAsync(doc.ProjectId, doc.Title, "text/html; charset=utf-8", ms, ct);
}
if (!string.IsNullOrEmpty(previousKey) && previousKey != doc.StorageKey)
{
await contentStore.DeleteAsync(previousKey, ct);
}
doc.ContentSize = bytes.Length;