c53d7978bb
First slice toward multi-provider email (Gmail + Microsoft Graph + IMAP + manual/free-text, per docs/remaster/PRODUCT_DIRECTION.md). Adds a provider- neutral contract (search / list-thread / get-message / get-connection) with neutral DTOs, a registry to resolve providers by key, and a GmailProvider that adapts the existing IGmailOAuthService to it. No behaviour change: the seam is registered in DI but not yet consumed. Follow-up slices migrate GmailController's read paths onto IEmailProvider (folding in the N+1 fixes) and add MicrosoftGraphProvider / ImapProvider / a manual provider. Build clean; backend suite 135/135 green. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
64 lines
2.6 KiB
C#
64 lines
2.6 KiB
C#
using JobTrackerApi.Services;
|
|
|
|
namespace JobTrackerApi.Services.EmailProviders
|
|
{
|
|
/// <summary>
|
|
/// Gmail implementation of <see cref="IEmailProvider"/>. Adapts the existing
|
|
/// <see cref="IGmailOAuthService"/> (Gmail REST client) to the provider-neutral contract,
|
|
/// mapping Gmail DTOs to the neutral shapes.
|
|
/// </summary>
|
|
public sealed class GmailProvider : IEmailProvider
|
|
{
|
|
private readonly IGmailOAuthService _gmail;
|
|
|
|
public GmailProvider(IGmailOAuthService gmail)
|
|
{
|
|
_gmail = gmail;
|
|
}
|
|
|
|
public string ProviderKey => "gmail";
|
|
|
|
public async Task<EmailConnectionInfo?> GetConnectionAsync(string ownerUserId, CancellationToken cancellationToken)
|
|
{
|
|
var connection = await _gmail.GetConnectionAsync(ownerUserId, cancellationToken);
|
|
return connection is null ? null : new EmailConnectionInfo("gmail", connection.GmailAddress ?? "");
|
|
}
|
|
|
|
public async Task<IReadOnlyList<EmailMessageSummary>> SearchAsync(string ownerUserId, string? query, int maxResults, CancellationToken cancellationToken)
|
|
{
|
|
var messages = await _gmail.ListMessagesAsync(ownerUserId, query, maxResults, cancellationToken);
|
|
return messages.Select(ToSummary).ToList();
|
|
}
|
|
|
|
public async Task<IReadOnlyList<EmailMessageSummary>> ListThreadMessagesAsync(string ownerUserId, string threadId, CancellationToken cancellationToken)
|
|
{
|
|
var messages = await _gmail.ListThreadMessagesAsync(ownerUserId, threadId, cancellationToken);
|
|
return messages.Select(ToSummary).ToList();
|
|
}
|
|
|
|
public async Task<EmailMessageDetail> GetMessageAsync(string ownerUserId, string messageId, CancellationToken cancellationToken)
|
|
{
|
|
var detail = await _gmail.GetMessageAsync(ownerUserId, messageId, cancellationToken);
|
|
var attachments = detail.Attachments
|
|
.Select(a => new EmailAttachmentRef(a.FileName, a.MimeType, a.SizeBytes, a.GmailAttachmentId, a.Inline))
|
|
.ToList();
|
|
|
|
return new EmailMessageDetail(
|
|
detail.Id,
|
|
detail.ThreadId,
|
|
detail.Subject,
|
|
detail.From,
|
|
detail.To,
|
|
detail.Date,
|
|
detail.Snippet,
|
|
detail.BodyText,
|
|
detail.BodyHtml,
|
|
detail.Labels,
|
|
attachments);
|
|
}
|
|
|
|
private static EmailMessageSummary ToSummary(GmailMessageSummary m)
|
|
=> new(m.Id, m.ThreadId, m.Subject, m.From, m.To, m.Date, m.Snippet);
|
|
}
|
|
}
|