aboutsummaryrefslogtreecommitdiff
path: root/plugins/http-files/src/plugin.vala
blob: bd136f317f86ba0238a3ab9028d96144ffa0f6fd (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
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) {
        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.stream_interactor.get_module(ContentItemStore.IDENTITY).add_filter(new FileMessageFilter(app.db));
    }

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

}