-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDocumentService.cs
209 lines (158 loc) · 8.16 KB
/
DocumentService.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
using DocuTest.Application.Interfaces;
using DocuTest.Data.Main.DAL.Interfaces;
using DocuTest.Shared.Models;
using System.Data;
namespace DocuTest.Application.Services
{
public class DocumentService : IDocumentService
{
private readonly IDocumentReadStrategy documentReadStrategy;
private readonly IDocumentWriteStrategy documentWriteStrategy;
private readonly IDocumentRepository documentRepository;
private readonly IFileRepository fileRepository;
private readonly IMetadataRepository metadataRepository;
private readonly IDbConnectionFactory connectionFactory;
public DocumentService(
IDocumentReadStrategy documentReadStrategy,
IDocumentWriteStrategy documentWriteStrategy,
IDocumentRepository documentRepository,
IFileRepository fileRepository,
IMetadataRepository metadataRepository,
IDbConnectionFactory connectionFactory)
{
this.documentReadStrategy = documentReadStrategy;
this.documentWriteStrategy = documentWriteStrategy;
this.documentRepository = documentRepository;
this.fileRepository = fileRepository;
this.metadataRepository = metadataRepository;
this.connectionFactory = connectionFactory;
}
public async Task<Document> Get(Guid documentId, CancellationToken ct)
{
using IDbConnection connection = this.connectionFactory.Create();
connection.Open();
Document document = await this.documentRepository.Get(connection, documentId, this.documentReadStrategy, ct);
if (document == null)
throw new ArgumentException($"Document with id {documentId} not found.");
return document;
}
public async Task<IEnumerable<Document>> Get(IEnumerable<Guid> documentIds, CancellationToken ct)
{
using IDbConnection connection = this.connectionFactory.Create();
connection.Open();
IEnumerable<Document> documents = await this.documentRepository.Get(connection, documentIds, this.documentReadStrategy, ct);
IEnumerable<Shared.Models.File> files = await this.fileRepository.Get(connection, documentIds, ct);
IEnumerable<Guid> fileIds = files.Select(f => f.Id);
IEnumerable<Metadata> metadata = await this.metadataRepository.Get(connection, fileIds, ct);
foreach (Shared.Models.File file in files)
file.Metadata = metadata.Where(m => m.FileId == file.Id);
foreach (Document document in documents)
document.Files = files.Where(f => f.DocumentId == document.Id);
return documents;
}
public async Task<IEnumerable<Document>> GetByMetadata(string key, string value, CancellationToken ct)
{
using IDbConnection connection = this.connectionFactory.Create();
connection.Open();
IEnumerable<Guid> fileIds = await this.metadataRepository.GetFileIds(connection, key, value, ct);
IEnumerable<Guid> documentIds = await this.fileRepository.GetDocumentIds(connection, fileIds, ct);
return await this.Get(documentIds, ct);
}
public async Task<Guid> Insert(Document document, CancellationToken ct)
{
using IDbConnection connection = this.connectionFactory.Create();
connection.Open();
IDbTransaction transaction = connection.BeginTransaction();
try
{
Guid documentId = await this.documentRepository.Insert(transaction, document, this.documentWriteStrategy, ct);
foreach (Shared.Models.File file in document.Files)
{
file.DocumentId = documentId;
Guid fileId = await this.fileRepository.Insert(transaction, file, ct);
foreach (Metadata metadata in file.Metadata)
metadata.FileId = fileId;
await this.metadataRepository.Insert(transaction, file.Metadata, ct);
}
transaction.Commit();
return documentId;
}
catch (Exception)
{
transaction.Rollback();
throw;
}
}
public async Task Update(Document document, CancellationToken ct)
{
using IDbConnection connection = this.connectionFactory.Create();
connection.Open();
Document existingDocument = await this.Get(document.Id, ct);
IDbTransaction transaction = connection.BeginTransaction();
try
{
await this.documentRepository.Update(transaction, document, this.documentWriteStrategy, ct);
await InsertFiles(document, existingDocument, transaction, ct);
await UpdateFiles(document, existingDocument, transaction, ct);
await DeleteFiles(document, existingDocument, transaction, ct);
transaction.Commit();
}
catch (Exception)
{
transaction.Rollback();
throw;
}
}
public async Task Delete(Guid documentId, CancellationToken ct)
{
using IDbConnection connection = this.connectionFactory.Create();
connection.Open();
IEnumerable<Guid> fileIds = await this.fileRepository.GetFileIds(connection, documentId, ct);
IDbTransaction transaction = connection.BeginTransaction();
try
{
await this.metadataRepository.Delete(transaction, fileIds, ct);
await this.fileRepository.Delete(transaction, fileIds, ct);
await this.documentRepository.Delete(transaction, documentId, this.documentWriteStrategy, ct);
transaction.Commit();
}
catch (Exception)
{
transaction.Rollback();
throw;
}
}
private async Task InsertFiles(Document document, Document existingDocument, IDbTransaction transaction, CancellationToken ct)
{
IEnumerable<Shared.Models.File> filesToInsert = document.Files.Where(newFile => !existingDocument.Files.Any(existing => existing.Id == newFile.Id));
foreach (Shared.Models.File file in filesToInsert)
{
file.DocumentId = document.Id;
Guid fileId = await this.fileRepository.Insert(transaction, file, ct);
await this.metadataRepository.Insert(transaction, file.Metadata, ct);
}
}
private async Task UpdateFiles(Document document, Document existingDocument, IDbTransaction transaction, CancellationToken ct)
{
IEnumerable<Shared.Models.File> filesToUpdate = document.Files.Where(newFile => existingDocument.Files.Any(existing => existing.Id == newFile.Id));
foreach (Shared.Models.File file in filesToUpdate)
{
await this.fileRepository.Update(transaction, file, ct);
//An arguably more efficient way to do this could be to compare the metadata and only update the records that have actually changed.
//I decided agains this, since we currently don't have audit fields and we also have a composite primary key,
//so we have no actual loss of data, but we would introduce quite a bit of complexity.
await this.metadataRepository.Delete(transaction, file.Id, ct);
await this.metadataRepository.Insert(transaction, file.Metadata, ct);
}
}
private async Task DeleteFiles(Document document, Document existingDocument, IDbTransaction transaction, CancellationToken ct)
{
IEnumerable<Guid> fileIdsToDelete = existingDocument.Files.Select(f => f.Id).Except(document.Files.Select(f => f.Id));
foreach (Guid fileId in fileIdsToDelete)
{
await this.metadataRepository.Delete(transaction, fileId, ct);
await this.fileRepository.Delete(transaction, fileId, ct);
}
}
}
}