Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
48322f38cb |
@@ -1,206 +0,0 @@
|
|||||||
# Email Sync Architecture
|
|
||||||
|
|
||||||
This document describes the full lifecycle of an email action — from the moment the user taps
|
|
||||||
a button to server confirmation — covering the IMAP IDLE loop, JMAP push/poll, the pending-change
|
|
||||||
queue, exponential backoff, and the undo/cancel mechanism.
|
|
||||||
|
|
||||||
For the database schema and protocol-level implementation details see [DB-SYNC.md](DB-SYNC.md).
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 1. Components
|
|
||||||
|
|
||||||
| Component | File | Role |
|
|
||||||
|-----------|------|------|
|
|
||||||
| `AccountSyncManager` | `lib/core/sync/account_sync_manager.dart` | Owns one `_SyncLoop` per account; starts, stops, and wakes sync loops |
|
|
||||||
| `_AccountSync` | same file | IMAP sync loop (IDLE + incremental fetch) |
|
|
||||||
| `_JmapAccountSync` | same file | JMAP sync loop (SSE push + poll fallback) |
|
|
||||||
| `EmailRepositoryImpl` | `lib/data/repositories/email_repository_impl.dart` | All DB reads/writes and network calls |
|
|
||||||
| `pending_changes` table | `lib/data/db/database.dart` | Protocol-agnostic outbound mutation queue |
|
|
||||||
| `UndoService` | `lib/core/services/undo_service.dart` | Persisted undo history; cancel-or-reverse logic |
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 2. Lifecycle of an email mutation (e.g. "Mark as read")
|
|
||||||
|
|
||||||
```
|
|
||||||
User taps "Mark as read"
|
|
||||||
│
|
|
||||||
▼
|
|
||||||
EmailRepository.setFlag(id, seen: true)
|
|
||||||
│
|
|
||||||
├─ 1. Write optimistic update to local DB
|
|
||||||
│ emails.is_seen = true
|
|
||||||
│
|
|
||||||
└─ 2. Insert row into pending_changes
|
|
||||||
{ type: 'flag_seen', email_id: id, payload: {seen: true} }
|
|
||||||
(IMAP: includes uid + mailboxPath for the STORE command)
|
|
||||||
(JMAP: includes just the flag map for Email/set)
|
|
||||||
|
|
||||||
[UI immediately reflects the change via Drift's reactive streams]
|
|
||||||
|
|
||||||
│
|
|
||||||
▼ (next sync cycle, triggered by IMAP IDLE / JMAP push / wakeUp)
|
|
||||||
_SyncLoop._flush() / flushPendingChanges()
|
|
||||||
│
|
|
||||||
├─ IMAP: open connection → STORE uid +FLAGS (\Seen) → close
|
|
||||||
│
|
|
||||||
└─ JMAP: Email/set { update: { id: { keywords: { "$seen": true } } } }
|
|
||||||
If stateMismatch → clear checkpoint → full re-sync
|
|
||||||
|
|
||||||
│
|
|
||||||
▼
|
|
||||||
pending_changes row deleted on success
|
|
||||||
(on permanent error: retry count incremented; evicted after 5 failures)
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 3. IMAP sync loop
|
|
||||||
|
|
||||||
The IMAP loop runs one coroutine per account (`_AccountSync`):
|
|
||||||
|
|
||||||
```
|
|
||||||
start()
|
|
||||||
│
|
|
||||||
▼
|
|
||||||
[forever loop]
|
|
||||||
├─ flushPendingChanges() ← drain outbound queue first
|
|
||||||
├─ syncMailboxes() ← detect new/removed mailboxes
|
|
||||||
├─ for each mailbox:
|
|
||||||
│ syncEmails() ← incremental: fetch only UIDs > lastUid
|
|
||||||
│ deletion reconciliation: remove rows
|
|
||||||
│ whose UID is absent from the server
|
|
||||||
└─ _idle() ← IMAP IDLE for up to 25 min (RFC 2177)
|
|
||||||
│ Wakes on: server EXISTS/EXPUNGE/FLAGS
|
|
||||||
│ or syncNow() signal from UI
|
|
||||||
└─ repeat
|
|
||||||
```
|
|
||||||
|
|
||||||
**Incremental sync checkpoint** — `sync_state` table stores `(accountId, mailbox, lastUid, uidValidity)`.
|
|
||||||
On each run, only UIDs greater than `lastUid` are fetched. If `uidValidity` changes the full
|
|
||||||
folder is re-scanned and the checkpoint is reset.
|
|
||||||
|
|
||||||
**IDLE cap** — IDLE sessions are limited to 25 minutes per the RFC. The loop also wakes
|
|
||||||
immediately if `syncNow()` is called (e.g. user pulls-to-refresh).
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 4. JMAP sync loop
|
|
||||||
|
|
||||||
The JMAP loop (`_JmapAccountSync`) follows a similar structure but uses HTTP:
|
|
||||||
|
|
||||||
```
|
|
||||||
start()
|
|
||||||
│
|
|
||||||
▼
|
|
||||||
[forever loop]
|
|
||||||
├─ flushPendingChanges() ← Email/set for queued mutations
|
|
||||||
├─ syncMailboxes() ← Mailbox/get or Mailbox/changes
|
|
||||||
├─ for each mailbox:
|
|
||||||
│ syncEmails() ← Email/query + Email/get (first run)
|
|
||||||
│ Email/changes (subsequent runs, state token)
|
|
||||||
└─ _wait()
|
|
||||||
├─ If server advertises eventSourceUrl: subscribe to SSE push
|
|
||||||
│ wake on "Email" change event
|
|
||||||
└─ Otherwise: sleep 30 s (poll fallback)
|
|
||||||
```
|
|
||||||
|
|
||||||
**State tokens** — each `Mailbox/changes` / `Email/changes` call uses the server-provided
|
|
||||||
`state` token stored in `sync_state`. A `stateMismatch` error clears the token and triggers
|
|
||||||
a full re-fetch.
|
|
||||||
|
|
||||||
**JMAP send** — outgoing mail uses `EmailSubmission/set` when the server advertises the
|
|
||||||
`urn:ietf:params:jmap:submission` capability; falls back to SMTP otherwise.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 5. Exponential backoff
|
|
||||||
|
|
||||||
Both loops share the same backoff policy:
|
|
||||||
|
|
||||||
| Outcome | Backoff |
|
|
||||||
|---------|---------|
|
|
||||||
| Sync succeeded | Reset to 5 s |
|
|
||||||
| Network / server error | Double previous backoff, capped at 900 s (15 min) |
|
|
||||||
|
|
||||||
The backoff counter (`_backoffSeconds`) is per-account and per-process; it resets to 5 s
|
|
||||||
on the next successful cycle.
|
|
||||||
|
|
||||||
The last error message is written to `sync_log` and surfaced in the UI via
|
|
||||||
`syncLastErrorProvider` (the red `MaterialBanner` in the email list).
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 6. Pending-change queue
|
|
||||||
|
|
||||||
`pending_changes` is a protocol-agnostic table that stores every outbound mutation before it
|
|
||||||
reaches the server:
|
|
||||||
|
|
||||||
| Column | Description |
|
|
||||||
|--------|-------------|
|
|
||||||
| `id` | Auto-increment primary key |
|
|
||||||
| `email_id` | The email being mutated |
|
|
||||||
| `type` | `flag_seen`, `flag_flagged`, `move`, `delete`, `snooze` |
|
|
||||||
| `payload` | JSON-encoded protocol-specific arguments |
|
|
||||||
| `retry_count` | Incremented on each failed flush attempt |
|
|
||||||
| `created_at` | For ordering and debug |
|
|
||||||
|
|
||||||
**Optimistic UI** — every mutation writes the local change first, then inserts into
|
|
||||||
`pending_changes`. The Drift reactive stream delivers the update to the UI before
|
|
||||||
the network round-trip completes.
|
|
||||||
|
|
||||||
**Conflict resolution** — the server always wins. On the next sync cycle the server's
|
|
||||||
state overwrites local rows. Outbound mutations are retried up to 5 times; after that
|
|
||||||
they are evicted and a `FailedMutation` record is created. Permanent per-item JMAP
|
|
||||||
errors (`notFound`, `forbidden`) skip the retry counter and evict immediately.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 7. Undo and cancel
|
|
||||||
|
|
||||||
When the user triggers an undoable action the UI calls:
|
|
||||||
```
|
|
||||||
ref.read(undoServiceProvider.notifier).pushAction(UndoAction(...))
|
|
||||||
```
|
|
||||||
|
|
||||||
`UndoService` persists the action to the `undo_actions` table (max 10 entries, FIFO).
|
|
||||||
A `SnackBar` with an **Undo** button appears for a few seconds.
|
|
||||||
|
|
||||||
When the user taps Undo, `UndoService.undo()` executes this sequence for each affected email:
|
|
||||||
|
|
||||||
```
|
|
||||||
1. cancelPendingChange(id, originalType)
|
|
||||||
└─ Deletes the pending_changes row if it has not been flushed yet.
|
|
||||||
Returns true if cancelled, false if the server already processed it.
|
|
||||||
|
|
||||||
2. If the email row was hard-deleted (DELETE action):
|
|
||||||
restoreEmails([original])
|
|
||||||
└─ Re-inserts the row with its pre-deletion state,
|
|
||||||
placed in the correct mailbox (source if cancelled, dest otherwise).
|
|
||||||
|
|
||||||
3. moveEmail(id, sourceMailboxPath)
|
|
||||||
└─ Optimistic local move back to the original folder.
|
|
||||||
If step 1 returned false (already sent to server), this enqueues
|
|
||||||
a reverse-move in pending_changes so the server move is undone too.
|
|
||||||
|
|
||||||
4. If step 1 returned true (cancelled before flush):
|
|
||||||
cancelPendingChange(id, 'move')
|
|
||||||
└─ The reverse-move from step 3 is redundant; remove it.
|
|
||||||
```
|
|
||||||
|
|
||||||
The net result is: if the mutation was still in the queue it is silently cancelled with no
|
|
||||||
server round-trip; if it had already been flushed, a compensating move is queued.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 8. Key invariants
|
|
||||||
|
|
||||||
- **Order**: pending changes are flushed before syncing. This prevents the server from
|
|
||||||
overwriting an optimistic local state that the server hasn't seen yet.
|
|
||||||
- **Idempotency**: `flushPendingChanges` is safe to call multiple times. Each row is
|
|
||||||
deleted only after the server acknowledges the change.
|
|
||||||
- **No silent data loss**: permanent server errors surface as `FailedMutation` records
|
|
||||||
visible in the UI (Settings → Failed mutations).
|
|
||||||
- **UI layer isolation**: `lib/ui/` never imports `lib/data/`; all interaction goes
|
|
||||||
through `core/` interfaces. The `check-layers` Taskfile task enforces this.
|
|
||||||
@@ -27,7 +27,6 @@ abstract class EmailRepository {
|
|||||||
Future<EmailBody> getEmailBody(String emailId);
|
Future<EmailBody> getEmailBody(String emailId);
|
||||||
Future<SyncEmailsResult> syncEmails(String accountId, String mailboxPath);
|
Future<SyncEmailsResult> syncEmails(String accountId, String mailboxPath);
|
||||||
Future<void> setFlag(String emailId, {bool? seen, bool? flagged});
|
Future<void> setFlag(String emailId, {bool? seen, bool? flagged});
|
||||||
Future<void> markAllAsRead(String accountId, String mailboxPath);
|
|
||||||
Future<void> moveEmail(String emailId, String destMailboxPath);
|
Future<void> moveEmail(String emailId, String destMailboxPath);
|
||||||
|
|
||||||
/// Deletes the email. Returns the path of the mailbox it was moved to
|
/// Deletes the email. Returns the path of the mailbox it was moved to
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
abstract interface class SearchHistoryRepository {
|
|
||||||
Future<List<String>> getRecentSearches();
|
|
||||||
Future<void> saveSearch(String query);
|
|
||||||
Future<void> clearHistory();
|
|
||||||
}
|
|
||||||
@@ -234,13 +234,6 @@ class Drafts extends Table {
|
|||||||
TextColumn get imapServerId => text().nullable()();
|
TextColumn get imapServerId => text().nullable()();
|
||||||
}
|
}
|
||||||
|
|
||||||
@DataClassName('SearchHistoryRow')
|
|
||||||
class SearchHistoryEntries extends Table {
|
|
||||||
IntColumn get id => integer().autoIncrement()();
|
|
||||||
TextColumn get query => text()();
|
|
||||||
DateTimeColumn get searchedAt => dateTime()();
|
|
||||||
}
|
|
||||||
|
|
||||||
@DataClassName('UndoActionRow')
|
@DataClassName('UndoActionRow')
|
||||||
class UndoActions extends Table {
|
class UndoActions extends Table {
|
||||||
TextColumn get id => text()();
|
TextColumn get id => text()();
|
||||||
@@ -270,14 +263,13 @@ class UndoActions extends Table {
|
|||||||
SyncLogMailboxes,
|
SyncLogMailboxes,
|
||||||
SyncHealth,
|
SyncHealth,
|
||||||
UndoActions,
|
UndoActions,
|
||||||
SearchHistoryEntries,
|
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
class AppDatabase extends _$AppDatabase {
|
class AppDatabase extends _$AppDatabase {
|
||||||
AppDatabase([QueryExecutor? executor]) : super(executor ?? _openConnection());
|
AppDatabase([QueryExecutor? executor]) : super(executor ?? _openConnection());
|
||||||
|
|
||||||
@override
|
@override
|
||||||
int get schemaVersion => 27;
|
int get schemaVersion => 26;
|
||||||
|
|
||||||
Future<void> _createEmailFts() async {
|
Future<void> _createEmailFts() async {
|
||||||
await customStatement('''
|
await customStatement('''
|
||||||
@@ -500,9 +492,6 @@ class AppDatabase extends _$AppDatabase {
|
|||||||
SELECT rowid, subject, preview, from_json FROM emails
|
SELECT rowid, subject, preview, from_json FROM emails
|
||||||
''');
|
''');
|
||||||
}
|
}
|
||||||
if (from < 27) {
|
|
||||||
await m.createTable(searchHistoryEntries);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1520,63 +1520,6 @@ class EmailRepositoryImpl implements EmailRepository {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
|
||||||
Future<void> markAllAsRead(String accountId, String mailboxPath) async {
|
|
||||||
final account = (await _accounts.getAccount(accountId))!;
|
|
||||||
final unread = await (_db.select(_db.emails)
|
|
||||||
..where(
|
|
||||||
(t) =>
|
|
||||||
t.accountId.equals(accountId) &
|
|
||||||
t.mailboxPath.equals(mailboxPath) &
|
|
||||||
t.isSeen.equals(false),
|
|
||||||
))
|
|
||||||
.get();
|
|
||||||
if (unread.isEmpty) return;
|
|
||||||
|
|
||||||
await _db.transaction(() async {
|
|
||||||
for (final row in unread) {
|
|
||||||
if (account.type == account_model.AccountType.jmap) {
|
|
||||||
await _enqueueChange(
|
|
||||||
accountId,
|
|
||||||
row.id,
|
|
||||||
'flag_seen',
|
|
||||||
jsonEncode({'seen': true}),
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
await _enqueueChange(
|
|
||||||
accountId,
|
|
||||||
row.id,
|
|
||||||
'flag_seen',
|
|
||||||
jsonEncode({
|
|
||||||
'uid': row.uid,
|
|
||||||
'mailboxPath': row.mailboxPath,
|
|
||||||
'seen': true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Bulk mark all unread emails in this mailbox as seen.
|
|
||||||
await (_db.update(_db.emails)
|
|
||||||
..where(
|
|
||||||
(t) =>
|
|
||||||
t.accountId.equals(accountId) &
|
|
||||||
t.mailboxPath.equals(mailboxPath) &
|
|
||||||
t.isSeen.equals(false),
|
|
||||||
))
|
|
||||||
.write(const EmailsCompanion(isSeen: Value(true)));
|
|
||||||
|
|
||||||
// Update all threads in this mailbox to reflect no unread.
|
|
||||||
await (_db.update(_db.threads)
|
|
||||||
..where(
|
|
||||||
(t) =>
|
|
||||||
t.accountId.equals(accountId) &
|
|
||||||
t.mailboxPath.equals(mailboxPath),
|
|
||||||
))
|
|
||||||
.write(const ThreadsCompanion(hasUnread: Value(false)));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<void> moveEmail(String emailId, String destMailboxPath) async {
|
Future<void> moveEmail(String emailId, String destMailboxPath) async {
|
||||||
final row = await (_db.select(
|
final row = await (_db.select(
|
||||||
|
|||||||
@@ -1,57 +0,0 @@
|
|||||||
import 'package:drift/drift.dart';
|
|
||||||
import 'package:sharedinbox/core/repositories/search_history_repository.dart';
|
|
||||||
import 'package:sharedinbox/data/db/database.dart';
|
|
||||||
|
|
||||||
class SearchHistoryRepositoryImpl implements SearchHistoryRepository {
|
|
||||||
SearchHistoryRepositoryImpl(this._db);
|
|
||||||
final AppDatabase _db;
|
|
||||||
|
|
||||||
static const _maxEntries = 10;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Future<List<String>> getRecentSearches() async {
|
|
||||||
final rows = await (_db.select(_db.searchHistoryEntries)
|
|
||||||
..orderBy([(t) => OrderingTerm.desc(t.searchedAt)])
|
|
||||||
..limit(_maxEntries))
|
|
||||||
.get();
|
|
||||||
return rows.map((r) => r.query).toList();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Future<void> saveSearch(String query) async {
|
|
||||||
final trimmed = query.trim();
|
|
||||||
if (trimmed.isEmpty) return;
|
|
||||||
|
|
||||||
await _db.transaction(() async {
|
|
||||||
// Remove existing entry for same query (deduplication).
|
|
||||||
await (_db.delete(_db.searchHistoryEntries)
|
|
||||||
..where((t) => t.query.equals(trimmed)))
|
|
||||||
.go();
|
|
||||||
|
|
||||||
await _db.into(_db.searchHistoryEntries).insert(
|
|
||||||
SearchHistoryEntriesCompanion.insert(
|
|
||||||
query: trimmed,
|
|
||||||
searchedAt: DateTime.now(),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Prune to the most recent _maxEntries.
|
|
||||||
final keepIds = await (_db.select(_db.searchHistoryEntries)
|
|
||||||
..orderBy([(t) => OrderingTerm.desc(t.searchedAt)])
|
|
||||||
..limit(_maxEntries))
|
|
||||||
.map((r) => r.id)
|
|
||||||
.get();
|
|
||||||
|
|
||||||
if (keepIds.isNotEmpty) {
|
|
||||||
await (_db.delete(_db.searchHistoryEntries)
|
|
||||||
..where((t) => t.id.isNotIn(keepIds)))
|
|
||||||
.go();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Future<void> clearHistory() async {
|
|
||||||
await _db.delete(_db.searchHistoryEntries).go();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -9,7 +9,6 @@ import 'package:sharedinbox/core/repositories/account_repository.dart';
|
|||||||
import 'package:sharedinbox/core/repositories/draft_repository.dart';
|
import 'package:sharedinbox/core/repositories/draft_repository.dart';
|
||||||
import 'package:sharedinbox/core/repositories/email_repository.dart';
|
import 'package:sharedinbox/core/repositories/email_repository.dart';
|
||||||
import 'package:sharedinbox/core/repositories/mailbox_repository.dart';
|
import 'package:sharedinbox/core/repositories/mailbox_repository.dart';
|
||||||
import 'package:sharedinbox/core/repositories/search_history_repository.dart';
|
|
||||||
import 'package:sharedinbox/core/repositories/undo_repository.dart';
|
import 'package:sharedinbox/core/repositories/undo_repository.dart';
|
||||||
import 'package:sharedinbox/core/services/account_discovery_service.dart';
|
import 'package:sharedinbox/core/services/account_discovery_service.dart';
|
||||||
import 'package:sharedinbox/core/services/connection_test_service.dart';
|
import 'package:sharedinbox/core/services/connection_test_service.dart';
|
||||||
@@ -26,7 +25,6 @@ import 'package:sharedinbox/data/repositories/account_repository_impl.dart';
|
|||||||
import 'package:sharedinbox/data/repositories/draft_repository_impl.dart';
|
import 'package:sharedinbox/data/repositories/draft_repository_impl.dart';
|
||||||
import 'package:sharedinbox/data/repositories/email_repository_impl.dart';
|
import 'package:sharedinbox/data/repositories/email_repository_impl.dart';
|
||||||
import 'package:sharedinbox/data/repositories/mailbox_repository_impl.dart';
|
import 'package:sharedinbox/data/repositories/mailbox_repository_impl.dart';
|
||||||
import 'package:sharedinbox/data/repositories/search_history_repository_impl.dart';
|
|
||||||
import 'package:sharedinbox/data/repositories/sync_log_repository_impl.dart';
|
import 'package:sharedinbox/data/repositories/sync_log_repository_impl.dart';
|
||||||
import 'package:sharedinbox/data/repositories/undo_repository_impl.dart';
|
import 'package:sharedinbox/data/repositories/undo_repository_impl.dart';
|
||||||
import 'package:sharedinbox/data/storage/flutter_secure_storage_impl.dart';
|
import 'package:sharedinbox/data/storage/flutter_secure_storage_impl.dart';
|
||||||
@@ -89,11 +87,6 @@ final undoRepositoryProvider = Provider<UndoRepository>((ref) {
|
|||||||
return UndoRepositoryImpl(ref.watch(dbProvider));
|
return UndoRepositoryImpl(ref.watch(dbProvider));
|
||||||
});
|
});
|
||||||
|
|
||||||
final searchHistoryRepositoryProvider =
|
|
||||||
Provider<SearchHistoryRepository>((ref) {
|
|
||||||
return SearchHistoryRepositoryImpl(ref.watch(dbProvider));
|
|
||||||
});
|
|
||||||
|
|
||||||
final syncLogRepositoryProvider = Provider((ref) {
|
final syncLogRepositoryProvider = Provider((ref) {
|
||||||
return SyncLogRepositoryImpl(ref.watch(dbProvider));
|
return SyncLogRepositoryImpl(ref.watch(dbProvider));
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
|
|
||||||
import 'package:flutter/foundation.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_html/flutter_html.dart';
|
import 'package:flutter_html/flutter_html.dart';
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
@@ -61,27 +60,20 @@ class _EmailDetailScreenState extends ConsumerState<EmailDetailScreen> {
|
|||||||
tooltip: 'Reply',
|
tooltip: 'Reply',
|
||||||
onPressed: header == null
|
onPressed: header == null
|
||||||
? null
|
? null
|
||||||
: () {
|
: () => _reply(context, header, body, replyAll: false),
|
||||||
unawaited(_reply(context, header, body, replyAll: false));
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: const Icon(Icons.reply_all),
|
icon: const Icon(Icons.reply_all),
|
||||||
tooltip: 'Reply all',
|
tooltip: 'Reply all',
|
||||||
onPressed: header == null
|
onPressed: header == null
|
||||||
? null
|
? null
|
||||||
: () {
|
: () => _reply(context, header, body, replyAll: true),
|
||||||
unawaited(_reply(context, header, body, replyAll: true));
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: const Icon(Icons.forward),
|
icon: const Icon(Icons.forward),
|
||||||
tooltip: 'Forward',
|
tooltip: 'Forward',
|
||||||
onPressed: header == null
|
onPressed:
|
||||||
? null
|
header == null ? null : () => _forward(context, header, body),
|
||||||
: () {
|
|
||||||
unawaited(_forward(context, header, body));
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: const Icon(Icons.mark_email_unread_outlined),
|
icon: const Icon(Icons.mark_email_unread_outlined),
|
||||||
@@ -271,31 +263,26 @@ class _EmailDetailScreenState extends ConsumerState<EmailDetailScreen> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<String> _quotedBody(Email header, EmailBody? body) async {
|
String _quotedBody(Email header, EmailBody? body) {
|
||||||
final date = header.sentAt != null ? _dateFmt.format(header.sentAt!) : '';
|
final date = header.sentAt != null ? _dateFmt.format(header.sentAt!) : '';
|
||||||
final from =
|
final from =
|
||||||
header.from.isNotEmpty ? header.from.first.toString() : '(unknown)';
|
header.from.isNotEmpty ? header.from.first.toString() : '(unknown)';
|
||||||
final rawText = body?.textBody;
|
final text = body?.textBody ?? htmlToPlain(body?.htmlBody ?? '');
|
||||||
final text = (rawText != null && rawText.isNotEmpty)
|
|
||||||
? rawText
|
|
||||||
: await compute(htmlToPlain, body?.htmlBody ?? '');
|
|
||||||
final quoted = text.trim().split('\n').map((l) => '> $l').join('\n');
|
final quoted = text.trim().split('\n').map((l) => '> $l').join('\n');
|
||||||
return '\n\n— On $date, $from wrote:\n$quoted';
|
return '\n\n— On $date, $from wrote:\n$quoted';
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _reply(
|
void _reply(
|
||||||
BuildContext context,
|
BuildContext context,
|
||||||
Email header,
|
Email header,
|
||||||
EmailBody? body, {
|
EmailBody? body, {
|
||||||
required bool replyAll,
|
required bool replyAll,
|
||||||
}) async {
|
}) {
|
||||||
final to = header.from.isNotEmpty ? header.from.first.email : '';
|
final to = header.from.isNotEmpty ? header.from.first.email : '';
|
||||||
final subject = (header.subject?.startsWith('Re:') ?? false)
|
final subject = (header.subject?.startsWith('Re:') ?? false)
|
||||||
? header.subject!
|
? header.subject!
|
||||||
: 'Re: ${header.subject ?? ''}';
|
: 'Re: ${header.subject ?? ''}';
|
||||||
final cc = replyAll ? header.to.map((a) => a.email).join(', ') : '';
|
final cc = replyAll ? header.to.map((a) => a.email).join(', ') : '';
|
||||||
final quoted = await _quotedBody(header, body);
|
|
||||||
if (!context.mounted) return;
|
|
||||||
unawaited(
|
unawaited(
|
||||||
context.push(
|
context.push(
|
||||||
'/compose',
|
'/compose',
|
||||||
@@ -303,29 +290,23 @@ class _EmailDetailScreenState extends ConsumerState<EmailDetailScreen> {
|
|||||||
'replyToEmailId': widget.emailId,
|
'replyToEmailId': widget.emailId,
|
||||||
'prefillTo': to,
|
'prefillTo': to,
|
||||||
'prefillSubject': subject,
|
'prefillSubject': subject,
|
||||||
'prefillBody': quoted,
|
'prefillBody': _quotedBody(header, body),
|
||||||
if (cc.isNotEmpty) 'prefillCc': cc,
|
if (cc.isNotEmpty) 'prefillCc': cc,
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _forward(
|
void _forward(BuildContext context, Email header, EmailBody? body) {
|
||||||
BuildContext context,
|
|
||||||
Email header,
|
|
||||||
EmailBody? body,
|
|
||||||
) async {
|
|
||||||
final subject = (header.subject?.startsWith('Fwd:') ?? false)
|
final subject = (header.subject?.startsWith('Fwd:') ?? false)
|
||||||
? header.subject!
|
? header.subject!
|
||||||
: 'Fwd: ${header.subject ?? ''}';
|
: 'Fwd: ${header.subject ?? ''}';
|
||||||
final quoted = await _quotedBody(header, body);
|
|
||||||
if (!context.mounted) return;
|
|
||||||
unawaited(
|
unawaited(
|
||||||
context.push(
|
context.push(
|
||||||
'/compose',
|
'/compose',
|
||||||
extra: {
|
extra: {
|
||||||
'prefillSubject': subject,
|
'prefillSubject': subject,
|
||||||
'prefillBody': quoted,
|
'prefillBody': _quotedBody(header, body),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -193,22 +193,6 @@ class _EmailListScreenState extends ConsumerState<EmailListScreen> {
|
|||||||
extra: {'accountId': widget.accountId},
|
extra: {'accountId': widget.accountId},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
PopupMenuButton<String>(
|
|
||||||
onSelected: (value) async {
|
|
||||||
if (value == 'mark_all_read') {
|
|
||||||
await emailRepo.markAllAsRead(
|
|
||||||
widget.accountId,
|
|
||||||
widget.mailboxPath,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
itemBuilder: (_) => const [
|
|
||||||
PopupMenuItem(
|
|
||||||
value: 'mark_all_read',
|
|
||||||
child: Text('Mark all as read'),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
bottom: PreferredSize(
|
bottom: PreferredSize(
|
||||||
preferredSize: const Size.fromHeight(60),
|
preferredSize: const Size.fromHeight(60),
|
||||||
|
|||||||
@@ -10,11 +10,6 @@ import 'package:sharedinbox/core/utils/logger.dart';
|
|||||||
import 'package:sharedinbox/di.dart';
|
import 'package:sharedinbox/di.dart';
|
||||||
import 'package:sharedinbox/ui/widgets/email_tile.dart';
|
import 'package:sharedinbox/ui/widgets/email_tile.dart';
|
||||||
|
|
||||||
final _searchHistoryProvider =
|
|
||||||
FutureProvider.autoDispose<List<String>>((ref) async {
|
|
||||||
return ref.watch(searchHistoryRepositoryProvider).getRecentSearches();
|
|
||||||
});
|
|
||||||
|
|
||||||
class SearchScreen extends ConsumerStatefulWidget {
|
class SearchScreen extends ConsumerStatefulWidget {
|
||||||
const SearchScreen({super.key, this.accountId});
|
const SearchScreen({super.key, this.accountId});
|
||||||
final String? accountId;
|
final String? accountId;
|
||||||
@@ -25,24 +20,13 @@ class SearchScreen extends ConsumerStatefulWidget {
|
|||||||
|
|
||||||
class _SearchScreenState extends ConsumerState<SearchScreen> {
|
class _SearchScreenState extends ConsumerState<SearchScreen> {
|
||||||
final _ctrl = TextEditingController();
|
final _ctrl = TextEditingController();
|
||||||
final _focusNode = FocusNode();
|
|
||||||
Timer? _debounce;
|
Timer? _debounce;
|
||||||
_SearchResults? _results;
|
_SearchResults? _results;
|
||||||
bool _loading = false;
|
bool _loading = false;
|
||||||
bool _fieldFocused = false;
|
|
||||||
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
super.initState();
|
|
||||||
_focusNode.addListener(() {
|
|
||||||
if (mounted) setState(() => _fieldFocused = _focusNode.hasFocus);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void dispose() {
|
void dispose() {
|
||||||
_ctrl.dispose();
|
_ctrl.dispose();
|
||||||
_focusNode.dispose();
|
|
||||||
_debounce?.cancel();
|
_debounce?.cancel();
|
||||||
super.dispose();
|
super.dispose();
|
||||||
}
|
}
|
||||||
@@ -61,12 +45,6 @@ class _SearchScreenState extends ConsumerState<SearchScreen> {
|
|||||||
|
|
||||||
Future<void> _search(String query) async {
|
Future<void> _search(String query) async {
|
||||||
setState(() => _loading = true);
|
setState(() => _loading = true);
|
||||||
unawaited(
|
|
||||||
ref
|
|
||||||
.read(searchHistoryRepositoryProvider)
|
|
||||||
.saveSearch(query)
|
|
||||||
.then((_) => ref.invalidate(_searchHistoryProvider)),
|
|
||||||
);
|
|
||||||
try {
|
try {
|
||||||
final emailRepo = ref.read(emailRepositoryProvider);
|
final emailRepo = ref.read(emailRepositoryProvider);
|
||||||
final mailboxRepo = ref.read(mailboxRepositoryProvider);
|
final mailboxRepo = ref.read(mailboxRepositoryProvider);
|
||||||
@@ -134,7 +112,6 @@ class _SearchScreenState extends ConsumerState<SearchScreen> {
|
|||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: TextField(
|
title: TextField(
|
||||||
controller: _ctrl,
|
controller: _ctrl,
|
||||||
focusNode: _focusNode,
|
|
||||||
autofocus: true,
|
autofocus: true,
|
||||||
decoration: const InputDecoration(
|
decoration: const InputDecoration(
|
||||||
hintText: 'Search folders, addresses, emails…',
|
hintText: 'Search folders, addresses, emails…',
|
||||||
@@ -160,9 +137,6 @@ class _SearchScreenState extends ConsumerState<SearchScreen> {
|
|||||||
Widget _buildBody() {
|
Widget _buildBody() {
|
||||||
if (_loading) return const Center(child: CircularProgressIndicator());
|
if (_loading) return const Center(child: CircularProgressIndicator());
|
||||||
if (_results == null) {
|
if (_results == null) {
|
||||||
if (_fieldFocused && _ctrl.text.isEmpty) {
|
|
||||||
return _buildHistoryPanel();
|
|
||||||
}
|
|
||||||
return const Center(child: Text('Type 3+ characters to search'));
|
return const Center(child: Text('Type 3+ characters to search'));
|
||||||
}
|
}
|
||||||
final r = _results!;
|
final r = _results!;
|
||||||
@@ -195,66 +169,6 @@ class _SearchScreenState extends ConsumerState<SearchScreen> {
|
|||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildHistoryPanel() {
|
|
||||||
final history = ref.watch(_searchHistoryProvider);
|
|
||||||
return history.when(
|
|
||||||
loading: () => const Center(child: Text('Type 3+ characters to search')),
|
|
||||||
error: (_, __) =>
|
|
||||||
const Center(child: Text('Type 3+ characters to search')),
|
|
||||||
data: (terms) {
|
|
||||||
if (terms.isEmpty) {
|
|
||||||
return const Center(child: Text('Type 3+ characters to search'));
|
|
||||||
}
|
|
||||||
return Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.fromLTRB(16, 12, 16, 4),
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
Text(
|
|
||||||
'Recent searches',
|
|
||||||
style: Theme.of(context).textTheme.labelLarge,
|
|
||||||
),
|
|
||||||
TextButton(
|
|
||||||
onPressed: () async {
|
|
||||||
await ref
|
|
||||||
.read(searchHistoryRepositoryProvider)
|
|
||||||
.clearHistory();
|
|
||||||
ref.invalidate(_searchHistoryProvider);
|
|
||||||
},
|
|
||||||
child: const Text('Clear'),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 12),
|
|
||||||
child: Wrap(
|
|
||||||
spacing: 8,
|
|
||||||
runSpacing: 4,
|
|
||||||
children: [
|
|
||||||
for (final term in terms)
|
|
||||||
ActionChip(
|
|
||||||
label: Text(term),
|
|
||||||
onPressed: () {
|
|
||||||
_ctrl.text = term;
|
|
||||||
_ctrl.selection = TextSelection.fromPosition(
|
|
||||||
TextPosition(offset: term.length),
|
|
||||||
);
|
|
||||||
unawaited(_search(term));
|
|
||||||
},
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class _SearchResults {
|
class _SearchResults {
|
||||||
|
|||||||
+8
-4
@@ -43,7 +43,10 @@ Files: `lib/ui/screens/email_list_screen.dart`, `lib/core/utils/format_utils.dar
|
|||||||
|
|
||||||
### R4 — Done: https://codeberg.org/guettli/sharedinbox/pulls/23
|
### R4 — Done: https://codeberg.org/guettli/sharedinbox/pulls/23
|
||||||
|
|
||||||
### R5 — Done: https://codeberg.org/guettli/sharedinbox/pulls/45
|
### R5 🟡 Handle TLS certificate changes gracefully
|
||||||
|
`tls_error.dart` detects TLS errors but they bubble up as generic errors in the sync loop.
|
||||||
|
Detect `TlsError` specifically in `_AccountSync` and show a user-facing dialog offering to re-add the account or trust the new certificate.
|
||||||
|
Files: `lib/data/imap/tls_error.dart`, `lib/core/sync/account_sync_manager.dart`.
|
||||||
|
|
||||||
### R6 — Done: https://codeberg.org/guettli/sharedinbox/pulls/24
|
### R6 — Done: https://codeberg.org/guettli/sharedinbox/pulls/24
|
||||||
|
|
||||||
@@ -104,8 +107,6 @@ Files: `lib/ui/screens/email_list_screen.dart`, `lib/core/repositories/email_rep
|
|||||||
|
|
||||||
### T2 — Done: https://codeberg.org/guettli/sharedinbox/pulls/31
|
### T2 — Done: https://codeberg.org/guettli/sharedinbox/pulls/31
|
||||||
|
|
||||||
### T3 — Done: https://codeberg.org/guettli/sharedinbox/pulls/43
|
|
||||||
|
|
||||||
### T3 🟡 Contract tests for all Repository interfaces
|
### T3 🟡 Contract tests for all Repository interfaces
|
||||||
The interfaces in `core/repositories/` have no shared contract test suite. Concrete impls can silently diverge.
|
The interfaces in `core/repositories/` have no shared contract test suite. Concrete impls can silently diverge.
|
||||||
Add a shared `EmailRepositoryContract` abstract test class; run it against both `EmailRepositoryImpl` and any future mock/fake. Mirror this for `MailboxRepository` and `AccountRepository`.
|
Add a shared `EmailRepositoryContract` abstract test class; run it against both `EmailRepositoryImpl` and any future mock/fake. Mirror this for `MailboxRepository` and `AccountRepository`.
|
||||||
@@ -126,7 +127,10 @@ Files: `test/widget/email_list_screen_test.dart`.
|
|||||||
|
|
||||||
### A2 — Done: https://codeberg.org/guettli/sharedinbox/pulls/33
|
### A2 — Done: https://codeberg.org/guettli/sharedinbox/pulls/33
|
||||||
|
|
||||||
### A3 — Done: https://codeberg.org/guettli/sharedinbox/pulls/46
|
### A3 🟡 Make AccountSyncManager testable without real IMAP connections
|
||||||
|
`AccountSyncManager` accepts `ImapConnectFn` as a dependency but `_JmapAccountSync` constructs its HTTP client internally.
|
||||||
|
Pass an injectable `http.Client` to `_JmapAccountSync` (already done in `EmailRepositoryImpl`; mirror the pattern here).
|
||||||
|
Files: `lib/core/sync/account_sync_manager.dart`, `test/unit/account_sync_manager_test.dart`.
|
||||||
|
|
||||||
### A4 🟡 Replace raw JSON strings in DB with structured encoding
|
### A4 🟡 Replace raw JSON strings in DB with structured encoding
|
||||||
`fromJson`, `toAddresses`, `ccJson`, `references` are stored as raw JSON strings parsed on every model conversion.
|
`fromJson`, `toAddresses`, `ccJson`, `references` are stored as raw JSON strings parsed on every model conversion.
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ const _noCode = {
|
|||||||
'lib/core/repositories/mailbox_repository.dart',
|
'lib/core/repositories/mailbox_repository.dart',
|
||||||
'lib/core/repositories/sync_log_repository.dart',
|
'lib/core/repositories/sync_log_repository.dart',
|
||||||
'lib/core/repositories/undo_repository.dart',
|
'lib/core/repositories/undo_repository.dart',
|
||||||
'lib/core/repositories/search_history_repository.dart',
|
|
||||||
'lib/core/models/undo_action.dart',
|
'lib/core/models/undo_action.dart',
|
||||||
'lib/core/storage/secure_storage.dart',
|
'lib/core/storage/secure_storage.dart',
|
||||||
};
|
};
|
||||||
@@ -62,7 +61,6 @@ const _excluded = {
|
|||||||
'lib/data/repositories/mailbox_repository_impl.dart',
|
'lib/data/repositories/mailbox_repository_impl.dart',
|
||||||
'lib/data/repositories/sync_log_repository_impl.dart',
|
'lib/data/repositories/sync_log_repository_impl.dart',
|
||||||
'lib/data/repositories/undo_repository_impl.dart',
|
'lib/data/repositories/undo_repository_impl.dart',
|
||||||
'lib/data/repositories/search_history_repository_impl.dart',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:io';
|
|
||||||
|
|
||||||
import 'package:enough_mail/enough_mail.dart' as imap;
|
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
import 'package:sharedinbox/core/models/account.dart';
|
import 'package:sharedinbox/core/models/account.dart';
|
||||||
import 'package:sharedinbox/core/models/email.dart';
|
import 'package:sharedinbox/core/models/email.dart';
|
||||||
@@ -12,16 +10,8 @@ import 'package:sharedinbox/core/repositories/mailbox_repository.dart';
|
|||||||
import 'package:sharedinbox/core/repositories/sync_log_repository.dart';
|
import 'package:sharedinbox/core/repositories/sync_log_repository.dart';
|
||||||
import 'package:sharedinbox/core/sync/account_sync_manager.dart';
|
import 'package:sharedinbox/core/sync/account_sync_manager.dart';
|
||||||
|
|
||||||
Future<imap.ImapClient> _fakeImapConnect(
|
|
||||||
Account account,
|
|
||||||
String username,
|
|
||||||
String password,
|
|
||||||
) async =>
|
|
||||||
throw const SocketException('fake — no real IMAP server in tests');
|
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
test('AccountSyncManager schedules IMAP sync for multiple accounts',
|
test('AccountSyncManager schedules sync for multiple accounts', () async {
|
||||||
() async {
|
|
||||||
final accounts = _FakeAccounts('pw');
|
final accounts = _FakeAccounts('pw');
|
||||||
final mailboxes = _FakeMailboxes();
|
final mailboxes = _FakeMailboxes();
|
||||||
final emails = _FakeEmails();
|
final emails = _FakeEmails();
|
||||||
@@ -32,7 +22,6 @@ void main() {
|
|||||||
mailboxes,
|
mailboxes,
|
||||||
emails,
|
emails,
|
||||||
syncLog: logs,
|
syncLog: logs,
|
||||||
imapConnect: _fakeImapConnect,
|
|
||||||
);
|
);
|
||||||
|
|
||||||
final a1 = _account('1');
|
final a1 = _account('1');
|
||||||
@@ -49,34 +38,6 @@ void main() {
|
|||||||
|
|
||||||
manager.dispose();
|
manager.dispose();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('AccountSyncManager schedules JMAP sync for multiple accounts',
|
|
||||||
() async {
|
|
||||||
final accounts = _FakeAccounts('pw');
|
|
||||||
final mailboxes = _FakeMailboxes();
|
|
||||||
final emails = _FakeEmails();
|
|
||||||
final logs = _FakeLogs();
|
|
||||||
|
|
||||||
final manager = AccountSyncManager(
|
|
||||||
accounts,
|
|
||||||
mailboxes,
|
|
||||||
emails,
|
|
||||||
syncLog: logs,
|
|
||||||
);
|
|
||||||
|
|
||||||
final a1 = _jmapAccount('1');
|
|
||||||
final a2 = _jmapAccount('2');
|
|
||||||
|
|
||||||
manager.start();
|
|
||||||
accounts.push([a1, a2]);
|
|
||||||
|
|
||||||
await Future<void>.delayed(const Duration(milliseconds: 100));
|
|
||||||
|
|
||||||
expect(emails.syncCounts['1'], greaterThanOrEqualTo(1));
|
|
||||||
expect(emails.syncCounts['2'], greaterThanOrEqualTo(1));
|
|
||||||
|
|
||||||
manager.dispose();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Account _account(String id) => Account(
|
Account _account(String id) => Account(
|
||||||
@@ -91,17 +52,6 @@ Account _account(String id) => Account(
|
|||||||
smtpSsl: false,
|
smtpSsl: false,
|
||||||
);
|
);
|
||||||
|
|
||||||
Account _jmapAccount(String id) => Account(
|
|
||||||
id: id,
|
|
||||||
displayName: 'Account $id',
|
|
||||||
email: '$id@example.com',
|
|
||||||
type: AccountType.jmap,
|
|
||||||
jmapUrl: 'http://localhost:8080/.well-known/jmap',
|
|
||||||
smtpHost: 'localhost',
|
|
||||||
smtpPort: 25,
|
|
||||||
smtpSsl: false,
|
|
||||||
);
|
|
||||||
|
|
||||||
class _FakeAccounts implements AccountRepository {
|
class _FakeAccounts implements AccountRepository {
|
||||||
_FakeAccounts(this.password);
|
_FakeAccounts(this.password);
|
||||||
final String password;
|
final String password;
|
||||||
@@ -190,9 +140,6 @@ class _FakeEmails implements EmailRepository {
|
|||||||
@override
|
@override
|
||||||
Future<void> setFlag(String id, {bool? seen, bool? flagged}) async {}
|
Future<void> setFlag(String id, {bool? seen, bool? flagged}) async {}
|
||||||
|
|
||||||
@override
|
|
||||||
Future<void> markAllAsRead(String accountId, String mailboxPath) async {}
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<void> moveEmail(String id, String dest) async {}
|
Future<void> moveEmail(String id, String dest) async {}
|
||||||
|
|
||||||
|
|||||||
@@ -61,8 +61,6 @@ class FakeEmailRepository implements EmailRepository {
|
|||||||
@override
|
@override
|
||||||
Future<void> setFlag(String id, {bool? seen, bool? flagged}) async {}
|
Future<void> setFlag(String id, {bool? seen, bool? flagged}) async {}
|
||||||
@override
|
@override
|
||||||
Future<void> markAllAsRead(String accountId, String mailboxPath) async {}
|
|
||||||
@override
|
|
||||||
Future<void> moveEmail(String id, String dest) async {}
|
Future<void> moveEmail(String id, String dest) async {}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|||||||
@@ -215,9 +215,9 @@ class MockEmailRepository extends _i1.Mock implements _i9.EmailRepository {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
_i4.Stream<List<_i2.Email>> observeEmails(
|
_i4.Stream<List<_i2.Email>> observeEmails(
|
||||||
String? accountId,
|
String accountId,
|
||||||
String? mailboxPath, {
|
String mailboxPath, {
|
||||||
int? limit = 50,
|
int limit = 50,
|
||||||
}) =>
|
}) =>
|
||||||
(super.noSuchMethod(
|
(super.noSuchMethod(
|
||||||
Invocation.method(
|
Invocation.method(
|
||||||
@@ -233,9 +233,9 @@ class MockEmailRepository extends _i1.Mock implements _i9.EmailRepository {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
_i4.Stream<List<_i2.EmailThread>> observeThreads(
|
_i4.Stream<List<_i2.EmailThread>> observeThreads(
|
||||||
String? accountId,
|
String accountId,
|
||||||
String? mailboxPath, {
|
String mailboxPath, {
|
||||||
int? limit = 50,
|
int limit = 50,
|
||||||
}) =>
|
}) =>
|
||||||
(super.noSuchMethod(
|
(super.noSuchMethod(
|
||||||
Invocation.method(
|
Invocation.method(
|
||||||
@@ -337,23 +337,6 @@ class MockEmailRepository extends _i1.Mock implements _i9.EmailRepository {
|
|||||||
returnValueForMissingStub: _i4.Future<void>.value(),
|
returnValueForMissingStub: _i4.Future<void>.value(),
|
||||||
) as _i4.Future<void>);
|
) as _i4.Future<void>);
|
||||||
|
|
||||||
@override
|
|
||||||
_i4.Future<void> markAllAsRead(
|
|
||||||
String? accountId,
|
|
||||||
String? mailboxPath,
|
|
||||||
) =>
|
|
||||||
(super.noSuchMethod(
|
|
||||||
Invocation.method(
|
|
||||||
#markAllAsRead,
|
|
||||||
[
|
|
||||||
accountId,
|
|
||||||
mailboxPath,
|
|
||||||
],
|
|
||||||
),
|
|
||||||
returnValue: _i4.Future<void>.value(),
|
|
||||||
returnValueForMissingStub: _i4.Future<void>.value(),
|
|
||||||
) as _i4.Future<void>);
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
_i4.Future<void> moveEmail(
|
_i4.Future<void> moveEmail(
|
||||||
String? emailId,
|
String? emailId,
|
||||||
|
|||||||
@@ -126,35 +126,6 @@ abstract class EmailRepositoryContract {
|
|||||||
expect(email!.isFlagged, isTrue);
|
expect(email!.isFlagged, isTrue);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('markAllAsRead marks every unread email in the mailbox', () async {
|
|
||||||
final repo = await makeRepo();
|
|
||||||
await insertEmail(
|
|
||||||
repo,
|
|
||||||
id: 'er-acc:20',
|
|
||||||
mailboxPath: 'INBOX',
|
|
||||||
isSeen: false,
|
|
||||||
);
|
|
||||||
await insertEmail(
|
|
||||||
repo,
|
|
||||||
id: 'er-acc:21',
|
|
||||||
mailboxPath: 'INBOX',
|
|
||||||
isSeen: false,
|
|
||||||
);
|
|
||||||
await insertEmail(
|
|
||||||
repo,
|
|
||||||
id: 'er-acc:22',
|
|
||||||
mailboxPath: 'Sent',
|
|
||||||
isSeen: false,
|
|
||||||
);
|
|
||||||
|
|
||||||
await repo.markAllAsRead(_account.id, 'INBOX');
|
|
||||||
|
|
||||||
expect((await repo.getEmail('er-acc:20'))!.isSeen, isTrue);
|
|
||||||
expect((await repo.getEmail('er-acc:21'))!.isSeen, isTrue);
|
|
||||||
// Email in a different mailbox should be untouched.
|
|
||||||
expect((await repo.getEmail('er-acc:22'))!.isSeen, isFalse);
|
|
||||||
});
|
|
||||||
|
|
||||||
test('observeThreads starts empty', () async {
|
test('observeThreads starts empty', () async {
|
||||||
final repo = await makeRepo();
|
final repo = await makeRepo();
|
||||||
expect(
|
expect(
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ void main() {
|
|||||||
group('Migration', () {
|
group('Migration', () {
|
||||||
test('schemaVersion matches expected value', () async {
|
test('schemaVersion matches expected value', () async {
|
||||||
final db = AppDatabase(NativeDatabase.memory());
|
final db = AppDatabase(NativeDatabase.memory());
|
||||||
expect(db.schemaVersion, 27);
|
expect(db.schemaVersion, 26);
|
||||||
await db.close();
|
await db.close();
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -171,11 +171,6 @@ void main() {
|
|||||||
// Verify FTS table was created and is queryable.
|
// Verify FTS table was created and is queryable.
|
||||||
await db.customSelect('SELECT count(*) FROM email_fts').get();
|
await db.customSelect('SELECT count(*) FROM email_fts').get();
|
||||||
|
|
||||||
// v27: search_history_entries table.
|
|
||||||
await db
|
|
||||||
.customSelect('SELECT count(*) FROM search_history_entries')
|
|
||||||
.get();
|
|
||||||
|
|
||||||
await db.close();
|
await db.close();
|
||||||
if (dbFile.existsSync()) dbFile.deleteSync();
|
if (dbFile.existsSync()) dbFile.deleteSync();
|
||||||
});
|
});
|
||||||
@@ -306,16 +301,11 @@ void main() {
|
|||||||
);
|
);
|
||||||
await db.customSelect('SELECT count(*) FROM email_fts').get();
|
await db.customSelect('SELECT count(*) FROM email_fts').get();
|
||||||
|
|
||||||
// v27: search_history_entries table.
|
|
||||||
await db
|
|
||||||
.customSelect('SELECT count(*) FROM search_history_entries')
|
|
||||||
.get();
|
|
||||||
|
|
||||||
await db.close();
|
await db.close();
|
||||||
if (dbFile.existsSync()) dbFile.deleteSync();
|
if (dbFile.existsSync()) dbFile.deleteSync();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('fresh install creates all tables at schemaVersion 27', () async {
|
test('fresh install creates all tables at schemaVersion 26', () async {
|
||||||
final db = AppDatabase(NativeDatabase.memory());
|
final db = AppDatabase(NativeDatabase.memory());
|
||||||
await db.select(db.accounts).get();
|
await db.select(db.accounts).get();
|
||||||
|
|
||||||
@@ -338,7 +328,6 @@ void main() {
|
|||||||
'threads',
|
'threads',
|
||||||
'sync_health',
|
'sync_health',
|
||||||
'undo_actions',
|
'undo_actions',
|
||||||
'search_history_entries',
|
|
||||||
]),
|
]),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -103,8 +103,6 @@ class _CountingEmails implements EmailRepository {
|
|||||||
@override
|
@override
|
||||||
Future<void> setFlag(String id, {bool? seen, bool? flagged}) async {}
|
Future<void> setFlag(String id, {bool? seen, bool? flagged}) async {}
|
||||||
@override
|
@override
|
||||||
Future<void> markAllAsRead(String accountId, String mailboxPath) async {}
|
|
||||||
@override
|
|
||||||
Future<void> moveEmail(String id, String dest) async {}
|
Future<void> moveEmail(String id, String dest) async {}
|
||||||
@override
|
@override
|
||||||
Future<String?> deleteEmail(String id) async => null;
|
Future<String?> deleteEmail(String id) async => null;
|
||||||
|
|||||||
@@ -75,9 +75,9 @@ class MockEmailRepository extends _i1.Mock implements _i3.EmailRepository {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
_i4.Stream<List<_i2.Email>> observeEmails(
|
_i4.Stream<List<_i2.Email>> observeEmails(
|
||||||
String? accountId,
|
String accountId,
|
||||||
String? mailboxPath, {
|
String mailboxPath, {
|
||||||
int? limit = 50,
|
int limit = 50,
|
||||||
}) =>
|
}) =>
|
||||||
(super.noSuchMethod(
|
(super.noSuchMethod(
|
||||||
Invocation.method(
|
Invocation.method(
|
||||||
@@ -93,9 +93,9 @@ class MockEmailRepository extends _i1.Mock implements _i3.EmailRepository {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
_i4.Stream<List<_i2.EmailThread>> observeThreads(
|
_i4.Stream<List<_i2.EmailThread>> observeThreads(
|
||||||
String? accountId,
|
String accountId,
|
||||||
String? mailboxPath, {
|
String mailboxPath, {
|
||||||
int? limit = 50,
|
int limit = 50,
|
||||||
}) =>
|
}) =>
|
||||||
(super.noSuchMethod(
|
(super.noSuchMethod(
|
||||||
Invocation.method(
|
Invocation.method(
|
||||||
@@ -197,23 +197,6 @@ class MockEmailRepository extends _i1.Mock implements _i3.EmailRepository {
|
|||||||
returnValueForMissingStub: _i4.Future<void>.value(),
|
returnValueForMissingStub: _i4.Future<void>.value(),
|
||||||
) as _i4.Future<void>);
|
) as _i4.Future<void>);
|
||||||
|
|
||||||
@override
|
|
||||||
_i4.Future<void> markAllAsRead(
|
|
||||||
String? accountId,
|
|
||||||
String? mailboxPath,
|
|
||||||
) =>
|
|
||||||
(super.noSuchMethod(
|
|
||||||
Invocation.method(
|
|
||||||
#markAllAsRead,
|
|
||||||
[
|
|
||||||
accountId,
|
|
||||||
mailboxPath,
|
|
||||||
],
|
|
||||||
),
|
|
||||||
returnValue: _i4.Future<void>.value(),
|
|
||||||
returnValueForMissingStub: _i4.Future<void>.value(),
|
|
||||||
) as _i4.Future<void>);
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
_i4.Future<void> moveEmail(
|
_i4.Future<void> moveEmail(
|
||||||
String? emailId,
|
String? emailId,
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ import 'package:sharedinbox/core/repositories/account_repository.dart';
|
|||||||
import 'package:sharedinbox/core/repositories/draft_repository.dart';
|
import 'package:sharedinbox/core/repositories/draft_repository.dart';
|
||||||
import 'package:sharedinbox/core/repositories/email_repository.dart';
|
import 'package:sharedinbox/core/repositories/email_repository.dart';
|
||||||
import 'package:sharedinbox/core/repositories/mailbox_repository.dart';
|
import 'package:sharedinbox/core/repositories/mailbox_repository.dart';
|
||||||
import 'package:sharedinbox/core/repositories/search_history_repository.dart';
|
|
||||||
import 'package:sharedinbox/core/services/account_discovery_service.dart';
|
import 'package:sharedinbox/core/services/account_discovery_service.dart';
|
||||||
import 'package:sharedinbox/core/services/connection_test_service.dart';
|
import 'package:sharedinbox/core/services/connection_test_service.dart';
|
||||||
import 'package:sharedinbox/core/services/managesieve_probe_service.dart';
|
import 'package:sharedinbox/core/services/managesieve_probe_service.dart';
|
||||||
@@ -214,8 +213,6 @@ class FakeEmailRepository implements EmailRepository {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Future<void> setFlag(String emailId, {bool? seen, bool? flagged}) async {}
|
Future<void> setFlag(String emailId, {bool? seen, bool? flagged}) async {}
|
||||||
@override
|
|
||||||
Future<void> markAllAsRead(String accountId, String mailboxPath) async {}
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<void> moveEmail(String emailId, String destMailboxPath) async {}
|
Future<void> moveEmail(String emailId, String destMailboxPath) async {}
|
||||||
@@ -511,20 +508,3 @@ Email testEmail({
|
|||||||
isFlagged: isFlagged,
|
isFlagged: isFlagged,
|
||||||
hasAttachment: hasAttachment,
|
hasAttachment: hasAttachment,
|
||||||
);
|
);
|
||||||
|
|
||||||
class FakeSearchHistoryRepository implements SearchHistoryRepository {
|
|
||||||
final List<String> _history = [];
|
|
||||||
|
|
||||||
@override
|
|
||||||
Future<List<String>> getRecentSearches() async => List.unmodifiable(_history);
|
|
||||||
|
|
||||||
@override
|
|
||||||
Future<void> saveSearch(String query) async {
|
|
||||||
_history.remove(query);
|
|
||||||
_history.insert(0, query);
|
|
||||||
if (_history.length > 10) _history.removeLast();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Future<void> clearHistory() async => _history.clear();
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -20,9 +20,6 @@ void main() {
|
|||||||
FakeMailboxRepository(),
|
FakeMailboxRepository(),
|
||||||
),
|
),
|
||||||
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
||||||
searchHistoryRepositoryProvider.overrideWithValue(
|
|
||||||
FakeSearchHistoryRepository(),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -45,9 +42,6 @@ void main() {
|
|||||||
FakeMailboxRepository(),
|
FakeMailboxRepository(),
|
||||||
),
|
),
|
||||||
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
||||||
searchHistoryRepositoryProvider.overrideWithValue(
|
|
||||||
FakeSearchHistoryRepository(),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -74,9 +68,6 @@ void main() {
|
|||||||
FakeMailboxRepository(),
|
FakeMailboxRepository(),
|
||||||
),
|
),
|
||||||
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
||||||
searchHistoryRepositoryProvider.overrideWithValue(
|
|
||||||
FakeSearchHistoryRepository(),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -106,9 +97,6 @@ void main() {
|
|||||||
emailRepositoryProvider.overrideWithValue(
|
emailRepositoryProvider.overrideWithValue(
|
||||||
FakeEmailRepository(searchResults: [email]),
|
FakeEmailRepository(searchResults: [email]),
|
||||||
),
|
),
|
||||||
searchHistoryRepositoryProvider.overrideWithValue(
|
|
||||||
FakeSearchHistoryRepository(),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -144,9 +132,6 @@ void main() {
|
|||||||
FakeMailboxRepository([archiveMailbox]),
|
FakeMailboxRepository([archiveMailbox]),
|
||||||
),
|
),
|
||||||
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
emailRepositoryProvider.overrideWithValue(FakeEmailRepository()),
|
||||||
searchHistoryRepositoryProvider.overrideWithValue(
|
|
||||||
FakeSearchHistoryRepository(),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -177,9 +162,6 @@ void main() {
|
|||||||
emailRepositoryProvider.overrideWithValue(
|
emailRepositoryProvider.overrideWithValue(
|
||||||
FakeEmailRepository(searchResults: [email]),
|
FakeEmailRepository(searchResults: [email]),
|
||||||
),
|
),
|
||||||
searchHistoryRepositoryProvider.overrideWithValue(
|
|
||||||
FakeSearchHistoryRepository(),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -193,9 +175,8 @@ void main() {
|
|||||||
await tester.tap(find.byIcon(Icons.clear));
|
await tester.tap(find.byIcon(Icons.clear));
|
||||||
await tester.pumpAndSettle();
|
await tester.pumpAndSettle();
|
||||||
|
|
||||||
// Results are gone; the recent-search chip for the prior query appears.
|
|
||||||
expect(find.text('Found email'), findsNothing);
|
expect(find.text('Found email'), findsNothing);
|
||||||
expect(find.text('found'), findsOneWidget);
|
expect(find.text('Type 3+ characters to search'), findsOneWidget);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user