-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPostgresUserRepository.cs
More file actions
285 lines (252 loc) · 9.69 KB
/
Copy pathPostgresUserRepository.cs
File metadata and controls
285 lines (252 loc) · 9.69 KB
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
using Microsoft.AspNetCore.Identity;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Stickerlandia.UserManagement.Core.Observability;
using Stickerlandia.UserManagement.Core;
using Stickerlandia.UserManagement.Core.Outbox;
namespace Stickerlandia.UserManagement.Agnostic;
public class PostgresUserRepository(
UserManagementDbContext dbContext,
ILogger<PostgresUserRepository> logger,
UserManager<PostgresUserAccount> userManager)
: IUsers, IOutbox
{
public async Task<UserAccount> Add(UserAccount userAccount)
{
try
{
ArgumentNullException.ThrowIfNull(userAccount, nameof(userAccount));
// Check if user already exists
if (await userManager.FindByEmailAsync(userAccount.EmailAddress) is not null)
throw new UserExistsException();
using var transaction = await dbContext.Database.BeginTransactionAsync();
try
{
// Create user entity
var userEntity = new PostgresUserAccount
{
Id = userAccount.Id!.Value,
UserName = userAccount.EmailAddress,
Email = userAccount.EmailAddress,
FirstName = userAccount.FirstName,
LastName = userAccount.LastName,
ClaimedStickerCount = userAccount.ClaimedStickerCount,
DateCreated = userAccount.DateCreated,
AccountTier = userAccount.AccountTier,
AccountType = userAccount.AccountType
};
dbContext.Users.Add(userEntity);
// Create outbox items for domain events
foreach (var evt in userAccount.DomainEvents)
{
var outboxItem = new PostgresOutboxItem
{
Id = Guid.NewGuid().ToString(),
EventType = evt.EventName,
EventData = evt.ToJsonString(),
EmailAddress = userAccount.EmailAddress,
EventTime = DateTime.UtcNow,
Processed = false,
Failed = false
};
await dbContext.OutboxItems.AddAsync(outboxItem);
}
var result = await userManager.CreateAsync(userEntity, userAccount.Password);
if (!result.Succeeded)
{
throw new DatabaseFailureException("Failure creating user in database");
}
await dbContext.SaveChangesAsync();
await transaction.CommitAsync();
return userAccount;
}
catch (Exception ex)
{
Log.UnknownException(logger, ex);
await transaction.RollbackAsync();
throw new DatabaseFailureException("Failed to create account", ex);
}
}
catch (DbUpdateException ex)
{
Log.UnknownException(logger, ex);
throw new DatabaseFailureException("Failed to create account", ex);
}
catch (UserExistsException)
{
throw;
}
catch (Exception ex)
{
Log.UnknownException(logger, ex);
throw new DatabaseFailureException("Failed to create account", ex);
}
}
public async Task UpdateAccount(UserAccount userAccount)
{
try
{
ArgumentNullException.ThrowIfNull(userAccount, nameof(userAccount));
using var transaction = await dbContext.Database.BeginTransactionAsync();
try
{
// Find existing user
var existingUser = await dbContext.Users.FindAsync(userAccount.Id!.Value);
if (existingUser == null) throw new DatabaseFailureException("User account not found");
// Update properties
existingUser.Email = userAccount.EmailAddress;
existingUser.FirstName = userAccount.FirstName;
existingUser.LastName = userAccount.LastName;
existingUser.ClaimedStickerCount = userAccount.ClaimedStickerCount;
existingUser.DateCreated = userAccount.DateCreated;
existingUser.AccountTier = userAccount.AccountTier;
existingUser.AccountType = userAccount.AccountType;
dbContext.Users.Update(existingUser);
// Create outbox items for domain events
foreach (var evt in userAccount.DomainEvents)
{
await this.StoreEventFor(userAccount.Id.Value, evt);
}
await dbContext.SaveChangesAsync();
await transaction.CommitAsync();
}
catch (Exception)
{
await transaction.RollbackAsync();
throw;
}
}
catch (DbUpdateException ex)
{
Log.UnknownException(logger, ex);
throw new DatabaseFailureException("Failed to update account", ex);
}
catch (DatabaseFailureException)
{
throw;
}
catch (Exception ex)
{
Log.UnknownException(logger, ex);
throw new DatabaseFailureException("Failed to update account", ex);
}
}
public async Task<UserAccount?> WithIdAsync(AccountId accountId)
{
try
{
var user = await dbContext.Users.FirstOrDefaultAsync(u => u.Id == accountId.Value);
if (user == null) return null;
return UserAccount.From(
new AccountId(user.Id),
user.Email ?? "",
user.FirstName,
user.LastName,
user.ClaimedStickerCount,
user.DateCreated,
user.AccountTier,
user.AccountType);
}
catch (Exception ex)
{
Log.UnknownException(logger, ex);
throw new DatabaseFailureException("Error retrieving user by ID", ex);
}
}
public async Task<UserAccount?> WithEmailAsync(string emailAddress)
{
try
{
var user = await dbContext.Users.FirstOrDefaultAsync(u => u.Email == emailAddress);
if (user == null) return null;
return UserAccount.From(
new AccountId(user.Id),
user.Email ?? "",
user.FirstName,
user.LastName,
user.ClaimedStickerCount,
user.DateCreated,
user.AccountTier,
user.AccountType);
}
catch (Exception ex)
{
Log.UnknownException(logger, ex);
throw new DatabaseFailureException("Error retrieving user by email", ex);
}
}
public async Task<bool> DoesEmailExistAsync(string emailAddress)
{
try
{
return await dbContext.Users.AnyAsync(u => u.Email == emailAddress);
}
catch (Exception ex)
{
Log.UnknownException(logger, ex);
throw new DatabaseFailureException("Error retrieving user by ID", ex);
}
}
public async Task StoreEventFor(string accountId, DomainEvent domainEvent)
{
ArgumentException.ThrowIfNullOrEmpty(accountId, nameof(accountId));
ArgumentNullException.ThrowIfNull(domainEvent, nameof(domainEvent));
var outboxItem = new PostgresOutboxItem
{
Id = Guid.NewGuid().ToString(),
EventType = domainEvent.EventName,
EventData = domainEvent.ToJsonString(),
EmailAddress = accountId,
EventTime = DateTime.UtcNow,
Processed = false,
Failed = false
};
await dbContext.OutboxItems.AddAsync(outboxItem);
}
public async Task<List<OutboxItem>> GetUnprocessedItemsAsync(int maxCount = 100)
{
try
{
var items = await dbContext.OutboxItems
.Where(o => o.Processed == false && o.Failed == false)
.Take(maxCount)
.ToListAsync();
return items.Select(item => new OutboxItem
{
ItemId = item.Id,
EmailAddress = item.EmailAddress,
EventType = item.EventType,
EventData = item.EventData,
EventTime = item.EventTime,
Processed = item.Processed,
Failed = item.Failed,
FailureReason = item.FailureReason,
TraceId = item.TraceId
}).ToList();
}
catch (Exception ex)
{
Log.UnknownException(logger, ex);
throw new DatabaseFailureException("Error retrieving unprocessed outbox items", ex);
}
}
public async Task UpdateOutboxItem(OutboxItem outboxItem)
{
try
{
ArgumentNullException.ThrowIfNull(outboxItem, nameof(outboxItem));
var item = await dbContext.OutboxItems.FindAsync(outboxItem.ItemId);
if (item == null) throw new DatabaseFailureException($"Outbox item with ID {outboxItem.ItemId} not found");
item.Processed = outboxItem.Processed;
item.Failed = outboxItem.Failed;
item.FailureReason = outboxItem.FailureReason;
item.TraceId = outboxItem.TraceId;
dbContext.OutboxItems.Update(item);
await dbContext.SaveChangesAsync();
}
catch (Exception ex)
{
throw new DatabaseFailureException($"Failed to update outbox item with ID {outboxItem?.ItemId}", ex);
}
}
}