aboutsummaryrefslogtreecommitdiff
path: root/plugins/http-files/src/plugin.vala
blob: b1c08d80938192faeccf05c27736b3e9848b3de9 (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
extern const string GETTEXT_PACKAGE;
extern const string LOCALE_INSTALL_DIR;

namespace Dino.Plugins.HttpFiles {

public class Plugin : RootInterface, Object {

    public Dino.Application app;
    public FileProvider file_provider;

    public void registered(Dino.Application app) {
        try {
            this.app = app;
            Manager.start(this.app.stream_interactor, app.db);

            file_provider = new FileProvider(app.stream_interactor, app.db);

            app.stream_interactor.module_manager.initialize_account_modules.connect((account, list) => {
                list.add(new UploadStreamModule());
            });

            app.stream_interactor.get_module(FileManager.IDENTITY).add_provider(file_provider);
            app.plugin_registry.register_message_display(new FileMessageFilterDisplay(app.db));
        } catch (Error e) {
            print(@"Error initializing http-files: $(e.message)\n");
        }
    }

    public void shutdown() {
        // Nothing to do
    }
}

}