dino/plugins/http-files/src/plugin.vala

27 lines
718 B
Vala
Raw Normal View History

2017-08-02 15:29:55 +00:00
extern const string GETTEXT_PACKAGE;
extern const string LOCALE_INSTALL_DIR;
namespace Dino.Plugins.HttpFiles {
public class Plugin : RootInterface, Object {
public Dino.Application app;
2017-08-29 22:03:37 +00:00
public FileProvider file_provider;
2017-08-02 15:29:55 +00:00
public void registered(Dino.Application app) {
2017-10-28 21:48:07 +00:00
this.app = app;
Manager.start(this.app.stream_interactor, app.db);
2017-08-29 22:03:37 +00:00
2017-10-28 21:48:07 +00:00
file_provider = new FileProvider(app.stream_interactor, app.db);
2017-08-02 15:29:55 +00:00
2017-10-28 21:48:07 +00:00
app.stream_interactor.get_module(FileManager.IDENTITY).add_provider(file_provider);
app.stream_interactor.get_module(ContentItemStore.IDENTITY).add_filter(new FileMessageFilter(app.db));
2017-08-02 15:29:55 +00:00
}
public void shutdown() {
// Nothing to do
}
}
}