MailSharp / MailSharp.Common / Services / MailboxService.cs
Code · 298 lines · 9451 bytes
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
286
287
288
289
290
291
292
293
294
295
296
297
298using System.Text.Json;

namespace MailSharp.Common.Services;

public class MailboxService(
	IConfiguration configuration,
	ILogger<MailboxService> logger)
{
	// Builds the mailbox root path for a user.
	// Accepts "user@domain.com" → {storagePath}/domain.com/user
	// or plain "user"          → {storagePath}/user  (fallback)
	private string MailboxRoot(string username)
	{
		string storagePath = configuration["MailboxSettings:StoragePath"]
			?? throw new InvalidOperationException("MailboxSettings:StoragePath not configured");
		int at = username.IndexOf('@');
		if (at > 0 && at < username.Length - 1)
		{
			string user = username[..at];
			string domain = username[(at + 1)..];
			return Path.Combine(storagePath, domain, user);
		}
		return Path.Combine(storagePath, username);
	}

	// Retrieve list of messages for a user in a specific folder
	public async Task<List<Message>> GetMessagesAsync(string username, string folder, CancellationToken cancellationToken)
	{
		var eventIdConfig = configuration.GetSection("MailboxEventIds:MessagesRequested").Get<EventIdConfig>()
			?? throw new InvalidOperationException("Missing MailboxEventIds:MessagesRequested");
		logger.LogInformation(
			new EventId(eventIdConfig.Id, eventIdConfig.Name),
			configuration["MailboxLogMessages:MessagesRequested"],
			username, folder);

		try
		{
			string mailboxPath = Path.Combine(MailboxRoot(username), folder);
			if (!Directory.Exists(mailboxPath))
			{
				return new List<Message>();
			}

			var messages = new List<Message>();
			foreach (string file in Directory.GetFiles(mailboxPath, "*.eml"))
			{
				string messageId = Path.GetFileNameWithoutExtension(file);
				string metadataPath = Path.Combine(mailboxPath, $"{messageId}.json");
				Message message = new()
				{
					Uid = messageId,
					Flags = File.Exists(metadataPath)
						? JsonSerializer.Deserialize<MessageFlags>(await File.ReadAllTextAsync(metadataPath, cancellationToken))
						: new MessageFlags()
				};
				messages.Add(message);
			}

			return messages;
		}
		catch (Exception ex)
		{
			logger.LogError(
				new EventId(eventIdConfig.Id, eventIdConfig.Name),
				ex,
				configuration["MailboxLogMessages:MessagesRetrievalFailed"],
				username, folder);
			return new List<Message>();
		}
	}

	// Delete a message for a user in a specific folder
	public async Task<bool> DeleteMessageAsync(string username, string folder, string messageId, CancellationToken cancellationToken)
	{
		var eventIdConfig = configuration.GetSection("MailboxEventIds:MessageDeletion").Get<EventIdConfig>()
			?? throw new InvalidOperationException("Missing MailboxEventIds:MessageDeletion");
		logger.LogInformation(
			new EventId(eventIdConfig.Id, eventIdConfig.Name),
			configuration["MailboxLogMessages:MessageDeletion"],
			username, messageId, folder);

		try
		{
			string mailboxPath = Path.Combine(MailboxRoot(username), folder);
			string filePath = Path.Combine(mailboxPath, $"{messageId}.eml");
			string metadataPath = Path.Combine(mailboxPath, $"{messageId}.json");

			if (!File.Exists(filePath))
			{
				logger.LogWarning(
					new EventId(eventIdConfig.Id, eventIdConfig.Name),
					configuration["MailboxLogMessages:MessageNotFound"],
					username, messageId, folder);
				return false;
			}

			await Task.Run(() =>
			{
				File.Delete(filePath);
				if (File.Exists(metadataPath))
					File.Delete(metadataPath);
			}, cancellationToken);
			return true;
		}
		catch (Exception ex)
		{
			logger.LogError(
				new EventId(eventIdConfig.Id, eventIdConfig.Name),
				ex,
				configuration["MailboxLogMessages:MessageDeletionFailed"],
				username, messageId, folder);
			return false;
		}
	}

	// Create a new folder for a user
	public async Task<bool> CreateFolderAsync(string username, string folder, CancellationToken cancellationToken)
	{
		var eventIdConfig = configuration.GetSection("MailboxEventIds:FolderCreation").Get<EventIdConfig>()
			?? throw new InvalidOperationException("Missing MailboxEventIds:FolderCreation");
		logger.LogInformation(
			new EventId(eventIdConfig.Id, eventIdConfig.Name),
			configuration["MailboxLogMessages:FolderCreation"],
			username, folder);

		try
		{
			string mailboxPath = Path.Combine(MailboxRoot(username), folder);
			if (Directory.Exists(mailboxPath))
			{
				logger.LogWarning(
					new EventId(eventIdConfig.Id, eventIdConfig.Name),
					configuration["MailboxLogMessages:FolderExists"],
					username, folder);
				return false;
			}

			await Task.Run(() => Directory.CreateDirectory(mailboxPath), cancellationToken);
			return true;
		}
		catch (Exception ex)
		{
			logger.LogError(
				new EventId(eventIdConfig.Id, eventIdConfig.Name),
				ex,
				configuration["MailboxLogMessages:FolderCreationFailed"],
				username, folder);
			return false;
		}
	}

	// Delete a folder for a user
	public async Task<bool> DeleteFolderAsync(string username, string folder, CancellationToken cancellationToken)
	{
		var eventIdConfig = configuration.GetSection("MailboxEventIds:FolderDeletion").Get<EventIdConfig>()
			?? throw new InvalidOperationException("Missing MailboxEventIds:FolderDeletion");
		logger.LogInformation(
			new EventId(eventIdConfig.Id, eventIdConfig.Name),
			configuration["MailboxLogMessages:FolderDeletion"],
			username, folder);

		try
		{
			string mailboxPath = Path.Combine(MailboxRoot(username), folder);
			if (!Directory.Exists(mailboxPath))
			{
				logger.LogWarning(
					new EventId(eventIdConfig.Id, eventIdConfig.Name),
					configuration["MailboxLogMessages:FolderNotFound"],
					username, folder);
				return false;
			}

			await Task.Run(() => Directory.Delete(mailboxPath, true), cancellationToken);
			return true;
		}
		catch (Exception ex)
		{
			logger.LogError(
				new EventId(eventIdConfig.Id, eventIdConfig.Name),
				ex,
				configuration["MailboxLogMessages:FolderDeletionFailed"],
				username, folder);
			return false;
		}
	}

	// List folders for a user
	public async Task<List<string>> ListFoldersAsync(string username, CancellationToken cancellationToken)
	{
		var eventIdConfig = configuration.GetSection("MailboxEventIds:FolderList").Get<EventIdConfig>()
			?? throw new InvalidOperationException("Missing MailboxEventIds:FolderList");
		logger.LogInformation(
			new EventId(eventIdConfig.Id, eventIdConfig.Name),
			configuration["MailboxLogMessages:FolderList"],
			username);

		try
		{
			string mailboxPath = MailboxRoot(username);
			if (!Directory.Exists(mailboxPath))
			{
				return new List<string> { "INBOX" };
			}

			var folders = Directory.GetDirectories(mailboxPath)
				.Select(d => Path.GetFileName(d))
				.ToList();
			folders.Add("INBOX");
			return await Task.FromResult(folders);
		}
		catch (Exception ex)
		{
			logger.LogError(
				new EventId(eventIdConfig.Id, eventIdConfig.Name),
				ex,
				configuration["MailboxLogMessages:FolderListFailed"],
				username);
			return new List<string> { "INBOX" };
		}
	}

	// Set flags for a message
	public async Task<bool> SetMessageFlagsAsync(string username, string folder, string messageId, MessageFlags flags, CancellationToken cancellationToken)
	{
		var eventIdConfig = configuration.GetSection("MailboxEventIds:FlagUpdate").Get<EventIdConfig>()
			?? throw new InvalidOperationException("Missing MailboxEventIds:FlagUpdate");
		logger.LogInformation(
			new EventId(eventIdConfig.Id, eventIdConfig.Name),
			configuration["MailboxLogMessages:FlagUpdate"],
			username, messageId, folder);

		try
		{
			string mailboxPath = Path.Combine(MailboxRoot(username), folder);
			string metadataPath = Path.Combine(mailboxPath, $"{messageId}.json");

			if (!File.Exists(Path.Combine(mailboxPath, $"{messageId}.eml")))
			{
				logger.LogWarning(
					new EventId(eventIdConfig.Id, eventIdConfig.Name),
					configuration["MailboxLogMessages:MessageNotFound"],
					username, messageId, folder);
				return false;
			}

			string json = JsonSerializer.Serialize(flags);
			await File.WriteAllTextAsync(metadataPath, json, cancellationToken);
			return true;
		}
		catch (Exception ex)
		{
			logger.LogError(
				new EventId(eventIdConfig.Id, eventIdConfig.Name),
				ex,
				configuration["MailboxLogMessages:FlagUpdateFailed"],
				username, messageId, folder);
			return false;
		}
	}

	// Retrieve message content
	public async Task<string?> GetMessageContentAsync(string username, string folder, string messageId, CancellationToken cancellationToken)
	{
		var eventIdConfig = configuration.GetSection("MailboxEventIds:MessageFetch").Get<EventIdConfig>()
			?? throw new InvalidOperationException("Missing MailboxEventIds:MessageFetch");
		logger.LogInformation(
			new EventId(eventIdConfig.Id, eventIdConfig.Name),
			configuration["MailboxLogMessages:MessageFetch"],
			username, messageId, folder);

		try
		{
			string mailboxPath = Path.Combine(MailboxRoot(username), folder);
			string filePath = Path.Combine(mailboxPath, $"{messageId}.eml");

			if (!File.Exists(filePath))
			{
				logger.LogWarning(
					new EventId(eventIdConfig.Id, eventIdConfig.Name),
					configuration["MailboxLogMessages:MessageNotFound"],
					username, messageId, folder);
				return null;
			}

			return await File.ReadAllTextAsync(filePath, cancellationToken);
		}
		catch (Exception ex)
		{
			logger.LogError(
				new EventId(eventIdConfig.Id, eventIdConfig.Name),
				ex,
				configuration["MailboxLogMessages:MessageFetchFailed"],
				username, messageId, folder);
			return null;
		}
	}
}