2017-03-11 00:25:45 +00:00
|
|
|
using Gee;
|
|
|
|
|
|
|
|
namespace Dino.Plugins {
|
|
|
|
|
|
|
|
public class Registry {
|
|
|
|
internal ArrayList<EncryptionListEntry> encryption_list_entries = new ArrayList<EncryptionListEntry>();
|
2017-03-11 21:48:35 +00:00
|
|
|
internal ArrayList<AccountSettingsEntry> account_settings_entries = new ArrayList<AccountSettingsEntry>();
|
2017-05-30 20:47:16 +00:00
|
|
|
internal ArrayList<ContactDetailsProvider> contact_details_entries = new ArrayList<ContactDetailsProvider>();
|
2017-08-02 15:29:55 +00:00
|
|
|
internal Gee.Collection<ConversationTitlebarEntry> conversation_titlebar_entries = new Gee.TreeSet<ConversationTitlebarEntry>((a, b) => {
|
|
|
|
if (a.order < b.order) {
|
|
|
|
return -1;
|
|
|
|
} else if (a.order > b.order) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
});
|
2017-03-11 00:25:45 +00:00
|
|
|
|
|
|
|
public bool register_encryption_list_entry(EncryptionListEntry entry) {
|
|
|
|
lock(encryption_list_entries) {
|
|
|
|
foreach(var e in encryption_list_entries) {
|
|
|
|
if (e.encryption == entry.encryption) return false;
|
|
|
|
}
|
|
|
|
encryption_list_entries.add(entry);
|
|
|
|
encryption_list_entries.sort((a,b) => b.name.collate(a.name));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2017-03-11 21:48:35 +00:00
|
|
|
|
|
|
|
public bool register_account_settings_entry(AccountSettingsEntry entry) {
|
|
|
|
lock(account_settings_entries) {
|
|
|
|
foreach(var e in account_settings_entries) {
|
|
|
|
if (e.id == entry.id) return false;
|
|
|
|
}
|
|
|
|
account_settings_entries.add(entry);
|
|
|
|
// TODO: Order by priority
|
|
|
|
account_settings_entries.sort((a,b) => b.name.collate(a.name));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2017-05-30 20:47:16 +00:00
|
|
|
|
|
|
|
public bool register_contact_details_entry(ContactDetailsProvider entry) {
|
|
|
|
lock(contact_details_entries) {
|
|
|
|
foreach(ContactDetailsProvider e in contact_details_entries) {
|
|
|
|
if (e.id == entry.id) return false;
|
|
|
|
}
|
|
|
|
contact_details_entries.add(entry);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2017-08-02 15:29:55 +00:00
|
|
|
|
|
|
|
public bool register_contact_titlebar_entry(ConversationTitlebarEntry entry) {
|
|
|
|
lock(conversation_titlebar_entries) {
|
|
|
|
foreach(ConversationTitlebarEntry e in conversation_titlebar_entries) {
|
|
|
|
if (e.id == entry.id) return false;
|
|
|
|
}
|
|
|
|
conversation_titlebar_entries.add(entry);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2017-03-11 00:25:45 +00:00
|
|
|
}
|
|
|
|
|
2017-08-02 15:29:55 +00:00
|
|
|
}
|