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.module_manager.initialize_account_modules.connect((account, list) => {
|
|
|
|
list.add(new UploadStreamModule());
|
|
|
|
});
|
2017-08-29 22:03:37 +00:00
|
|
|
|
2017-10-28 21:48:07 +00:00
|
|
|
app.stream_interactor.get_module(FileManager.IDENTITY).add_provider(file_provider);
|
2018-06-19 16:07:00 +00:00
|
|
|
app.stream_interactor.get_module(ContentItemAccumulator.IDENTITY).add_filter(new FileMessageFilter(app.db));
|
2017-08-02 15:29:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void shutdown() {
|
|
|
|
// Nothing to do
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|