- Request entity (GmailMessageId unique, ThreadId, threading headers, From*, Subject, BodyText,
ReceivedAt, Status enum-as-string New|InProgress|Assigned|Answered|Abandoned, AssignedContactId? FK,
DraftReply?, AnsweredAt?). MailSettings singleton (GmailAddress, AppPassword ENCRYPTED via Data
Protection, PollInterval, Folder, LastUid). Migration AddRequestsAndMailSettings.
- IGmailMailReader (mockable) + MailKit GmailMailReader (imap.gmail.com:993 SSL, envelope+X-GM-THRID
+body). RequestSyncService: dedup on Message-Id, track LastUid. MailKit 4.17.0.
- Endpoints: POST /api/requests/sync, GET /api/requests (Gridify, filter status), GET /api/requests/{id},
PUT triage (status+assignedContactId), GET/PUT /api/mail-settings (App Password never returned).
- Tests (in-memory DB + canned reader): sync dedup/idempotency/config-guard, HTTP sync->triage->assign,
mail-settings secrecy. + gitignore the runtime photo-storage/ dir (god housekeeping).
89 lines
4.1 KiB
C#
89 lines
4.1 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace GerbilManagerWebAPI.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddRequestsAndMailSettings : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "MailSettings",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
GmailAddress = table.Column<string>(type: "text", nullable: true),
|
|
AppPasswordProtected = table.Column<string>(type: "text", nullable: true),
|
|
PollIntervalMinutes = table.Column<int>(type: "integer", nullable: false),
|
|
Folder = table.Column<string>(type: "text", nullable: false),
|
|
BackgroundPollEnabled = table.Column<bool>(type: "boolean", nullable: false),
|
|
LastUid = table.Column<long>(type: "bigint", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_MailSettings", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Requests",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
GmailMessageId = table.Column<string>(type: "text", nullable: false),
|
|
ThreadId = table.Column<string>(type: "text", nullable: true),
|
|
InReplyToMessageId = table.Column<string>(type: "text", nullable: true),
|
|
ReferencesHeader = table.Column<string>(type: "text", nullable: true),
|
|
FromAddress = table.Column<string>(type: "text", nullable: false),
|
|
FromName = table.Column<string>(type: "text", nullable: true),
|
|
Subject = table.Column<string>(type: "text", nullable: true),
|
|
BodyText = table.Column<string>(type: "text", nullable: true),
|
|
ReceivedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false),
|
|
Status = table.Column<string>(type: "text", nullable: false),
|
|
AssignedContactId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
DraftReply = table.Column<string>(type: "text", nullable: true),
|
|
AnsweredAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Requests", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Requests_Contacts_AssignedContactId",
|
|
column: x => x.AssignedContactId,
|
|
principalTable: "Contacts",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.InsertData(
|
|
table: "MailSettings",
|
|
columns: new[] { "Id", "AppPasswordProtected", "BackgroundPollEnabled", "Folder", "GmailAddress", "LastUid", "PollIntervalMinutes" },
|
|
values: new object[] { new Guid("ab0c0000-0000-0000-0000-000000000001"), null, false, "INBOX", null, 0L, 15 });
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Requests_AssignedContactId",
|
|
table: "Requests",
|
|
column: "AssignedContactId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Requests_GmailMessageId",
|
|
table: "Requests",
|
|
column: "GmailMessageId",
|
|
unique: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "MailSettings");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Requests");
|
|
}
|
|
}
|
|
}
|