dino/libdino/src/service/module_manager.vala

93 lines
4.5 KiB
Vala
Raw Normal View History

2017-03-02 14:37:32 +00:00
using Gee;
using Dino.Entities;
using Xmpp;
namespace Dino {
public class ModuleManager {
private HashMap<Account, ArrayList<XmppStreamModule>> module_map = new HashMap<Account, ArrayList<XmppStreamModule>>(Account.hash_func, Account.equals_func);
2017-03-02 14:37:32 +00:00
public signal void initialize_account_modules(Account account, ArrayList<XmppStreamModule> modules);
2017-03-10 20:45:56 +00:00
public T? get_module<T>(Account account, Xmpp.ModuleIdentity<T> identity) {
2017-03-10 20:45:56 +00:00
if (identity == null) return null;
lock (module_map) {
if (!module_map.has_key(account)) {
initialize(account);
}
var res = module_map[account].filter((module) => identity.matches(module));
if (res != null && res.next()) {
return identity.cast(res.get());
}
}
return null;
}
public ArrayList<XmppStreamModule> get_modules(Account account, string? resource = null) {
ArrayList<XmppStreamModule> modules = new ArrayList<XmppStreamModule>();
2017-06-20 23:07:06 +00:00
2017-03-10 20:45:56 +00:00
lock (module_map) {
if (!module_map.has_key(account)) initialize(account);
foreach (XmppStreamModule module in module_map[account]) modules.add(module);
2017-03-10 20:45:56 +00:00
}
2017-08-12 21:14:50 +00:00
foreach (XmppStreamModule module in module_map[account]) {
2017-08-12 21:14:50 +00:00
if (module.get_id() == Bind.Module.IDENTITY.id) {
2020-10-27 14:31:39 +00:00
((Bind.Module) module).requested_resource = resource ?? account.resourcepart;
2018-08-19 17:56:46 +00:00
} else if (module.get_id() == Sasl.Module.IDENTITY.id) {
2020-10-27 14:31:39 +00:00
((Sasl.Module) module).password = account.password;
2017-08-12 21:14:50 +00:00
}
}
2017-03-02 14:37:32 +00:00
return modules;
}
2017-03-10 20:45:56 +00:00
public void initialize(Account account) {
lock(module_map) {
module_map[account] = new ArrayList<XmppStreamModule>();
2017-08-12 21:14:50 +00:00
module_map[account].add(new Iq.Module());
2018-08-19 17:56:46 +00:00
module_map[account].add(new Sasl.Module(account.bare_jid.to_string(), account.password));
2017-08-12 21:14:50 +00:00
module_map[account].add(new Xep.StreamManagement.Module());
module_map[account].add(new Bind.Module(account.resourcepart));
2017-06-20 23:07:06 +00:00
module_map[account].add(new Session.Module());
2017-03-10 20:45:56 +00:00
module_map[account].add(new Roster.Module());
module_map[account].add(new Xep.ServiceDiscovery.Module.with_identity("client", "pc", "Dino"));
2017-03-10 20:45:56 +00:00
module_map[account].add(new Xep.PrivateXmlStorage.Module());
module_map[account].add(new Xep.Bookmarks.Module());
module_map[account].add(new Xep.Bookmarks2.Module());
2017-03-10 20:45:56 +00:00
module_map[account].add(new Presence.Module());
module_map[account].add(new Xmpp.MessageModule());
2017-08-16 09:44:42 +00:00
module_map[account].add(new Xep.MessageArchiveManagement.Module());
2017-03-10 20:45:56 +00:00
module_map[account].add(new Xep.MessageCarbons.Module());
module_map[account].add(new Xep.Muc.Module());
module_map[account].add(new Xep.Pubsub.Module());
module_map[account].add(new Xep.MessageDeliveryReceipts.Module());
module_map[account].add(new Xep.BlockingCommand.Module());
2017-03-10 20:45:56 +00:00
module_map[account].add(new Xep.ChatStateNotifications.Module());
module_map[account].add(new Xep.ChatMarkers.Module());
module_map[account].add(new Xep.Ping.Module());
module_map[account].add(new Xep.DelayedDelivery.Module());
module_map[account].add(new StreamError.Module());
2018-08-19 22:27:02 +00:00
module_map[account].add(new Xep.InBandRegistration.Module());
module_map[account].add(new Xep.HttpFileUpload.Module());
module_map[account].add(new Xep.Socks5Bytestreams.Module());
module_map[account].add(new Xep.InBandBytestreams.Module());
module_map[account].add(new Xep.Jingle.Module());
module_map[account].add(new Xep.JingleSocks5Bytestreams.Module());
module_map[account].add(new Xep.JingleInBandBytestreams.Module());
module_map[account].add(new Xep.JingleFileTransfer.Module());
2019-09-10 18:56:00 +00:00
module_map[account].add(new Xep.Jet.Module());
module_map[account].add(new Xep.LastMessageCorrection.Module());
module_map[account].add(new Xep.DirectMucInvitations.Module());
module_map[account].add(new Xep.JingleMessageInitiation.Module());
module_map[account].add(new Xep.JingleRawUdp.Module());
module_map[account].add(new Xep.Muji.Module());
module_map[account].add(new Xep.CallInvites.Module());
module_map[account].add(new Xep.Coin.Module());
2017-03-10 20:45:56 +00:00
initialize_account_modules(account, module_map[account]);
}
2017-03-02 14:37:32 +00:00
}
}
2017-06-20 23:07:06 +00:00
}