2017-11-23 16:47:19 +11:00
|
|
|
/*
|
|
|
|
|
* Copyright 2016 Software Freedom Conservancy Inc.
|
2018-01-19 08:44:08 +11:00
|
|
|
* Copyright 2017-2018 Michael Gratton <mike@vee.net>.
|
2011-06-16 16:27:08 -07:00
|
|
|
*
|
|
|
|
|
* This software is licensed under the GNU Lesser General Public License
|
2013-04-12 12:31:58 -07:00
|
|
|
* (version 2.1 or later). See the COPYING file in this distribution.
|
2011-06-16 16:27:08 -07:00
|
|
|
*/
|
|
|
|
|
|
2015-01-09 17:50:19 -08:00
|
|
|
private abstract class Geary.ImapEngine.GenericAccount : Geary.Account {
|
2016-06-05 18:36:16 +10:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
|
|
|
|
|
/** Default IMAP session pool size. */
|
|
|
|
|
private const int IMAP_MIN_POOL_SIZE = 2;
|
|
|
|
|
|
2017-11-28 10:24:46 +11:00
|
|
|
// This is high since it's an expensive operation, and we'll go
|
|
|
|
|
// looking changes caused by local operations as they happen, so
|
|
|
|
|
// we don't need to double check.
|
|
|
|
|
private const int REFRESH_FOLDER_LIST_SEC = 15 * 60;
|
|
|
|
|
|
2016-06-05 18:36:16 +10:00
|
|
|
private const Geary.SpecialFolderType[] SUPPORTED_SPECIAL_FOLDERS = {
|
|
|
|
|
Geary.SpecialFolderType.DRAFTS,
|
|
|
|
|
Geary.SpecialFolderType.SENT,
|
|
|
|
|
Geary.SpecialFolderType.SPAM,
|
|
|
|
|
Geary.SpecialFolderType.TRASH,
|
|
|
|
|
Geary.SpecialFolderType.ARCHIVE,
|
|
|
|
|
};
|
|
|
|
|
|
2018-11-10 09:25:05 +11:00
|
|
|
public override bool is_online { get; protected set; default = false; }
|
|
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
/** This account's IMAP session pool. */
|
|
|
|
|
public Imap.ClientSessionManager session_pool { get; private set; }
|
|
|
|
|
|
2018-01-19 08:44:08 +11:00
|
|
|
internal ImapDB.Account local { get; private set; }
|
2016-06-05 18:36:16 +10:00
|
|
|
|
Remove SQLHeavy: Closes #5034
It is done.
Initial implementation of the new database subsystem
These pieces represent the foundation for ticket #5034
Expanded transactions, added VersionedDatabase
Further expansions of the async code.
Moved async pool logic into Database, where it realistically
belongs.
Further improvements. Introduced geary-db-test.
Added SQL create and update files for Geary.Db
version-001 to version-003 are exact copies of the SQLHeavy scripts
to ensure no slight changes when migrating. version-004 upgrades
the database to remove the ImapFolderPropertiesTable and
ImapMessagePropertiesTable, now that the database code is pure
IMAP.
When we support other messaging systems (such as POP3), those
subsystems will need to code their own database layers OR rely on
the IMAP schema and simply ignore the IMAP-specific fields.
ImapDB.Account fleshed out
ImapDB.Folder is commented out, however. Need to port next.
ImapDB.Folder fleshed out
MessageTable, MessageLocationTable, and AttachementTable are now
handled inside ImapDB.Folder.
chmod -x imap-db-database.vala
OutboxEmailIdentifier/Properties -> SmtpOutboxEmailIdentifier/Properties
Moved SmtpOutboxFolderRoot into its own source file
SmtpOutboxFolder ported to new database code
Move Engine implementations to ImapDB.
Integration and cleanup of new database code with main source
This commit performs the final integration steps to move Geary
completely over to the new database model. This also cleans out
the old SQLHeavy-based code and fixes a handful of small bugs that
were detected during basic test runs.
Moved Outbox to ImapDB
As the Outbox is tied to the database that ImapDB runs, move the
Outbox code into that folder.
Outbox fixes and better parameter checking
Bumped Database thread pool count and made them exclusive
My reasoning is that there may be a need for a lot of threads at
once (when a big batch of commands comes in, especially at
startup). If performance looks ok, we might consider relaxing
this later.
2012-06-14 14:47:53 -07:00
|
|
|
private bool open = false;
|
2018-01-26 09:52:20 +10:30
|
|
|
private Cancellable? open_cancellable = null;
|
2018-02-27 01:03:21 +11:00
|
|
|
private Nonblocking.Semaphore? remote_ready_lock = null;
|
2018-01-26 09:52:20 +10:30
|
|
|
|
|
|
|
|
private Geary.SearchFolder? search_folder { get; private set; default = null; }
|
|
|
|
|
|
2014-02-11 15:24:01 -08:00
|
|
|
private Gee.HashMap<FolderPath, MinimalFolder> folder_map = new Gee.HashMap<
|
|
|
|
|
FolderPath, MinimalFolder>();
|
2013-04-24 12:22:32 -07:00
|
|
|
private Gee.HashMap<FolderPath, Folder> local_only = new Gee.HashMap<FolderPath, Folder>();
|
2018-01-26 09:52:20 +10:30
|
|
|
|
2017-11-23 10:11:30 +11:00
|
|
|
private AccountProcessor? processor;
|
2017-11-11 15:40:00 +11:00
|
|
|
private AccountSynchronizer sync;
|
2017-11-09 17:12:48 +11:00
|
|
|
private TimeoutManager refresh_folder_timer;
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
private uint authentication_failures = 0;
|
|
|
|
|
|
2016-06-15 18:24:50 -04:00
|
|
|
|
|
|
|
|
private Gee.Map<Geary.SpecialFolderType, Gee.List<string>> special_search_names =
|
|
|
|
|
new Gee.HashMap<Geary.SpecialFolderType, Gee.List<string>>();
|
|
|
|
|
|
2017-11-09 17:12:48 +11:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
public GenericAccount(string name,
|
|
|
|
|
Geary.AccountInformation information,
|
|
|
|
|
ImapDB.Account local) {
|
|
|
|
|
base(name, information);
|
2017-11-09 17:12:48 +11:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
this.session_pool = new Imap.ClientSessionManager(
|
|
|
|
|
this.information.id,
|
2018-05-28 18:53:11 +10:00
|
|
|
this.information.imap.endpoint,
|
2018-05-23 16:34:23 +10:00
|
|
|
this.information.imap.credentials
|
2018-01-26 09:52:20 +10:30
|
|
|
);
|
|
|
|
|
this.session_pool.min_pool_size = IMAP_MIN_POOL_SIZE;
|
|
|
|
|
this.session_pool.ready.connect(on_pool_session_ready);
|
|
|
|
|
this.session_pool.connection_failed.connect(on_pool_connection_failed);
|
|
|
|
|
this.session_pool.login_failed.connect(on_pool_login_failed);
|
2017-11-09 17:12:48 +11:00
|
|
|
|
2011-06-16 16:27:08 -07:00
|
|
|
this.local = local;
|
2016-12-11 14:30:59 +01:00
|
|
|
this.local.contacts_loaded.connect(() => { contacts_loaded(); });
|
2013-09-17 16:55:03 -07:00
|
|
|
this.local.email_sent.connect(on_email_sent);
|
2017-11-09 17:12:48 +11:00
|
|
|
|
|
|
|
|
this.refresh_folder_timer = new TimeoutManager.seconds(
|
|
|
|
|
REFRESH_FOLDER_LIST_SEC,
|
2017-11-23 16:47:19 +11:00
|
|
|
() => { this.update_remote_folders(); }
|
2017-11-09 17:12:48 +11:00
|
|
|
);
|
|
|
|
|
|
2013-06-03 17:39:42 -07:00
|
|
|
search_upgrade_monitor = local.search_index_monitor;
|
2013-07-08 14:22:23 -07:00
|
|
|
db_upgrade_monitor = local.upgrade_monitor;
|
2014-12-18 17:00:47 -08:00
|
|
|
db_vacuum_monitor = local.vacuum_monitor;
|
2014-06-12 13:01:47 -07:00
|
|
|
opening_monitor = new Geary.ReentrantProgressMonitor(Geary.ProgressType.ACTIVITY);
|
2013-09-17 16:55:03 -07:00
|
|
|
sending_monitor = local.sending_monitor;
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2017-12-20 21:01:34 +10:30
|
|
|
this.sync = new AccountSynchronizer(this);
|
2016-06-15 18:24:50 -04:00
|
|
|
|
|
|
|
|
compile_special_search_names();
|
2011-06-16 16:27:08 -07:00
|
|
|
}
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
/** {@inheritDoc} */
|
2012-06-11 12:03:57 -07:00
|
|
|
public override async void open_async(Cancellable? cancellable = null) throws Error {
|
Remove SQLHeavy: Closes #5034
It is done.
Initial implementation of the new database subsystem
These pieces represent the foundation for ticket #5034
Expanded transactions, added VersionedDatabase
Further expansions of the async code.
Moved async pool logic into Database, where it realistically
belongs.
Further improvements. Introduced geary-db-test.
Added SQL create and update files for Geary.Db
version-001 to version-003 are exact copies of the SQLHeavy scripts
to ensure no slight changes when migrating. version-004 upgrades
the database to remove the ImapFolderPropertiesTable and
ImapMessagePropertiesTable, now that the database code is pure
IMAP.
When we support other messaging systems (such as POP3), those
subsystems will need to code their own database layers OR rely on
the IMAP schema and simply ignore the IMAP-specific fields.
ImapDB.Account fleshed out
ImapDB.Folder is commented out, however. Need to port next.
ImapDB.Folder fleshed out
MessageTable, MessageLocationTable, and AttachementTable are now
handled inside ImapDB.Folder.
chmod -x imap-db-database.vala
OutboxEmailIdentifier/Properties -> SmtpOutboxEmailIdentifier/Properties
Moved SmtpOutboxFolderRoot into its own source file
SmtpOutboxFolder ported to new database code
Move Engine implementations to ImapDB.
Integration and cleanup of new database code with main source
This commit performs the final integration steps to move Geary
completely over to the new database model. This also cleans out
the old SQLHeavy-based code and fixes a handful of small bugs that
were detected during basic test runs.
Moved Outbox to ImapDB
As the Outbox is tied to the database that ImapDB runs, move the
Outbox code into that folder.
Outbox fixes and better parameter checking
Bumped Database thread pool count and made them exclusive
My reasoning is that there may be a need for a lot of threads at
once (when a big batch of commands comes in, especially at
startup). If performance looks ok, we might consider relaxing
this later.
2012-06-14 14:47:53 -07:00
|
|
|
if (open)
|
|
|
|
|
throw new EngineError.ALREADY_OPEN("Account %s already opened", to_string());
|
2018-01-26 09:52:20 +10:30
|
|
|
|
2014-06-12 13:01:47 -07:00
|
|
|
opening_monitor.notify_start();
|
|
|
|
|
try {
|
|
|
|
|
yield internal_open_async(cancellable);
|
2018-01-26 09:52:20 +10:30
|
|
|
} finally {
|
|
|
|
|
opening_monitor.notify_finish();
|
2014-06-12 13:01:47 -07:00
|
|
|
}
|
|
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
|
2014-06-12 13:01:47 -07:00
|
|
|
private async void internal_open_async(Cancellable? cancellable) throws Error {
|
2018-01-26 09:52:20 +10:30
|
|
|
this.open_cancellable = new Cancellable();
|
|
|
|
|
this.remote_ready_lock = new Nonblocking.Semaphore(this.open_cancellable);
|
|
|
|
|
|
|
|
|
|
// Reset this so we start trying to authenticate again
|
|
|
|
|
this.authentication_failures = 0;
|
|
|
|
|
|
2018-05-29 03:22:37 +02:00
|
|
|
// To prevent spurious connection failures, we make sure we
|
|
|
|
|
// have the IMAP password before attempting a connection.
|
|
|
|
|
if (yield this.information.load_imap_credentials(cancellable)) {
|
|
|
|
|
this.session_pool.credentials_updated(
|
|
|
|
|
this.information.imap.credentials
|
|
|
|
|
);
|
|
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
|
|
|
|
|
// This will cause the session manager to open at least one
|
|
|
|
|
// connection if we are online
|
|
|
|
|
yield this.session_pool.open_async(cancellable);
|
|
|
|
|
|
2017-11-23 10:11:30 +11:00
|
|
|
this.processor = new AccountProcessor(this.to_string());
|
2017-11-23 16:47:19 +11:00
|
|
|
this.processor.operation_error.connect(on_operation_error);
|
2017-11-23 10:11:30 +11:00
|
|
|
|
2013-09-09 14:44:36 -07:00
|
|
|
try {
|
2016-07-04 23:02:28 +02:00
|
|
|
yield local.open_async(information.data_dir, Engine.instance.resource_dir.get_child("sql"),
|
2013-09-09 14:44:36 -07:00
|
|
|
cancellable);
|
|
|
|
|
} catch (Error err) {
|
|
|
|
|
// convert database-open errors
|
|
|
|
|
if (err is DatabaseError.CORRUPT)
|
|
|
|
|
throw new EngineError.CORRUPT("%s", err.message);
|
|
|
|
|
else if (err is DatabaseError.ACCESS)
|
|
|
|
|
throw new EngineError.PERMISSIONS("%s", err.message);
|
2013-09-09 15:41:31 -07:00
|
|
|
else if (err is DatabaseError.SCHEMA_VERSION)
|
|
|
|
|
throw new EngineError.VERSION("%s", err.message);
|
2013-09-09 14:44:36 -07:00
|
|
|
else
|
|
|
|
|
throw err;
|
|
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
|
|
|
|
|
// Local folders
|
|
|
|
|
|
2012-08-27 12:08:58 -07:00
|
|
|
local.outbox.report_problem.connect(notify_report_problem);
|
2018-02-21 16:04:19 +11:00
|
|
|
local_only.set(new SmtpOutboxFolderRoot(), local.outbox);
|
2017-11-09 17:12:48 +11:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
this.search_folder = new_search_folder();
|
2018-02-21 16:04:19 +11:00
|
|
|
local_only.set(new ImapDB.SearchFolderRoot(), this.search_folder);
|
2013-01-17 12:50:30 -08:00
|
|
|
|
2017-11-09 17:12:48 +11:00
|
|
|
this.open = true;
|
|
|
|
|
notify_opened();
|
2013-06-11 19:57:43 -07:00
|
|
|
notify_folders_available_unavailable(sort_by_path(local_only.values), null);
|
2017-11-09 17:12:48 +11:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
this.queue_operation(
|
|
|
|
|
new LoadFolders(this, this.local, get_supported_special_folders())
|
|
|
|
|
);
|
2012-06-11 12:03:57 -07:00
|
|
|
}
|
2017-11-09 17:12:48 +11:00
|
|
|
|
2012-06-11 12:03:57 -07:00
|
|
|
public override async void close_async(Cancellable? cancellable = null) throws Error {
|
Remove SQLHeavy: Closes #5034
It is done.
Initial implementation of the new database subsystem
These pieces represent the foundation for ticket #5034
Expanded transactions, added VersionedDatabase
Further expansions of the async code.
Moved async pool logic into Database, where it realistically
belongs.
Further improvements. Introduced geary-db-test.
Added SQL create and update files for Geary.Db
version-001 to version-003 are exact copies of the SQLHeavy scripts
to ensure no slight changes when migrating. version-004 upgrades
the database to remove the ImapFolderPropertiesTable and
ImapMessagePropertiesTable, now that the database code is pure
IMAP.
When we support other messaging systems (such as POP3), those
subsystems will need to code their own database layers OR rely on
the IMAP schema and simply ignore the IMAP-specific fields.
ImapDB.Account fleshed out
ImapDB.Folder is commented out, however. Need to port next.
ImapDB.Folder fleshed out
MessageTable, MessageLocationTable, and AttachementTable are now
handled inside ImapDB.Folder.
chmod -x imap-db-database.vala
OutboxEmailIdentifier/Properties -> SmtpOutboxEmailIdentifier/Properties
Moved SmtpOutboxFolderRoot into its own source file
SmtpOutboxFolder ported to new database code
Move Engine implementations to ImapDB.
Integration and cleanup of new database code with main source
This commit performs the final integration steps to move Geary
completely over to the new database model. This also cleans out
the old SQLHeavy-based code and fixes a handful of small bugs that
were detected during basic test runs.
Moved Outbox to ImapDB
As the Outbox is tied to the database that ImapDB runs, move the
Outbox code into that folder.
Outbox fixes and better parameter checking
Bumped Database thread pool count and made them exclusive
My reasoning is that there may be a need for a lot of threads at
once (when a big batch of commands comes in, especially at
startup). If performance looks ok, we might consider relaxing
this later.
2012-06-14 14:47:53 -07:00
|
|
|
if (!open)
|
|
|
|
|
return;
|
2013-01-17 12:50:30 -08:00
|
|
|
|
2018-03-05 23:15:19 +11:00
|
|
|
// Block obtaining and reusing IMAP server connections
|
2018-02-27 01:03:21 +11:00
|
|
|
this.remote_ready_lock.reset();
|
2018-01-26 09:52:20 +10:30
|
|
|
this.session_pool.discard_returned_sessions = true;
|
2017-11-28 09:51:53 +11:00
|
|
|
|
2017-11-23 10:11:30 +11:00
|
|
|
// Halt internal tasks early so they stop using local and
|
|
|
|
|
// remote connections.
|
2017-11-09 17:12:48 +11:00
|
|
|
this.refresh_folder_timer.reset();
|
2018-01-26 09:52:20 +10:30
|
|
|
this.open_cancellable.cancel();
|
|
|
|
|
this.processor.stop();
|
2017-11-09 17:12:48 +11:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
// Close folders and ensure they do in fact close
|
2017-11-21 01:13:21 +11:00
|
|
|
|
|
|
|
|
Gee.List<Geary.Folder> locals = sort_by_path(this.local_only.values);
|
|
|
|
|
Gee.List<Geary.Folder> remotes = sort_by_path(this.folder_map.values);
|
|
|
|
|
|
|
|
|
|
this.local_only.clear();
|
|
|
|
|
this.folder_map.clear();
|
|
|
|
|
|
|
|
|
|
notify_folders_available_unavailable(null, locals);
|
|
|
|
|
notify_folders_available_unavailable(null, remotes);
|
|
|
|
|
|
|
|
|
|
foreach (Geary.Folder folder in locals) {
|
|
|
|
|
debug("%s: Waiting for local to close: %s", to_string(), folder.to_string());
|
|
|
|
|
yield folder.wait_for_close_async();
|
|
|
|
|
}
|
|
|
|
|
foreach (Geary.Folder folder in remotes) {
|
|
|
|
|
debug("%s: Waiting for remote to close: %s", to_string(), folder.to_string());
|
|
|
|
|
yield folder.wait_for_close_async();
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
// Close remote infrastructure
|
2017-11-21 01:13:21 +11:00
|
|
|
|
2012-06-11 12:03:57 -07:00
|
|
|
try {
|
2018-01-26 09:52:20 +10:30
|
|
|
yield this.session_pool.close_async(cancellable);
|
|
|
|
|
} catch (Error err) {
|
|
|
|
|
debug("%s: Error closing IMAP session pool: %s",
|
|
|
|
|
to_string(),
|
|
|
|
|
this.session_pool.to_string()
|
|
|
|
|
);
|
2012-06-11 12:03:57 -07:00
|
|
|
}
|
2018-02-27 01:03:21 +11:00
|
|
|
this.remote_ready_lock = null;
|
2017-11-21 01:13:21 +11:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
// Close local infrastructure
|
2017-11-20 19:51:03 +11:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
this.search_folder = null;
|
|
|
|
|
this.local.outbox.report_problem.disconnect(notify_report_problem);
|
2012-06-11 12:03:57 -07:00
|
|
|
try {
|
2018-01-26 09:52:20 +10:30
|
|
|
yield local.close_async(cancellable);
|
|
|
|
|
} finally {
|
|
|
|
|
this.open = false;
|
|
|
|
|
notify_closed();
|
2012-06-11 12:03:57 -07:00
|
|
|
}
|
2011-06-23 19:07:04 -07:00
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
|
|
|
|
|
/** {@inheritDoc} */
|
2013-02-04 19:26:48 -08:00
|
|
|
public override bool is_open() {
|
|
|
|
|
return open;
|
|
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
|
2013-09-09 14:44:36 -07:00
|
|
|
public override async void rebuild_async(Cancellable? cancellable = null) throws Error {
|
|
|
|
|
if (open)
|
|
|
|
|
throw new EngineError.ALREADY_OPEN("Account cannot be open during rebuild");
|
|
|
|
|
|
|
|
|
|
message("%s: Rebuilding account local data", to_string());
|
|
|
|
|
|
|
|
|
|
// get all the storage locations associated with this Account
|
|
|
|
|
File db_file;
|
|
|
|
|
File attachments_dir;
|
2016-07-04 23:02:28 +02:00
|
|
|
ImapDB.Account.get_imap_db_storage_locations(information.data_dir, out db_file,
|
2013-09-09 14:44:36 -07:00
|
|
|
out attachments_dir);
|
|
|
|
|
|
|
|
|
|
if (yield Files.query_exists_async(db_file, cancellable)) {
|
|
|
|
|
message("%s: Deleting database file %s...", to_string(), db_file.get_path());
|
|
|
|
|
yield db_file.delete_async(Priority.DEFAULT, cancellable);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (yield Files.query_exists_async(attachments_dir, cancellable)) {
|
|
|
|
|
message("%s: Deleting attachments directory %s...", to_string(), attachments_dir.get_path());
|
|
|
|
|
yield Files.recursive_delete_async(attachments_dir, cancellable);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message("%s: Rebuild complete", to_string());
|
|
|
|
|
}
|
2017-11-09 18:03:44 +11:00
|
|
|
|
|
|
|
|
/**
|
2018-01-26 09:52:20 +10:30
|
|
|
* Starts the outbox postman running.
|
2017-11-09 18:03:44 +11:00
|
|
|
*/
|
|
|
|
|
public override async void start_outgoing_client()
|
|
|
|
|
throws Error {
|
|
|
|
|
check_open();
|
|
|
|
|
this.local.outbox.start_postman_async.begin();
|
2013-08-19 16:39:53 -07:00
|
|
|
}
|
2017-11-09 18:03:44 +11:00
|
|
|
|
|
|
|
|
/**
|
2018-01-26 09:52:20 +10:30
|
|
|
* Closes then reopens the IMAP account if it is not ready.
|
2017-11-09 18:03:44 +11:00
|
|
|
*/
|
|
|
|
|
public override async void start_incoming_client()
|
|
|
|
|
throws Error {
|
|
|
|
|
check_open();
|
2018-01-26 09:52:20 +10:30
|
|
|
if (!this.session_pool.is_ready) {
|
|
|
|
|
try {
|
|
|
|
|
yield this.session_pool.close_async(this.open_cancellable);
|
|
|
|
|
} catch (Error err) {
|
|
|
|
|
debug("Ignoring error closing IMAP session pool for restart: %s",
|
|
|
|
|
err.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
yield this.session_pool.open_async(this.open_cancellable);
|
|
|
|
|
}
|
2013-01-17 12:50:30 -08:00
|
|
|
}
|
|
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
/**
|
|
|
|
|
* Queues an operation for execution by this account.
|
|
|
|
|
*
|
|
|
|
|
* The operation will added to the account's {@link
|
|
|
|
|
* AccountProcessor} and executed asynchronously by that when it
|
|
|
|
|
* reaches the front.
|
|
|
|
|
*/
|
|
|
|
|
public void queue_operation(AccountOperation op)
|
|
|
|
|
throws EngineError {
|
|
|
|
|
check_open();
|
|
|
|
|
debug("%s: Enqueuing operation: %s", this.to_string(), op.to_string());
|
|
|
|
|
this.processor.enqueue(op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-02-27 01:03:21 +11:00
|
|
|
* Claims a new IMAP account session from the pool.
|
2018-01-26 09:52:20 +10:30
|
|
|
*
|
2018-02-27 01:03:21 +11:00
|
|
|
* A new IMAP client session will be retrieved from the pool,
|
|
|
|
|
* connecting if needed, and used for a new account session. This
|
|
|
|
|
* call will wait until the pool is ready to provide sessions. The
|
|
|
|
|
* session must be returned via {@link release_account_session}
|
|
|
|
|
* after use.
|
2018-01-26 09:52:20 +10:30
|
|
|
*
|
|
|
|
|
* The account must have been opened before calling this method.
|
|
|
|
|
*/
|
|
|
|
|
public async Imap.AccountSession claim_account_session(Cancellable? cancellable = null)
|
|
|
|
|
throws Error {
|
|
|
|
|
check_open();
|
|
|
|
|
debug("%s: Acquiring account session", this.to_string());
|
|
|
|
|
yield this.remote_ready_lock.wait_async(cancellable);
|
2018-02-27 01:03:21 +11:00
|
|
|
Imap.ClientSession client =
|
|
|
|
|
yield this.session_pool.claim_authorized_session_async(cancellable);
|
|
|
|
|
return new Imap.AccountSession(this.information.id, client);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns an IMAP account session to the pool for re-use.
|
|
|
|
|
*/
|
|
|
|
|
public void release_account_session(Imap.AccountSession session) {
|
|
|
|
|
debug("%s: Releasing account session", this.to_string());
|
|
|
|
|
Imap.ClientSession? old_session = session.close();
|
|
|
|
|
if (old_session != null) {
|
|
|
|
|
this.session_pool.release_session_async.begin(
|
|
|
|
|
old_session,
|
|
|
|
|
(obj, res) => {
|
|
|
|
|
try {
|
|
|
|
|
this.session_pool.release_session_async.end(res);
|
|
|
|
|
} catch (Error err) {
|
|
|
|
|
debug("%s: Error releasing account session: %s",
|
|
|
|
|
to_string(),
|
|
|
|
|
err.message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
2013-01-17 12:50:30 -08:00
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-02-27 01:17:35 +11:00
|
|
|
* Claims a new IMAP folder session from the pool.
|
2018-01-26 09:52:20 +10:30
|
|
|
*
|
|
|
|
|
* A new IMAP client session will be retrieved from the pool,
|
|
|
|
|
* connecting if needed, and used for a new folder session. This
|
|
|
|
|
* call will wait until the pool is ready to provide sessions. The
|
|
|
|
|
* session must be returned via {@link release_folder_session}
|
|
|
|
|
* after use.
|
2018-02-27 01:17:35 +11:00
|
|
|
*
|
|
|
|
|
* The account must have been opened before calling this method.
|
2018-01-26 09:52:20 +10:30
|
|
|
*/
|
2018-02-27 01:17:35 +11:00
|
|
|
public async Imap.FolderSession claim_folder_session(Geary.FolderPath path,
|
|
|
|
|
Cancellable cancellable)
|
2018-01-26 09:52:20 +10:30
|
|
|
throws Error {
|
|
|
|
|
check_open();
|
2018-02-27 01:17:35 +11:00
|
|
|
debug("%s: Acquiring folder session", this.to_string());
|
|
|
|
|
yield this.remote_ready_lock.wait_async(cancellable);
|
|
|
|
|
|
|
|
|
|
// We manually construct an account session here and then
|
|
|
|
|
// reuse it for the folder session so we only need to claim as
|
|
|
|
|
// single session from the pool, not two.
|
|
|
|
|
|
|
|
|
|
Imap.ClientSession? client =
|
|
|
|
|
yield this.session_pool.claim_authorized_session_async(cancellable);
|
|
|
|
|
Imap.AccountSession account = new Imap.AccountSession(
|
|
|
|
|
this.information.id, client
|
|
|
|
|
);
|
|
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
Imap.Folder? folder = null;
|
2018-02-27 01:17:35 +11:00
|
|
|
GLib.Error? folder_err = null;
|
2017-11-09 18:03:44 +11:00
|
|
|
try {
|
2018-01-26 09:52:20 +10:30
|
|
|
folder = yield account.fetch_folder_async(path, cancellable);
|
2017-11-09 18:03:44 +11:00
|
|
|
} catch (Error err) {
|
2018-02-27 01:17:35 +11:00
|
|
|
folder_err = err;
|
2013-01-17 12:50:30 -08:00
|
|
|
}
|
2018-02-27 01:17:35 +11:00
|
|
|
|
|
|
|
|
account.close();
|
|
|
|
|
|
|
|
|
|
if (folder_err != null) {
|
|
|
|
|
try {
|
2018-01-26 09:52:20 +10:30
|
|
|
yield this.session_pool.release_session_async(client);
|
2018-02-27 01:17:35 +11:00
|
|
|
} catch (Error release_err) {
|
|
|
|
|
debug("Error releasing folder session: %s", release_err.message);
|
2018-01-26 09:52:20 +10:30
|
|
|
}
|
2018-02-27 01:17:35 +11:00
|
|
|
|
|
|
|
|
throw folder_err;
|
2017-11-09 18:03:44 +11:00
|
|
|
}
|
|
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
return yield new Imap.FolderSession(
|
|
|
|
|
this.information.id, client, folder, cancellable
|
|
|
|
|
);
|
2012-06-14 16:47:54 -07:00
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns an IMAP folder session to the pool for cleanup and re-use.
|
|
|
|
|
*/
|
2018-02-27 02:05:58 +11:00
|
|
|
public async void release_folder_session(Imap.FolderSession session) {
|
2018-01-26 09:52:20 +10:30
|
|
|
debug("%s: Releasing folder session", this.to_string());
|
|
|
|
|
Imap.ClientSession? old_session = session.close();
|
|
|
|
|
if (old_session != null) {
|
2018-02-27 02:05:58 +11:00
|
|
|
try {
|
|
|
|
|
yield this.session_pool.release_session_async(old_session);
|
|
|
|
|
} catch (Error err) {
|
|
|
|
|
debug("%s: Error releasing %s session: %s",
|
|
|
|
|
to_string(),
|
|
|
|
|
session.folder.path.to_string(),
|
|
|
|
|
err.message);
|
|
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
}
|
2017-11-09 18:03:44 +11:00
|
|
|
}
|
|
|
|
|
|
2013-06-10 20:07:12 -07:00
|
|
|
public override Gee.Collection<Geary.Folder> list_matching_folders(Geary.FolderPath? parent)
|
|
|
|
|
throws Error {
|
2013-01-31 15:17:44 -08:00
|
|
|
check_open();
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2013-12-12 12:42:02 -08:00
|
|
|
return Geary.traverse<FolderPath>(folder_map.keys)
|
|
|
|
|
.filter(p => {
|
|
|
|
|
FolderPath? path_parent = p.get_parent();
|
|
|
|
|
return ((parent == null && path_parent == null) ||
|
|
|
|
|
(parent != null && path_parent != null && path_parent.equal_to(parent)));
|
|
|
|
|
})
|
|
|
|
|
.map<Geary.Folder>(p => folder_map.get(p))
|
|
|
|
|
.to_array_list();
|
2013-01-17 12:50:30 -08:00
|
|
|
}
|
|
|
|
|
|
2013-01-31 15:17:44 -08:00
|
|
|
public override Gee.Collection<Geary.Folder> list_folders() throws Error {
|
|
|
|
|
check_open();
|
2013-05-14 11:52:02 -07:00
|
|
|
Gee.HashSet<Geary.Folder> all_folders = new Gee.HashSet<Geary.Folder>();
|
2013-06-14 16:34:06 -07:00
|
|
|
all_folders.add_all(folder_map.values);
|
2013-05-14 11:52:02 -07:00
|
|
|
all_folders.add_all(local_only.values);
|
2013-02-25 20:18:37 -08:00
|
|
|
|
2013-05-14 11:52:02 -07:00
|
|
|
return all_folders;
|
2013-01-31 15:17:44 -08:00
|
|
|
}
|
2017-11-03 13:41:36 +11:00
|
|
|
|
2012-07-20 17:51:28 -07:00
|
|
|
public override Geary.ContactStore get_contact_store() {
|
|
|
|
|
return local.contact_store;
|
2014-03-03 15:05:41 -08:00
|
|
|
}
|
2017-09-25 23:21:33 +10:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
/** {@inheritDoc} */
|
2011-07-04 13:54:00 -07:00
|
|
|
public override async bool folder_exists_async(Geary.FolderPath path,
|
2018-01-26 09:52:20 +10:30
|
|
|
Cancellable? cancellable = null)
|
|
|
|
|
throws Error {
|
Remove SQLHeavy: Closes #5034
It is done.
Initial implementation of the new database subsystem
These pieces represent the foundation for ticket #5034
Expanded transactions, added VersionedDatabase
Further expansions of the async code.
Moved async pool logic into Database, where it realistically
belongs.
Further improvements. Introduced geary-db-test.
Added SQL create and update files for Geary.Db
version-001 to version-003 are exact copies of the SQLHeavy scripts
to ensure no slight changes when migrating. version-004 upgrades
the database to remove the ImapFolderPropertiesTable and
ImapMessagePropertiesTable, now that the database code is pure
IMAP.
When we support other messaging systems (such as POP3), those
subsystems will need to code their own database layers OR rely on
the IMAP schema and simply ignore the IMAP-specific fields.
ImapDB.Account fleshed out
ImapDB.Folder is commented out, however. Need to port next.
ImapDB.Folder fleshed out
MessageTable, MessageLocationTable, and AttachementTable are now
handled inside ImapDB.Folder.
chmod -x imap-db-database.vala
OutboxEmailIdentifier/Properties -> SmtpOutboxEmailIdentifier/Properties
Moved SmtpOutboxFolderRoot into its own source file
SmtpOutboxFolder ported to new database code
Move Engine implementations to ImapDB.
Integration and cleanup of new database code with main source
This commit performs the final integration steps to move Geary
completely over to the new database model. This also cleans out
the old SQLHeavy-based code and fixes a handful of small bugs that
were detected during basic test runs.
Moved Outbox to ImapDB
As the Outbox is tied to the database that ImapDB runs, move the
Outbox code into that folder.
Outbox fixes and better parameter checking
Bumped Database thread pool count and made them exclusive
My reasoning is that there may be a need for a lot of threads at
once (when a big batch of commands comes in, especially at
startup). If performance looks ok, we might consider relaxing
this later.
2012-06-14 14:47:53 -07:00
|
|
|
check_open();
|
2018-01-26 09:52:20 +10:30
|
|
|
return this.local_only.has_key(path) || this.folder_map.has_key(path);
|
2014-03-03 15:05:41 -08:00
|
|
|
}
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
/** {@inheritDoc} */
|
2011-07-01 15:40:20 -07:00
|
|
|
public override async Geary.Folder fetch_folder_async(Geary.FolderPath path,
|
2017-11-23 16:47:19 +11:00
|
|
|
Cancellable? cancellable = null)
|
|
|
|
|
throws Error {
|
Remove SQLHeavy: Closes #5034
It is done.
Initial implementation of the new database subsystem
These pieces represent the foundation for ticket #5034
Expanded transactions, added VersionedDatabase
Further expansions of the async code.
Moved async pool logic into Database, where it realistically
belongs.
Further improvements. Introduced geary-db-test.
Added SQL create and update files for Geary.Db
version-001 to version-003 are exact copies of the SQLHeavy scripts
to ensure no slight changes when migrating. version-004 upgrades
the database to remove the ImapFolderPropertiesTable and
ImapMessagePropertiesTable, now that the database code is pure
IMAP.
When we support other messaging systems (such as POP3), those
subsystems will need to code their own database layers OR rely on
the IMAP schema and simply ignore the IMAP-specific fields.
ImapDB.Account fleshed out
ImapDB.Folder is commented out, however. Need to port next.
ImapDB.Folder fleshed out
MessageTable, MessageLocationTable, and AttachementTable are now
handled inside ImapDB.Folder.
chmod -x imap-db-database.vala
OutboxEmailIdentifier/Properties -> SmtpOutboxEmailIdentifier/Properties
Moved SmtpOutboxFolderRoot into its own source file
SmtpOutboxFolder ported to new database code
Move Engine implementations to ImapDB.
Integration and cleanup of new database code with main source
This commit performs the final integration steps to move Geary
completely over to the new database model. This also cleans out
the old SQLHeavy-based code and fixes a handful of small bugs that
were detected during basic test runs.
Moved Outbox to ImapDB
As the Outbox is tied to the database that ImapDB runs, move the
Outbox code into that folder.
Outbox fixes and better parameter checking
Bumped Database thread pool count and made them exclusive
My reasoning is that there may be a need for a lot of threads at
once (when a big batch of commands comes in, especially at
startup). If performance looks ok, we might consider relaxing
this later.
2012-06-14 14:47:53 -07:00
|
|
|
check_open();
|
Use Imap.ClientSession for mapping between folder and mailbox names.
Now that ClientSession is storing per-connection inbox and namespace
data, we want to always consult with the account or folder's session to
determine the correct Imap.MailboxSpecifier name for a high-level
Geary.FolderPath, and vice versa.
This is enforced by removing all inbox and delim information from Imap.Accout
and Imap.Folder, and providing methods to translate between
MailboxSpecifier and FolderPath, then fixing up the fallout.
* src/engine/imap/transport/imap-client-session.vala (ClientSession): Add
methods for obtaining the delimiter and converting between foler paths
and mailbox names, based on information obtainined from the IMAP server
for this connection.
* src/engine/imap/api/imap-account.vala (Account): Remove
path_to_mailbox, inbox_specifier, and hierarchy_delimiter object
attributes since these are connection specific. Convert from caching
all mailbox specifiers retreived from the server and some Imap.Folder
instances to simply cache all Folder instances. Substantially rework
the public API implementation as below to support this and update all
call sites.
(Account::folder_exists_async): Actually hit the server rather than
justing looking at the cache to determine if the folder exists, remove
a folder from the cache if not.
(Account::fetch_folder_async): Renamed from
"fetch_unrecycled_folder_async" so as to be a bit less obtuse, updated
call sites.
(Account::fetch_folder_cached_async): Renamed from fetch_folder_async
to be a bit more obvious. Substantially simplified, deleates to
fetch_folder_async() rather than list_children_async() method, so we
don't need list all children of its parent and hence to do a status for
each. Rather than passing a "created" flag out and forcing call sites
to then do a second call to update message counts, just simply take a
boolean param indicating if we should do it here.
(Account::list_child_folders_async): Simplified a bit, updated to
create and cache an Imap.Folder for each child.
(Account::fetch_counts_async): Removed and merged into
fetch_folder_cached_async() since the only call site was replaced by
the new refresh_counts param on that method.
(Account::send_list_async, send_status_async): renamed from
list_children_async and fetch_status_async, to make it obvious about
what they are actually doing. Added an instance of ClientSession as
first param so they don't have to re-claim the same session.
(Account::send_command_async, send_multiple_async): Also add an
instance of ClientSession as first param so they don't have to re-claim
a session after the public methods calling them have already done so.
* src/engine/imap/api/imap-folder.vala (Folder): As for Imap.Account,
remove mailbox info delim (these were redundant anyway) and replace
uses on the folder's client session for converting between folder paths
and mailbox names.
* src/engine/api/geary-folder-path.vala (FolderPath): Remove
get_fullpath(), since having it would only encourage API users to do
the wrong thing.
* src/engine/imap/message/imap-mailbox-specifier.vala
(MailboxSpecifier::from_folder_path): Ensure the inbox name is also
passed in and manually construct a mailbox name from a FolderPath so
the connection's actual inbox name ca be substituted in.
2017-11-02 18:05:54 +11:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
Geary.Folder? folder = this.local_only.get(path);
|
|
|
|
|
if (folder == null) {
|
|
|
|
|
folder = this.folder_map.get(path);
|
Use Imap.ClientSession for mapping between folder and mailbox names.
Now that ClientSession is storing per-connection inbox and namespace
data, we want to always consult with the account or folder's session to
determine the correct Imap.MailboxSpecifier name for a high-level
Geary.FolderPath, and vice versa.
This is enforced by removing all inbox and delim information from Imap.Accout
and Imap.Folder, and providing methods to translate between
MailboxSpecifier and FolderPath, then fixing up the fallout.
* src/engine/imap/transport/imap-client-session.vala (ClientSession): Add
methods for obtaining the delimiter and converting between foler paths
and mailbox names, based on information obtainined from the IMAP server
for this connection.
* src/engine/imap/api/imap-account.vala (Account): Remove
path_to_mailbox, inbox_specifier, and hierarchy_delimiter object
attributes since these are connection specific. Convert from caching
all mailbox specifiers retreived from the server and some Imap.Folder
instances to simply cache all Folder instances. Substantially rework
the public API implementation as below to support this and update all
call sites.
(Account::folder_exists_async): Actually hit the server rather than
justing looking at the cache to determine if the folder exists, remove
a folder from the cache if not.
(Account::fetch_folder_async): Renamed from
"fetch_unrecycled_folder_async" so as to be a bit less obtuse, updated
call sites.
(Account::fetch_folder_cached_async): Renamed from fetch_folder_async
to be a bit more obvious. Substantially simplified, deleates to
fetch_folder_async() rather than list_children_async() method, so we
don't need list all children of its parent and hence to do a status for
each. Rather than passing a "created" flag out and forcing call sites
to then do a second call to update message counts, just simply take a
boolean param indicating if we should do it here.
(Account::list_child_folders_async): Simplified a bit, updated to
create and cache an Imap.Folder for each child.
(Account::fetch_counts_async): Removed and merged into
fetch_folder_cached_async() since the only call site was replaced by
the new refresh_counts param on that method.
(Account::send_list_async, send_status_async): renamed from
list_children_async and fetch_status_async, to make it obvious about
what they are actually doing. Added an instance of ClientSession as
first param so they don't have to re-claim the same session.
(Account::send_command_async, send_multiple_async): Also add an
instance of ClientSession as first param so they don't have to re-claim
a session after the public methods calling them have already done so.
* src/engine/imap/api/imap-folder.vala (Folder): As for Imap.Account,
remove mailbox info delim (these were redundant anyway) and replace
uses on the folder's client session for converting between folder paths
and mailbox names.
* src/engine/api/geary-folder-path.vala (FolderPath): Remove
get_fullpath(), since having it would only encourage API users to do
the wrong thing.
* src/engine/imap/message/imap-mailbox-specifier.vala
(MailboxSpecifier::from_folder_path): Ensure the inbox name is also
passed in and manually construct a mailbox name from a FolderPath so
the connection's actual inbox name ca be substituted in.
2017-11-02 18:05:54 +11:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
if (folder == null) {
|
2018-09-26 23:20:00 +10:00
|
|
|
throw new EngineError.NOT_FOUND(
|
|
|
|
|
"Folder not found: %s", path.to_string()
|
|
|
|
|
);
|
2017-11-23 16:47:19 +11:00
|
|
|
}
|
2014-03-03 15:05:41 -08:00
|
|
|
}
|
2017-11-23 16:47:19 +11:00
|
|
|
return folder;
|
2014-03-03 15:05:41 -08:00
|
|
|
}
|
2017-11-23 16:47:19 +11:00
|
|
|
|
|
|
|
|
public override async Geary.Folder get_required_special_folder_async(Geary.SpecialFolderType special,
|
|
|
|
|
Cancellable? cancellable) throws Error {
|
|
|
|
|
if (!(special in get_supported_special_folders())) {
|
|
|
|
|
throw new EngineError.BAD_PARAMETERS(
|
|
|
|
|
"Invalid special folder type %s passed to get_required_special_folder_async",
|
|
|
|
|
special.to_string());
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
2017-11-23 16:47:19 +11:00
|
|
|
check_open();
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2018-02-27 01:03:21 +11:00
|
|
|
Geary.Folder? folder = get_special_folder(special);
|
|
|
|
|
if (folder == null) {
|
|
|
|
|
Imap.AccountSession account = yield claim_account_session();
|
|
|
|
|
try {
|
|
|
|
|
folder = yield ensure_special_folder_async(account, special, cancellable);
|
|
|
|
|
} finally {
|
|
|
|
|
release_account_session(account);
|
2015-02-05 17:57:27 -08:00
|
|
|
}
|
2014-03-03 15:05:41 -08:00
|
|
|
}
|
2018-02-27 01:03:21 +11:00
|
|
|
return folder;
|
2014-03-03 15:05:41 -08:00
|
|
|
}
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
public override async void send_email_async(Geary.ComposedEmail composed,
|
|
|
|
|
Cancellable? cancellable = null) throws Error {
|
|
|
|
|
check_open();
|
2018-05-28 18:53:11 +10:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
// TODO: we should probably not use someone else's FQDN in something
|
|
|
|
|
// that's supposed to be globally unique...
|
|
|
|
|
Geary.RFC822.Message rfc822 = new Geary.RFC822.Message.from_composed_email(
|
2018-05-28 18:53:11 +10:00
|
|
|
composed, GMime.utils_generate_message_id(
|
|
|
|
|
information.smtp.endpoint.remote_address.hostname
|
|
|
|
|
));
|
|
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
// don't use create_email_async() as that requires the folder be open to use
|
|
|
|
|
yield local.outbox.enqueue_email_async(rfc822, cancellable);
|
2013-02-25 20:18:37 -08:00
|
|
|
}
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
private void on_email_sent(Geary.RFC822.Message rfc822) {
|
|
|
|
|
notify_email_sent(rfc822);
|
2013-02-25 20:18:37 -08:00
|
|
|
}
|
|
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
private ImapDB.EmailIdentifier check_id(Geary.EmailIdentifier id) throws EngineError {
|
|
|
|
|
ImapDB.EmailIdentifier? imapdb_id = id as ImapDB.EmailIdentifier;
|
|
|
|
|
if (imapdb_id == null)
|
|
|
|
|
throw new EngineError.BAD_PARAMETERS("EmailIdentifier %s not from ImapDB folder", id.to_string());
|
2013-02-25 20:18:37 -08:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
return imapdb_id;
|
2013-02-25 20:18:37 -08:00
|
|
|
}
|
|
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
private Gee.Collection<ImapDB.EmailIdentifier> check_ids(Gee.Collection<Geary.EmailIdentifier> ids)
|
|
|
|
|
throws EngineError {
|
|
|
|
|
foreach (Geary.EmailIdentifier id in ids) {
|
|
|
|
|
if (!(id is ImapDB.EmailIdentifier))
|
|
|
|
|
throw new EngineError.BAD_PARAMETERS("EmailIdentifier %s not from ImapDB folder", id.to_string());
|
2013-02-25 20:18:37 -08:00
|
|
|
}
|
|
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
return (Gee.Collection<ImapDB.EmailIdentifier>) ids;
|
2013-02-25 20:18:37 -08:00
|
|
|
}
|
|
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
public override async Gee.MultiMap<Geary.Email, Geary.FolderPath?>? local_search_message_id_async(
|
|
|
|
|
Geary.RFC822.MessageID message_id, Geary.Email.Field requested_fields, bool partial_ok,
|
|
|
|
|
Gee.Collection<Geary.FolderPath?>? folder_blacklist, Geary.EmailFlags? flag_blacklist,
|
|
|
|
|
Cancellable? cancellable = null) throws Error {
|
|
|
|
|
return yield local.search_message_id_async(
|
|
|
|
|
message_id, requested_fields, partial_ok, folder_blacklist, flag_blacklist, cancellable);
|
2013-05-31 17:56:48 -07:00
|
|
|
}
|
|
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
public override async Geary.Email local_fetch_email_async(Geary.EmailIdentifier email_id,
|
|
|
|
|
Geary.Email.Field required_fields, Cancellable? cancellable = null) throws Error {
|
|
|
|
|
return yield local.fetch_email_async(check_id(email_id), required_fields, cancellable);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Geary.SearchQuery open_search(string query, SearchQuery.Strategy strategy) {
|
|
|
|
|
return new ImapDB.SearchQuery(local, query, strategy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override async Gee.Collection<Geary.EmailIdentifier>? local_search_async(Geary.SearchQuery query,
|
|
|
|
|
int limit = 100, int offset = 0, Gee.Collection<Geary.FolderPath?>? folder_blacklist = null,
|
|
|
|
|
Gee.Collection<Geary.EmailIdentifier>? search_ids = null, Cancellable? cancellable = null) throws Error {
|
|
|
|
|
if (offset < 0)
|
|
|
|
|
throw new EngineError.BAD_PARAMETERS("Offset must not be negative");
|
2013-05-31 17:56:48 -07:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
return yield local.search_async(query, limit, offset, folder_blacklist, search_ids, cancellable);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override async Gee.Set<string>? get_search_matches_async(Geary.SearchQuery query,
|
|
|
|
|
Gee.Collection<Geary.EmailIdentifier> ids, Cancellable? cancellable = null) throws Error {
|
|
|
|
|
return yield local.get_search_matches_async(query, check_ids(ids), cancellable);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override async Gee.MultiMap<Geary.EmailIdentifier, Geary.FolderPath>? get_containing_folders_async(
|
|
|
|
|
Gee.Collection<Geary.EmailIdentifier> ids, Cancellable? cancellable) throws Error {
|
|
|
|
|
return yield local.get_containing_folders_async(ids, cancellable);
|
|
|
|
|
}
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
/**
|
|
|
|
|
* Constructs a set of folders and adds them to the account.
|
|
|
|
|
*
|
|
|
|
|
* This constructs a high-level folder representation for each
|
|
|
|
|
* folder, adds them to this account object, fires the appropriate
|
|
|
|
|
* signals, then returns them. Both the local and remote folder
|
|
|
|
|
* equivalents need to exist beforehand — they are not created.
|
|
|
|
|
*
|
|
|
|
|
* If `are_existing` is true, the folders are assumed to have been
|
2018-01-15 16:17:11 +11:00
|
|
|
* seen before and the {@link Geary.Account.folders_created} signal is
|
|
|
|
|
* not fired.
|
2017-11-23 16:47:19 +11:00
|
|
|
*/
|
|
|
|
|
internal Gee.List<Geary.Folder> add_folders(Gee.Collection<ImapDB.Folder> db_folders,
|
|
|
|
|
bool are_existing) {
|
|
|
|
|
Gee.List<Geary.Folder> built_folders = new Gee.ArrayList<Geary.Folder>();
|
|
|
|
|
foreach(ImapDB.Folder db_folder in db_folders) {
|
|
|
|
|
if (!this.folder_map.has_key(db_folder.get_path())) {
|
|
|
|
|
MinimalFolder folder = new_folder(db_folder);
|
|
|
|
|
folder.report_problem.connect(notify_report_problem);
|
|
|
|
|
built_folders.add(folder);
|
|
|
|
|
this.folder_map.set(folder.path, folder);
|
|
|
|
|
}
|
2011-07-01 15:40:20 -07:00
|
|
|
}
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
if (built_folders.size > 0) {
|
|
|
|
|
built_folders = sort_by_path(built_folders);
|
|
|
|
|
notify_folders_available_unavailable(built_folders, null);
|
|
|
|
|
if (!are_existing) {
|
|
|
|
|
notify_folders_created(built_folders);
|
2013-05-31 17:56:48 -07:00
|
|
|
}
|
2011-07-01 15:40:20 -07:00
|
|
|
}
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
return built_folders;
|
2013-05-31 17:56:48 -07:00
|
|
|
}
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2017-11-28 10:12:41 +11:00
|
|
|
/**
|
|
|
|
|
* Fires appropriate signals for a single altered folder.
|
|
|
|
|
*
|
|
|
|
|
* This is functionally equivalent to {@link update_folders}.
|
|
|
|
|
*/
|
|
|
|
|
internal void update_folder(Geary.Folder folder) {
|
|
|
|
|
Gee.Collection<Geary.Folder> folders =
|
|
|
|
|
new Gee.LinkedList<Geary.Folder>();
|
|
|
|
|
folders.add(folder);
|
|
|
|
|
debug("Contents altered!");
|
|
|
|
|
notify_folders_contents_altered(folders);
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
/**
|
|
|
|
|
* Fires appropriate signals for folders have been altered.
|
2017-11-28 10:12:41 +11:00
|
|
|
*
|
|
|
|
|
* This is functionally equivalent to {@link update_folder}.
|
2017-11-23 16:47:19 +11:00
|
|
|
*/
|
|
|
|
|
internal void update_folders(Gee.Collection<Geary.Folder> folders) {
|
|
|
|
|
if (!folders.is_empty) {
|
|
|
|
|
notify_folders_contents_altered(sort_by_path(folders));
|
2011-07-01 15:40:20 -07:00
|
|
|
}
|
2017-11-23 16:47:19 +11:00
|
|
|
}
|
|
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
/**
|
|
|
|
|
* Marks a folder as a specific special folder type.
|
|
|
|
|
*/
|
|
|
|
|
internal void promote_folders(Gee.Map<Geary.SpecialFolderType,Geary.Folder> specials) {
|
|
|
|
|
Gee.Set<Geary.Folder> changed = new Gee.HashSet<Geary.Folder>();
|
|
|
|
|
foreach (Geary.SpecialFolderType special in specials.keys) {
|
|
|
|
|
MinimalFolder? minimal = specials.get(special) as MinimalFolder;
|
|
|
|
|
if (minimal.special_folder_type != special) {
|
|
|
|
|
minimal.set_special_folder_type(special);
|
|
|
|
|
changed.add(minimal);
|
|
|
|
|
|
|
|
|
|
MinimalFolder? existing = null;
|
|
|
|
|
try {
|
|
|
|
|
existing = get_special_folder(special) as MinimalFolder;
|
|
|
|
|
} catch (Error err) {
|
|
|
|
|
debug("%s: Error getting special folder: %s",
|
|
|
|
|
to_string(), err.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (existing != null && existing != minimal) {
|
|
|
|
|
existing.set_special_folder_type(SpecialFolderType.NONE);
|
|
|
|
|
changed.add(existing);
|
2013-06-05 18:24:42 -07:00
|
|
|
}
|
2013-05-31 17:56:48 -07:00
|
|
|
}
|
|
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
|
|
|
|
|
if (!changed.is_empty) {
|
|
|
|
|
folders_special_type(changed);
|
|
|
|
|
}
|
2011-06-16 16:27:08 -07:00
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
/**
|
|
|
|
|
* Removes a set of folders from the account.
|
|
|
|
|
*
|
|
|
|
|
* This removes the high-level folder representations from this
|
|
|
|
|
* account object, and fires the appropriate signals. Deletion of
|
|
|
|
|
* both the local and remote folder equivalents must be handled
|
|
|
|
|
* before, then after calling this method.
|
|
|
|
|
*
|
|
|
|
|
* A collection of folders that was actually removed is returned.
|
|
|
|
|
*/
|
|
|
|
|
internal Gee.List<MinimalFolder> remove_folders(Gee.Collection<Geary.Folder> folders) {
|
|
|
|
|
Gee.List<MinimalFolder> removed = new Gee.ArrayList<MinimalFolder>();
|
|
|
|
|
foreach(Geary.Folder folder in folders) {
|
|
|
|
|
MinimalFolder? impl = this.folder_map.get(folder.path);
|
|
|
|
|
if (impl != null) {
|
|
|
|
|
this.folder_map.unset(folder.path);
|
|
|
|
|
removed.add(impl);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!removed.is_empty) {
|
|
|
|
|
removed = (Gee.List<MinimalFolder>) sort_by_path(removed);
|
|
|
|
|
notify_folders_available_unavailable(null, removed);
|
|
|
|
|
notify_folders_deleted(removed);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return removed;
|
2012-07-20 17:51:28 -07:00
|
|
|
}
|
2017-09-25 23:21:33 +10:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
/**
|
2018-02-27 01:03:21 +11:00
|
|
|
* Locates a special folder, creating it if needed.
|
2017-11-23 16:47:19 +11:00
|
|
|
*/
|
2018-02-27 01:03:21 +11:00
|
|
|
internal async Geary.Folder ensure_special_folder_async(Imap.AccountSession remote,
|
|
|
|
|
Geary.SpecialFolderType special,
|
2017-11-23 16:47:19 +11:00
|
|
|
Cancellable? cancellable)
|
|
|
|
|
throws Error {
|
2014-02-11 15:24:01 -08:00
|
|
|
Geary.FolderPath? path = information.get_special_folder_path(special);
|
|
|
|
|
if (path != null) {
|
|
|
|
|
debug("Previously used %s for special folder %s", path.to_string(), special.to_string());
|
|
|
|
|
} else {
|
|
|
|
|
// This is the first time we're turning a non-special folder into a special one.
|
|
|
|
|
// After we do this, we'll record which one we picked in the account info.
|
2018-01-26 09:52:20 +10:30
|
|
|
Geary.FolderPath root =
|
2018-02-27 01:03:21 +11:00
|
|
|
yield remote.get_default_personal_namespace(cancellable);
|
2016-06-15 18:24:50 -04:00
|
|
|
Gee.List<string> search_names = special_search_names.get(special);
|
2014-02-11 15:24:01 -08:00
|
|
|
foreach (string search_name in search_names) {
|
2017-11-03 13:48:36 +11:00
|
|
|
Geary.FolderPath search_path = root.get_child(search_name);
|
2014-02-11 15:24:01 -08:00
|
|
|
foreach (Geary.FolderPath test_path in folder_map.keys) {
|
|
|
|
|
if (test_path.compare_normalized_ci(search_path) == 0) {
|
|
|
|
|
path = search_path;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (path != null)
|
|
|
|
|
break;
|
|
|
|
|
}
|
2017-11-03 13:48:36 +11:00
|
|
|
|
2014-02-11 15:24:01 -08:00
|
|
|
if (path == null)
|
2017-11-03 13:48:36 +11:00
|
|
|
path = root.get_child(search_names[0]);
|
|
|
|
|
|
2014-02-11 15:24:01 -08:00
|
|
|
information.set_special_folder_path(special, path);
|
|
|
|
|
}
|
2017-11-03 13:48:36 +11:00
|
|
|
|
2018-09-26 23:28:43 +10:00
|
|
|
if (!this.folder_map.has_key(path)) {
|
|
|
|
|
debug("Creating \"%s\" to use as special folder %s",
|
|
|
|
|
path.to_string(), special.to_string());
|
|
|
|
|
|
|
|
|
|
GLib.Error? created_err = null;
|
|
|
|
|
try {
|
|
|
|
|
yield remote.create_folder_async(path, special, cancellable);
|
|
|
|
|
} catch (GLib.Error err) {
|
|
|
|
|
// Hang on to the error since the folder might exist
|
|
|
|
|
// on the remote, so try fetching it anyway.
|
|
|
|
|
created_err = err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Imap.Folder? remote_folder = null;
|
|
|
|
|
try {
|
|
|
|
|
remote_folder = yield remote.fetch_folder_async(
|
|
|
|
|
path, cancellable
|
|
|
|
|
);
|
|
|
|
|
} catch (GLib.Error err) {
|
|
|
|
|
// If we couldn't fetch it after also failing to
|
|
|
|
|
// create it, it's probably due to the problem
|
|
|
|
|
// creating it, so throw that error instead.
|
|
|
|
|
if (created_err != null) {
|
|
|
|
|
throw created_err;
|
|
|
|
|
} else {
|
|
|
|
|
throw err;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ImapDB.Folder local_folder = yield this.local.clone_folder_async(
|
|
|
|
|
remote_folder, cancellable
|
|
|
|
|
);
|
|
|
|
|
add_folders(Collection.single(local_folder), created_err != null);
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
2017-11-03 13:53:14 +11:00
|
|
|
|
2018-09-26 23:28:43 +10:00
|
|
|
Geary.Folder special_folder = this.folder_map.get(path);
|
|
|
|
|
promote_folders(
|
|
|
|
|
Collection.single_map<Geary.SpecialFolderType,Geary.Folder>(
|
|
|
|
|
special, special_folder
|
|
|
|
|
)
|
|
|
|
|
);
|
2018-01-26 09:52:20 +10:30
|
|
|
|
2018-09-26 23:28:43 +10:00
|
|
|
return special_folder;
|
2017-09-25 23:21:33 +10:00
|
|
|
}
|
|
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
/**
|
|
|
|
|
* Constructs a concrete folder implementation.
|
|
|
|
|
*
|
|
|
|
|
* Subclasses should implement this to return their flavor of a
|
|
|
|
|
* MinimalFolder with the appropriate interfaces attached. The
|
|
|
|
|
* returned folder should have its SpecialFolderType set using
|
|
|
|
|
* either the properties from the local folder or its path.
|
|
|
|
|
*
|
|
|
|
|
* This won't be called to build the Outbox or search folder, but
|
|
|
|
|
* for all others (including Inbox) it will.
|
|
|
|
|
*/
|
2017-11-24 15:39:14 +11:00
|
|
|
protected abstract MinimalFolder new_folder(ImapDB.Folder local_folder);
|
|
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
/**
|
|
|
|
|
* Constructs a concrete search folder implementation.
|
|
|
|
|
*
|
|
|
|
|
* Subclasses with specific SearchFolder implementations should
|
|
|
|
|
* override this to return the correct subclass.
|
|
|
|
|
*/
|
|
|
|
|
protected virtual SearchFolder new_search_folder() {
|
|
|
|
|
return new ImapDB.SearchFolder(this);
|
2011-07-04 13:54:00 -07:00
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
|
|
|
|
|
/** {@inheritDoc} */
|
|
|
|
|
protected override void notify_folders_available_unavailable(Gee.List<Geary.Folder>? available,
|
|
|
|
|
Gee.List<Geary.Folder>? unavailable) {
|
|
|
|
|
base.notify_folders_available_unavailable(available, unavailable);
|
|
|
|
|
if (available != null) {
|
|
|
|
|
foreach (Geary.Folder folder in available) {
|
|
|
|
|
folder.email_appended.connect(notify_email_appended);
|
|
|
|
|
folder.email_inserted.connect(notify_email_inserted);
|
|
|
|
|
folder.email_removed.connect(notify_email_removed);
|
|
|
|
|
folder.email_locally_complete.connect(notify_email_locally_complete);
|
|
|
|
|
folder.email_flags_changed.connect(notify_email_flags_changed);
|
|
|
|
|
}
|
2011-07-04 13:54:00 -07:00
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
if (unavailable != null) {
|
|
|
|
|
foreach (Geary.Folder folder in unavailable) {
|
|
|
|
|
folder.email_appended.disconnect(notify_email_appended);
|
|
|
|
|
folder.email_inserted.disconnect(notify_email_inserted);
|
|
|
|
|
folder.email_removed.disconnect(notify_email_removed);
|
|
|
|
|
folder.email_locally_complete.disconnect(notify_email_locally_complete);
|
|
|
|
|
folder.email_flags_changed.disconnect(notify_email_flags_changed);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** {@inheritDoc} */
|
|
|
|
|
protected override void notify_email_appended(Geary.Folder folder, Gee.Collection<Geary.EmailIdentifier> ids) {
|
|
|
|
|
base.notify_email_appended(folder, ids);
|
|
|
|
|
schedule_unseen_update(folder);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** {@inheritDoc} */
|
|
|
|
|
protected override void notify_email_inserted(Geary.Folder folder, Gee.Collection<Geary.EmailIdentifier> ids) {
|
|
|
|
|
base.notify_email_inserted(folder, ids);
|
|
|
|
|
schedule_unseen_update(folder);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** {@inheritDoc} */
|
|
|
|
|
protected override void notify_email_removed(Geary.Folder folder, Gee.Collection<Geary.EmailIdentifier> ids) {
|
|
|
|
|
base.notify_email_removed(folder, ids);
|
|
|
|
|
schedule_unseen_update(folder);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** {@inheritDoc} */
|
|
|
|
|
protected override void notify_email_flags_changed(Geary.Folder folder,
|
|
|
|
|
Gee.Map<Geary.EmailIdentifier, Geary.EmailFlags> flag_map) {
|
|
|
|
|
base.notify_email_flags_changed(folder, flag_map);
|
|
|
|
|
schedule_unseen_update(folder);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-21 11:21:21 +10:00
|
|
|
/** Fires a {@link Account.report_problem} signal for an IMAP service. */
|
2018-01-26 09:52:20 +10:30
|
|
|
protected void notify_imap_problem(Geary.ProblemType type, Error? err) {
|
2018-05-28 18:53:11 +10:00
|
|
|
notify_service_problem(type, this.information.imap, err);
|
2018-01-26 09:52:20 +10:30
|
|
|
}
|
|
|
|
|
|
2017-11-24 15:39:14 +11:00
|
|
|
/**
|
|
|
|
|
* Hooks up and queues an {@link UpdateRemoteFolders} operation.
|
|
|
|
|
*/
|
|
|
|
|
private void update_remote_folders() {
|
2017-11-28 09:51:53 +11:00
|
|
|
this.refresh_folder_timer.reset();
|
|
|
|
|
|
2017-11-24 15:39:14 +11:00
|
|
|
UpdateRemoteFolders op = new UpdateRemoteFolders(
|
|
|
|
|
this,
|
|
|
|
|
this.local_only.keys,
|
|
|
|
|
get_supported_special_folders()
|
|
|
|
|
);
|
|
|
|
|
op.completed.connect(() => {
|
|
|
|
|
this.refresh_folder_timer.start();
|
|
|
|
|
});
|
|
|
|
|
try {
|
|
|
|
|
queue_operation(op);
|
|
|
|
|
} catch (Error err) {
|
|
|
|
|
// oh well
|
2011-07-04 13:54:00 -07:00
|
|
|
}
|
2011-06-16 16:27:08 -07:00
|
|
|
}
|
2016-06-05 18:36:16 +10:00
|
|
|
|
2015-01-09 15:09:53 -08:00
|
|
|
/**
|
2017-11-24 15:39:14 +11:00
|
|
|
* Hooks up and queues an {@link RefreshFolderUnseen} operation.
|
2015-01-09 15:09:53 -08:00
|
|
|
*/
|
2017-11-24 15:39:14 +11:00
|
|
|
private void schedule_unseen_update(Geary.Folder folder) {
|
|
|
|
|
MinimalFolder? impl = folder as MinimalFolder;
|
|
|
|
|
if (impl != null) {
|
|
|
|
|
impl.refresh_unseen();
|
2015-01-09 15:09:53 -08:00
|
|
|
}
|
2017-11-24 15:39:14 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected virtual Geary.SpecialFolderType[] get_supported_special_folders() {
|
|
|
|
|
return SUPPORTED_SPECIAL_FOLDERS;
|
2015-01-09 15:09:53 -08:00
|
|
|
}
|
2016-06-15 18:24:50 -04:00
|
|
|
|
|
|
|
|
private void compile_special_search_names() {
|
|
|
|
|
/*
|
|
|
|
|
* Compiles the list of names used to search for special
|
|
|
|
|
* folders when they aren't known in advance and the server
|
|
|
|
|
* supports neither SPECIAL-USE not XLIST.
|
|
|
|
|
*
|
|
|
|
|
* Uses both translated and untranslated names in case the
|
|
|
|
|
* server has not localised the folders that match the login
|
|
|
|
|
* session's language. Also checks for lower-case versions of
|
|
|
|
|
* each.
|
|
|
|
|
*/
|
2017-09-25 23:21:33 +10:00
|
|
|
foreach (Geary.SpecialFolderType type in get_supported_special_folders()) {
|
2016-06-15 18:24:50 -04:00
|
|
|
Gee.List<string> compiled = new Gee.ArrayList<string>();
|
|
|
|
|
foreach (string names in get_special_search_names(type)) {
|
|
|
|
|
foreach (string name in names.split("|")) {
|
|
|
|
|
name = name.strip();
|
|
|
|
|
if (name.length != 0) {
|
|
|
|
|
if (!(name in compiled)) {
|
|
|
|
|
compiled.add(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
name = name.down();
|
|
|
|
|
if (!(name in compiled)) {
|
|
|
|
|
compiled.add(name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
special_search_names.set(type, compiled);
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
|
|
|
|
}
|
2016-06-15 18:24:50 -04:00
|
|
|
|
|
|
|
|
private Gee.List<string> get_special_search_names(Geary.SpecialFolderType type) {
|
|
|
|
|
Gee.List<string> loc_names = new Gee.ArrayList<string>();
|
|
|
|
|
Gee.List<string> unloc_names = new Gee.ArrayList<string>();
|
|
|
|
|
switch (type) {
|
|
|
|
|
case Geary.SpecialFolderType.DRAFTS:
|
|
|
|
|
// List of general possible folder names to match for the
|
|
|
|
|
// Draft mailbox. Separate names using a vertical bar and
|
|
|
|
|
// put the most common localized name to the front for the
|
|
|
|
|
// default. English names do not need to be included.
|
|
|
|
|
loc_names.add(_("Drafts | Draft"));
|
|
|
|
|
unloc_names.add("Drafts | Draft");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Geary.SpecialFolderType.SENT:
|
|
|
|
|
// List of general possible folder names to match for the
|
|
|
|
|
// Sent mailbox. Separate names using a vertical bar and
|
|
|
|
|
// put the most common localized name to the front for the
|
|
|
|
|
// default. English names do not need to be included.
|
|
|
|
|
loc_names.add(_("Sent | Sent Mail | Sent Email | Sent E-Mail"));
|
|
|
|
|
unloc_names.add("Sent | Sent Mail | Sent Email | Sent E-Mail");
|
|
|
|
|
|
|
|
|
|
// The localised name(s) of the Sent folder name as used
|
|
|
|
|
// by MS Outlook/Exchange.
|
|
|
|
|
loc_names.add(NC_("Outlook localised name", "Sent Items"));
|
|
|
|
|
unloc_names.add("Sent Items");
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Geary.SpecialFolderType.SPAM:
|
|
|
|
|
// List of general possible folder names to match for the
|
|
|
|
|
// Spam mailbox. Separate names using a vertical bar and
|
|
|
|
|
// put the most common localized name to the front for the
|
|
|
|
|
// default. English names do not need to be included.
|
|
|
|
|
loc_names.add(_("Junk | Spam | Junk Mail | Junk Email | Junk E-Mail | Bulk Mail | Bulk Email | Bulk E-Mail"));
|
|
|
|
|
unloc_names.add("Junk | Spam | Junk Mail | Junk Email | Junk E-Mail | Bulk Mail | Bulk Email | Bulk E-Mail");
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Geary.SpecialFolderType.TRASH:
|
|
|
|
|
// List of general possible folder names to match for the
|
|
|
|
|
// Trash mailbox. Separate names using a vertical bar and
|
|
|
|
|
// put the most common localized name to the front for the
|
|
|
|
|
// default. English names do not need to be included.
|
|
|
|
|
loc_names.add(_("Trash | Rubbish | Rubbish Bin"));
|
|
|
|
|
unloc_names.add("Trash | Rubbish | Rubbish Bin");
|
|
|
|
|
|
|
|
|
|
// The localised name(s) of the Trash folder name as used
|
|
|
|
|
// by MS Outlook/Exchange.
|
|
|
|
|
loc_names.add(NC_("Outlook localised name", "Deleted Items"));
|
|
|
|
|
unloc_names.add("Deleted Items");
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Geary.SpecialFolderType.ARCHIVE:
|
|
|
|
|
// List of general possible folder names to match for the
|
|
|
|
|
// Archive mailbox. Separate names using a vertical bar
|
|
|
|
|
// and put the most common localized name to the front for
|
|
|
|
|
// the default. English names do not need to be included.
|
|
|
|
|
loc_names.add(_("Archive | Archives"));
|
|
|
|
|
unloc_names.add("Archive | Archives");
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
loc_names.add_all(unloc_names);
|
|
|
|
|
return loc_names;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
private void check_open() throws EngineError {
|
|
|
|
|
if (!open)
|
|
|
|
|
throw new EngineError.OPEN_REQUIRED("Account %s not opened", to_string());
|
2017-11-23 16:47:19 +11:00
|
|
|
}
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
private void on_operation_error(AccountOperation op, Error error) {
|
|
|
|
|
if (error is ImapError) {
|
2018-05-28 18:53:11 +10:00
|
|
|
notify_service_problem(
|
|
|
|
|
ProblemType.SERVER_ERROR, this.information.imap, error
|
|
|
|
|
);
|
2017-11-23 16:47:19 +11:00
|
|
|
} else if (error is IOError) {
|
|
|
|
|
// IOErrors could be network related or disk related, need
|
|
|
|
|
// to work out the difference and send a service problem
|
|
|
|
|
// if definitely network related
|
|
|
|
|
notify_account_problem(ProblemType.for_ioerror((IOError) error), error);
|
2014-02-11 15:24:01 -08:00
|
|
|
} else {
|
2017-11-23 16:47:19 +11:00
|
|
|
notify_account_problem(ProblemType.GENERIC_ERROR, error);
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-06-15 18:24:50 -04:00
|
|
|
|
2018-02-27 01:03:21 +11:00
|
|
|
private void on_pool_session_ready(bool is_ready) {
|
2018-11-10 09:25:05 +11:00
|
|
|
this.is_online = is_ready;
|
2018-02-27 01:03:21 +11:00
|
|
|
if (is_ready) {
|
|
|
|
|
// Now have a valid session, so credentials must be good
|
|
|
|
|
this.authentication_failures = 0;
|
|
|
|
|
this.remote_ready_lock.blind_notify();
|
|
|
|
|
update_remote_folders();
|
|
|
|
|
} else {
|
|
|
|
|
this.remote_ready_lock.reset();
|
|
|
|
|
this.refresh_folder_timer.reset();
|
|
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void on_pool_connection_failed(Error error) {
|
2018-02-27 01:03:21 +11:00
|
|
|
this.remote_ready_lock.reset();
|
2018-01-26 09:52:20 +10:30
|
|
|
if (error is ImapError.UNAUTHENTICATED) {
|
|
|
|
|
// This is effectively a login failure
|
|
|
|
|
on_pool_login_failed(null);
|
|
|
|
|
} else {
|
|
|
|
|
notify_imap_problem(ProblemType.CONNECTION_ERROR, error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void on_pool_login_failed(Geary.Imap.StatusResponse? response) {
|
2018-02-27 01:03:21 +11:00
|
|
|
this.remote_ready_lock.reset();
|
2018-01-26 09:52:20 +10:30
|
|
|
this.authentication_failures++;
|
|
|
|
|
if (this.authentication_failures >= Geary.Account.AUTH_ATTEMPTS_MAX) {
|
|
|
|
|
// We have tried auth too many times, so bail out
|
|
|
|
|
notify_imap_problem(ProblemType.LOGIN_FAILED, null);
|
|
|
|
|
} else {
|
|
|
|
|
// login can fail due to an invalid password hence we
|
|
|
|
|
// should re-ask it, but it can also fail due to server
|
|
|
|
|
// inaccessibility, for instance "[UNAVAILABLE] / Maximum
|
|
|
|
|
// number of connections from user+IP exceeded". In that
|
|
|
|
|
// case, resetting password seems unneeded.
|
|
|
|
|
bool reask_password = false;
|
|
|
|
|
Error? login_error = null;
|
|
|
|
|
try {
|
|
|
|
|
reask_password = (
|
|
|
|
|
response == null ||
|
|
|
|
|
response.response_code == null ||
|
|
|
|
|
response.response_code.get_response_code_type().value != Geary.Imap.ResponseCodeType.UNAVAILABLE
|
|
|
|
|
);
|
|
|
|
|
} catch (ImapError err) {
|
|
|
|
|
login_error = err;
|
|
|
|
|
debug("Unable to parse ResponseCode %s: %s", response.response_code.to_string(),
|
|
|
|
|
err.message);
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
|
|
|
|
|
if (!reask_password) {
|
|
|
|
|
// Either the server was unavailable, or we were unable to
|
|
|
|
|
// parse the login response. Either way, indicate a
|
|
|
|
|
// non-login error.
|
|
|
|
|
notify_imap_problem(ProblemType.SERVER_ERROR, login_error);
|
|
|
|
|
} else {
|
|
|
|
|
// Now, we should ask the user for their password
|
2018-05-29 03:22:37 +02:00
|
|
|
this.information.prompt_imap_credentials.begin(
|
|
|
|
|
this.open_cancellable,
|
2018-01-26 09:52:20 +10:30
|
|
|
(obj, ret) => {
|
|
|
|
|
try {
|
2018-05-29 03:22:37 +02:00
|
|
|
if (this.information.prompt_imap_credentials.end(ret)) {
|
2018-01-26 09:52:20 +10:30
|
|
|
// Have a new password, so try that
|
|
|
|
|
this.session_pool.credentials_updated(
|
2018-05-23 16:34:23 +10:00
|
|
|
this.information.imap.credentials
|
2018-01-26 09:52:20 +10:30
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
// User cancelled, so indicate a login problem
|
|
|
|
|
notify_imap_problem(ProblemType.LOGIN_FAILED, null);
|
|
|
|
|
}
|
|
|
|
|
} catch (Error err) {
|
|
|
|
|
notify_imap_problem(ProblemType.GENERIC_ERROR, err);
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
});
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
|
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
}
|
|
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Account operation for loading local folders from the database.
|
|
|
|
|
*/
|
|
|
|
|
internal class Geary.ImapEngine.LoadFolders : AccountOperation {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private weak ImapDB.Account local;
|
|
|
|
|
private Geary.SpecialFolderType[] specials;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
internal LoadFolders(GenericAccount account,
|
|
|
|
|
ImapDB.Account local,
|
|
|
|
|
Geary.SpecialFolderType[] specials) {
|
2017-12-19 10:49:05 +11:00
|
|
|
base(account);
|
2017-11-23 16:47:19 +11:00
|
|
|
this.local = local;
|
|
|
|
|
this.specials = specials;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override async void execute(Cancellable cancellable) throws Error {
|
2017-12-19 10:49:05 +11:00
|
|
|
GenericAccount generic = (GenericAccount) this.account;
|
2017-11-23 16:47:19 +11:00
|
|
|
Gee.List<ImapDB.Folder> folders = new Gee.LinkedList<ImapDB.Folder>();
|
2018-01-26 09:52:20 +10:30
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
yield enumerate_local_folders_async(folders, null, cancellable);
|
2017-12-19 10:49:05 +11:00
|
|
|
generic.add_folders(folders, true);
|
2017-11-23 16:47:19 +11:00
|
|
|
if (!folders.is_empty) {
|
|
|
|
|
// If we have some folders to load, then this isn't the
|
|
|
|
|
// first run, and hence the special folders should already
|
|
|
|
|
// exist
|
2018-01-26 09:52:20 +10:30
|
|
|
yield check_special_folders(cancellable);
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
|
|
|
|
}
|
2017-11-03 13:48:36 +11:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
private async void enumerate_local_folders_async(Gee.List<ImapDB.Folder> folders,
|
|
|
|
|
Geary.FolderPath? parent,
|
|
|
|
|
Cancellable? cancellable)
|
|
|
|
|
throws Error {
|
|
|
|
|
Gee.Collection<ImapDB.Folder>? children = null;
|
|
|
|
|
try {
|
|
|
|
|
children = yield this.local.list_folders_async(parent, cancellable);
|
|
|
|
|
} catch (EngineError err) {
|
|
|
|
|
// don't pass on NOT_FOUND's, that means we need to go to
|
|
|
|
|
// the server for more info
|
|
|
|
|
if (!(err is EngineError.NOT_FOUND))
|
|
|
|
|
throw err;
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
2016-06-05 18:36:16 +10:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
if (children != null) {
|
|
|
|
|
foreach (ImapDB.Folder child in children) {
|
|
|
|
|
folders.add(child);
|
|
|
|
|
yield enumerate_local_folders_async(
|
|
|
|
|
folders, child.get_path(), cancellable
|
|
|
|
|
);
|
|
|
|
|
}
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
2017-11-23 16:47:19 +11:00
|
|
|
}
|
2018-01-26 09:52:20 +10:30
|
|
|
|
|
|
|
|
private async void check_special_folders(Cancellable cancellable)
|
|
|
|
|
throws Error {
|
|
|
|
|
GenericAccount generic = (GenericAccount) this.account;
|
|
|
|
|
Gee.Map<Geary.SpecialFolderType,Geary.Folder> specials =
|
|
|
|
|
new Gee.HashMap<Geary.SpecialFolderType,Geary.Folder>();
|
|
|
|
|
foreach (Geary.SpecialFolderType special in this.specials) {
|
|
|
|
|
Geary.FolderPath? path = generic.information.get_special_folder_path(special);
|
|
|
|
|
if (path != null) {
|
|
|
|
|
try {
|
|
|
|
|
Geary.Folder target = yield generic.fetch_folder_async(path, cancellable);
|
|
|
|
|
specials.set(special, target);
|
|
|
|
|
} catch (Error err) {
|
|
|
|
|
debug("%s: Previously used special folder %s does not exist: %s",
|
|
|
|
|
generic.information.id, special.to_string(), err.message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
generic.promote_folders(specials);
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
}
|
2017-11-03 13:53:14 +11:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Account operation that updates folders from the remote.
|
|
|
|
|
*/
|
|
|
|
|
internal class Geary.ImapEngine.UpdateRemoteFolders : AccountOperation {
|
|
|
|
|
|
|
|
|
|
|
2017-12-19 10:49:05 +11:00
|
|
|
private weak GenericAccount generic_account;
|
2017-11-23 16:47:19 +11:00
|
|
|
private Gee.Collection<FolderPath> local_folders;
|
|
|
|
|
private Geary.SpecialFolderType[] specials;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
internal UpdateRemoteFolders(GenericAccount account,
|
|
|
|
|
Gee.Collection<FolderPath> local_folders,
|
|
|
|
|
Geary.SpecialFolderType[] specials) {
|
2017-12-19 10:49:05 +11:00
|
|
|
base(account);
|
|
|
|
|
this.generic_account = account;
|
2017-11-23 16:47:19 +11:00
|
|
|
this.local_folders = local_folders;
|
|
|
|
|
this.specials = specials;
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
2017-11-03 13:53:14 +11:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
public override async void execute(Cancellable cancellable) throws Error {
|
|
|
|
|
Gee.Map<FolderPath, Geary.Folder> existing_folders =
|
|
|
|
|
Geary.traverse<Geary.Folder>(this.account.list_folders())
|
|
|
|
|
.to_hash_map<FolderPath>(f => f.path);
|
|
|
|
|
Gee.Map<FolderPath, Imap.Folder> remote_folders =
|
|
|
|
|
new Gee.HashMap<FolderPath, Imap.Folder>();
|
2018-01-26 09:52:20 +10:30
|
|
|
|
2018-02-27 01:03:21 +11:00
|
|
|
GenericAccount account = (GenericAccount) this.account;
|
|
|
|
|
Imap.AccountSession remote = yield account.claim_account_session(
|
|
|
|
|
cancellable
|
2017-11-23 16:47:19 +11:00
|
|
|
);
|
2018-02-27 01:03:21 +11:00
|
|
|
try {
|
|
|
|
|
bool is_suspect = yield enumerate_remote_folders_async(
|
|
|
|
|
remote, remote_folders, null, cancellable
|
|
|
|
|
);
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2018-02-27 01:03:21 +11:00
|
|
|
// pair the local and remote folders and make sure
|
|
|
|
|
// everything is up-to-date
|
|
|
|
|
yield update_folders_async(
|
|
|
|
|
remote, existing_folders, remote_folders, is_suspect, cancellable
|
|
|
|
|
);
|
|
|
|
|
} finally {
|
|
|
|
|
account.release_account_session(remote);
|
|
|
|
|
}
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
2016-06-05 18:36:16 +10:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
private async bool enumerate_remote_folders_async(Imap.AccountSession remote,
|
|
|
|
|
Gee.Map<FolderPath,Imap.Folder> folders,
|
2017-11-23 16:47:19 +11:00
|
|
|
Geary.FolderPath? parent,
|
|
|
|
|
Cancellable? cancellable)
|
|
|
|
|
throws Error {
|
|
|
|
|
bool results_suspect = false;
|
|
|
|
|
|
|
|
|
|
Gee.List<Imap.Folder>? children = null;
|
|
|
|
|
try {
|
2018-01-26 09:52:20 +10:30
|
|
|
children = yield remote.fetch_child_folders_async(parent, cancellable);
|
2017-11-23 16:47:19 +11:00
|
|
|
} catch (Error err) {
|
|
|
|
|
// ignore everything but I/O and IMAP errors (cancellation is an IOError)
|
|
|
|
|
if (err is IOError || err is ImapError)
|
|
|
|
|
throw err;
|
|
|
|
|
debug("Ignoring error listing child folders of %s: %s",
|
|
|
|
|
(parent != null ? parent.to_string() : "root"), err.message);
|
|
|
|
|
results_suspect = true;
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
2016-06-05 18:36:16 +10:00
|
|
|
|
2017-11-23 16:47:19 +11:00
|
|
|
if (children != null) {
|
|
|
|
|
foreach (Imap.Folder child in children) {
|
|
|
|
|
FolderPath path = child.path;
|
|
|
|
|
folders.set(path, child);
|
|
|
|
|
if (child.properties.has_children.is_possible() &&
|
2018-01-26 09:52:20 +10:30
|
|
|
yield enumerate_remote_folders_async(
|
|
|
|
|
remote, folders, path, cancellable)) {
|
2017-11-23 16:47:19 +11:00
|
|
|
results_suspect = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return results_suspect;
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
2016-06-05 18:36:16 +10:00
|
|
|
|
2018-01-26 09:52:20 +10:30
|
|
|
private async void update_folders_async(Imap.AccountSession remote,
|
|
|
|
|
Gee.Map<FolderPath,Geary.Folder> existing_folders,
|
|
|
|
|
Gee.Map<FolderPath,Imap.Folder> remote_folders,
|
|
|
|
|
bool remote_folders_suspect,
|
|
|
|
|
Cancellable? cancellable) {
|
|
|
|
|
// update all remote folders properties in the local store and
|
|
|
|
|
// active in the system
|
2013-04-24 12:22:32 -07:00
|
|
|
Gee.HashSet<Geary.FolderPath> altered_paths = new Gee.HashSet<Geary.FolderPath>();
|
2013-05-31 17:56:48 -07:00
|
|
|
foreach (Imap.Folder remote_folder in remote_folders.values) {
|
2014-02-11 15:24:01 -08:00
|
|
|
MinimalFolder? minimal_folder = existing_folders.get(remote_folder.path)
|
|
|
|
|
as MinimalFolder;
|
|
|
|
|
if (minimal_folder == null)
|
2013-05-31 17:56:48 -07:00
|
|
|
continue;
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2013-02-25 20:18:37 -08:00
|
|
|
// only worry about alterations if the remote is openable
|
2013-04-25 14:47:20 -07:00
|
|
|
if (remote_folder.properties.is_openable.is_possible()) {
|
2014-02-11 15:24:01 -08:00
|
|
|
ImapDB.Folder local_folder = minimal_folder.local_folder;
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2013-08-09 15:17:06 -07:00
|
|
|
if (remote_folder.properties.have_contents_changed(local_folder.get_properties(),
|
2014-02-11 15:24:01 -08:00
|
|
|
minimal_folder.to_string())) {
|
2013-05-31 17:56:48 -07:00
|
|
|
altered_paths.add(remote_folder.path);
|
2013-08-09 15:17:06 -07:00
|
|
|
}
|
2013-02-25 20:18:37 -08:00
|
|
|
}
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2013-09-03 15:09:39 -07:00
|
|
|
// always update, openable or not; have the folder update the UID info the next time
|
|
|
|
|
// it's opened
|
2012-06-22 14:42:51 -07:00
|
|
|
try {
|
2018-01-18 17:33:49 +11:00
|
|
|
yield minimal_folder.local_folder.update_folder_status(
|
|
|
|
|
remote_folder.properties, false, false, cancellable
|
|
|
|
|
);
|
2012-06-22 14:42:51 -07:00
|
|
|
} catch (Error update_error) {
|
|
|
|
|
debug("Unable to update local folder %s with remote properties: %s",
|
2018-01-26 09:52:20 +10:30
|
|
|
remote_folder.path.to_string(), update_error.message);
|
2012-06-22 14:42:51 -07:00
|
|
|
}
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2018-09-26 23:28:43 +10:00
|
|
|
// set the engine folder's special type (but only promote,
|
|
|
|
|
// not demote, since getting the special folder type via
|
|
|
|
|
// its properties relies on the optional SPECIAL-USE or
|
|
|
|
|
// XLIST extensions) use this iteration to add discovered
|
|
|
|
|
// properties to map
|
2014-02-11 15:24:01 -08:00
|
|
|
if (minimal_folder.special_folder_type == SpecialFolderType.NONE)
|
|
|
|
|
minimal_folder.set_special_folder_type(remote_folder.properties.attrs.get_special_folder_type());
|
2012-05-10 20:28:42 -07:00
|
|
|
}
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2012-06-22 14:42:51 -07:00
|
|
|
// If path in remote but not local, need to add it
|
2013-12-12 12:42:02 -08:00
|
|
|
Gee.ArrayList<Imap.Folder> to_add = Geary.traverse<Imap.Folder>(remote_folders.values)
|
|
|
|
|
.filter(f => !existing_folders.has_key(f.path))
|
|
|
|
|
.to_array_list();
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2013-05-31 17:56:48 -07:00
|
|
|
// If path in local but not remote (and isn't local-only, i.e. the Outbox), need to remove it
|
2013-12-12 12:42:02 -08:00
|
|
|
Gee.ArrayList<Geary.Folder> to_remove
|
2016-10-04 00:06:54 +11:00
|
|
|
= Geary.traverse<Gee.Map.Entry<FolderPath,Geary.Folder>>(existing_folders)
|
2017-11-23 16:47:19 +11:00
|
|
|
.filter(e => !remote_folders.has_key(e.key) && !this.local_folders.contains(e.key))
|
2013-12-12 12:42:02 -08:00
|
|
|
.map<Geary.Folder>(e => (Geary.Folder) e.value)
|
|
|
|
|
.to_array_list();
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2018-09-25 23:59:28 +10:00
|
|
|
// For folders to add, clone them and their properties
|
|
|
|
|
// locally, then add to the account
|
2018-01-26 09:52:20 +10:30
|
|
|
ImapDB.Account local = ((GenericAccount) this.account).local;
|
2017-11-23 16:47:19 +11:00
|
|
|
Gee.ArrayList<ImapDB.Folder> to_build = new Gee.ArrayList<ImapDB.Folder>();
|
2013-05-31 17:56:48 -07:00
|
|
|
foreach (Geary.Imap.Folder remote_folder in to_add) {
|
|
|
|
|
try {
|
2018-09-25 23:59:28 +10:00
|
|
|
to_build.add(
|
|
|
|
|
yield local.clone_folder_async(remote_folder, cancellable)
|
|
|
|
|
);
|
|
|
|
|
} catch (Error err) {
|
|
|
|
|
debug("Unable to clone folder %s in local store: %s",
|
|
|
|
|
remote_folder.path.to_string(),
|
|
|
|
|
err.message);
|
2011-06-16 16:27:08 -07:00
|
|
|
}
|
|
|
|
|
}
|
2017-12-19 10:49:05 +11:00
|
|
|
this.generic_account.add_folders(to_build, false);
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2014-03-11 12:12:37 -07:00
|
|
|
if (remote_folders_suspect) {
|
|
|
|
|
debug("Skipping removing folders due to prior errors");
|
|
|
|
|
} else {
|
2017-12-19 10:49:05 +11:00
|
|
|
Gee.List<MinimalFolder> removed =
|
|
|
|
|
this.generic_account.remove_folders(to_remove);
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2014-03-11 12:12:37 -07:00
|
|
|
// Sort by path length descending, so we always remove children first.
|
2017-11-23 16:47:19 +11:00
|
|
|
removed.sort((a, b) => b.path.get_path_length() - a.path.get_path_length());
|
|
|
|
|
foreach (Geary.Folder folder in removed) {
|
2014-03-11 12:12:37 -07:00
|
|
|
try {
|
|
|
|
|
debug("Locally deleting removed folder %s", folder.to_string());
|
|
|
|
|
yield local.delete_folder_async(folder, cancellable);
|
|
|
|
|
} catch (Error e) {
|
|
|
|
|
debug("Unable to locally delete removed folder %s: %s", folder.to_string(), e.message);
|
|
|
|
|
}
|
2014-02-14 16:03:19 -08:00
|
|
|
}
|
2017-11-23 16:47:19 +11:00
|
|
|
|
|
|
|
|
// Let the remote know as well
|
2018-01-26 09:52:20 +10:30
|
|
|
remote.folders_removed(
|
2017-11-23 16:47:19 +11:00
|
|
|
Geary.traverse<Geary.Folder>(removed)
|
|
|
|
|
.map<FolderPath>(f => f.path).to_array_list()
|
|
|
|
|
);
|
2014-02-14 16:03:19 -08:00
|
|
|
}
|
2017-11-23 16:47:19 +11:00
|
|
|
|
2013-02-25 20:18:37 -08:00
|
|
|
// report all altered folders
|
|
|
|
|
if (altered_paths.size > 0) {
|
|
|
|
|
Gee.ArrayList<Geary.Folder> altered = new Gee.ArrayList<Geary.Folder>();
|
2013-05-31 17:56:48 -07:00
|
|
|
foreach (Geary.FolderPath altered_path in altered_paths) {
|
|
|
|
|
if (existing_folders.has_key(altered_path))
|
|
|
|
|
altered.add(existing_folders.get(altered_path));
|
2013-02-25 20:18:37 -08:00
|
|
|
else
|
2013-05-31 17:56:48 -07:00
|
|
|
debug("Unable to report %s altered: no local representation", altered_path.to_string());
|
2013-02-25 20:18:37 -08:00
|
|
|
}
|
2017-12-19 10:49:05 +11:00
|
|
|
this.generic_account.update_folders(altered);
|
2014-02-11 15:24:01 -08:00
|
|
|
}
|
2012-06-25 16:30:23 -07:00
|
|
|
|
2017-11-03 13:56:07 +11:00
|
|
|
// Ensure each of the important special folders we need already exist
|
2017-11-23 16:47:19 +11:00
|
|
|
foreach (Geary.SpecialFolderType special in this.specials) {
|
2017-11-03 13:56:07 +11:00
|
|
|
try {
|
2018-09-26 23:28:43 +10:00
|
|
|
yield this.generic_account.ensure_special_folder_async(
|
|
|
|
|
remote, special, cancellable
|
|
|
|
|
);
|
2017-11-03 13:56:07 +11:00
|
|
|
} catch (Error e) {
|
|
|
|
|
warning("Unable to ensure special folder %s: %s", special.to_string(), e.message);
|
|
|
|
|
}
|
2013-08-19 16:39:53 -07:00
|
|
|
}
|
2013-06-18 11:26:44 -07:00
|
|
|
}
|
2016-10-26 10:27:02 +02:00
|
|
|
|
2011-06-16 16:27:08 -07:00
|
|
|
}
|
2012-06-25 16:30:23 -07:00
|
|
|
|
2017-11-24 15:39:14 +11:00
|
|
|
/**
|
|
|
|
|
* Account operation that updates a folder's unseen message count.
|
|
|
|
|
*
|
|
|
|
|
* This performs a IMAP STATUS on the folder, but only if it is not
|
|
|
|
|
* open - if it is open it is already maintaining its unseen count.
|
|
|
|
|
*/
|
2017-12-19 10:49:05 +11:00
|
|
|
internal class Geary.ImapEngine.RefreshFolderUnseen : FolderOperation {
|
2017-11-24 15:39:14 +11:00
|
|
|
|
|
|
|
|
|
2017-11-28 10:12:41 +11:00
|
|
|
internal RefreshFolderUnseen(MinimalFolder folder,
|
2018-01-19 08:44:08 +11:00
|
|
|
GenericAccount account) {
|
2017-12-19 10:49:05 +11:00
|
|
|
base(account, folder);
|
2013-01-31 15:17:44 -08:00
|
|
|
}
|
2016-10-26 10:27:02 +02:00
|
|
|
|
2017-11-24 15:39:14 +11:00
|
|
|
public override async void execute(Cancellable cancellable) throws Error {
|
2018-02-27 01:03:21 +11:00
|
|
|
GenericAccount account = (GenericAccount) this.account;
|
2017-11-24 15:39:14 +11:00
|
|
|
if (this.folder.get_open_state() == Geary.Folder.OpenState.CLOSED) {
|
2018-02-27 01:03:21 +11:00
|
|
|
Imap.AccountSession? remote = yield account.claim_account_session(
|
2018-01-26 09:52:20 +10:30
|
|
|
cancellable
|
2017-01-12 01:20:13 +11:00
|
|
|
);
|
2016-10-26 10:27:02 +02:00
|
|
|
try {
|
2018-02-27 01:03:21 +11:00
|
|
|
Imap.Folder remote_folder = yield remote.fetch_folder_async(
|
|
|
|
|
folder.path,
|
|
|
|
|
cancellable
|
|
|
|
|
);
|
2018-01-18 17:33:49 +11:00
|
|
|
|
2018-02-27 01:03:21 +11:00
|
|
|
// Implementation-specific hack: Although this is called
|
|
|
|
|
// when the MinimalFolder is closed, we can safely use
|
|
|
|
|
// local_folder since we are only using its properties,
|
|
|
|
|
// and the properties were loaded when the folder was
|
|
|
|
|
// first instantiated.
|
|
|
|
|
ImapDB.Folder local_folder = ((MinimalFolder) this.folder).local_folder;
|
2018-01-18 17:33:49 +11:00
|
|
|
|
2018-02-27 01:03:21 +11:00
|
|
|
if (remote_folder.properties.have_contents_changed(
|
|
|
|
|
local_folder.get_properties(),
|
|
|
|
|
this.folder.to_string())) {
|
2018-01-18 17:33:49 +11:00
|
|
|
|
2018-02-27 01:03:21 +11:00
|
|
|
yield local_folder.update_folder_status(
|
|
|
|
|
remote_folder.properties, false, true, cancellable
|
|
|
|
|
);
|
2017-11-28 10:12:41 +11:00
|
|
|
|
2018-02-27 01:03:21 +11:00
|
|
|
((GenericAccount) this.account).update_folder(this.folder);
|
|
|
|
|
}
|
|
|
|
|
} finally {
|
|
|
|
|
account.release_account_session(remote);
|
2016-10-26 10:27:02 +02:00
|
|
|
}
|
2013-01-31 15:17:44 -08:00
|
|
|
}
|
2011-12-22 12:31:06 -08:00
|
|
|
}
|
2011-06-16 16:27:08 -07:00
|
|
|
|
|
|
|
|
}
|