aboutsummaryrefslogtreecommitdiff
path: root/plugins/openpgp/src/plugin.vala
blob: a585b20680b033084b48dcd7ee9cd04c2c202a21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using Gee;

using Dino.Entities;

extern const string GETTEXT_PACKAGE;
extern const string LOCALE_INSTALL_DIR;

namespace Dino.Plugins.OpenPgp {

    public class Plugin : Plugins.RootInterface, Object {
        public Dino.Application app;
        public Database db;
        public HashMap<Account, Module> modules = new HashMap<Account, Module>(Account.hash_func, Account.equals_func);

        private EncryptionListEntry list_entry;
        private AccountSettingsEntry settings_entry;

        public void registered(Dino.Application app) {
            this.app = app;
            this.db = new Database(Path.build_filename(Application.get_storage_dir(), "pgp.db"));
            this.list_entry = new EncryptionListEntry(app.stream_interaction);
            this.settings_entry = new AccountSettingsEntry(this);

            app.plugin_registry.register_encryption_list_entry(list_entry);
            app.plugin_registry.register_account_settings_entry(settings_entry);
            app.stream_interaction.module_manager.initialize_account_modules.connect(on_initialize_account_modules);

            Manager.start(app.stream_interaction, db);

            internationalize(GETTEXT_PACKAGE, app.search_path_generator.get_locale_path(GETTEXT_PACKAGE, LOCALE_INSTALL_DIR));
        }

        public void shutdown() { }

        private void on_initialize_account_modules(Account account, ArrayList<Xmpp.Core.XmppStreamModule> modules) {
            Module module = new Module(db.get_account_key(account));
            this.modules[account] = module;
            modules.add(module);
        }
    }

}