Fix mutual subscription detection
This commit is contained in:
parent
36cc8b0393
commit
8ebc2c5dd3
|
@ -11,7 +11,6 @@ public class PresenceManager : StreamInteractionModule, Object {
|
||||||
public signal void show_received(Show show, Jid jid, Account account);
|
public signal void show_received(Show show, Jid jid, Account account);
|
||||||
public signal void received_subscription_request(Jid jid, Account account);
|
public signal void received_subscription_request(Jid jid, Account account);
|
||||||
public signal void received_subscription_approval(Jid jid, Account account);
|
public signal void received_subscription_approval(Jid jid, Account account);
|
||||||
public signal void mutual_subscription(Jid jid, Account account);
|
|
||||||
|
|
||||||
private StreamInteractor stream_interactor;
|
private StreamInteractor stream_interactor;
|
||||||
private HashMap<Jid, HashMap<Jid, ArrayList<Show>>> shows = new HashMap<Jid, HashMap<Jid, ArrayList<Show>>>(Jid.hash_bare_func, Jid.equals_bare_func);
|
private HashMap<Jid, HashMap<Jid, ArrayList<Show>>> shows = new HashMap<Jid, HashMap<Jid, ArrayList<Show>>>(Jid.hash_bare_func, Jid.equals_bare_func);
|
||||||
|
@ -99,9 +98,6 @@ public class PresenceManager : StreamInteractionModule, Object {
|
||||||
stream_interactor.module_manager.get_module(account, Presence.Module.IDENTITY).received_subscription_approval.connect((stream, jid) => {
|
stream_interactor.module_manager.get_module(account, Presence.Module.IDENTITY).received_subscription_approval.connect((stream, jid) => {
|
||||||
received_subscription_approval(jid, account);
|
received_subscription_approval(jid, account);
|
||||||
});
|
});
|
||||||
stream_interactor.module_manager.get_module(account, Presence.Module.IDENTITY).mutual_subscription.connect((stream, jid) => {
|
|
||||||
mutual_subscription(jid, account);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void on_received_available_show(Account account, Jid jid, string show) {
|
private void on_received_available_show(Account account, Jid jid, string show) {
|
||||||
|
|
|
@ -11,6 +11,7 @@ public class RosterManager : StreamInteractionModule, Object {
|
||||||
|
|
||||||
public signal void removed_roster_item(Account account, Jid jid, Roster.Item roster_item);
|
public signal void removed_roster_item(Account account, Jid jid, Roster.Item roster_item);
|
||||||
public signal void updated_roster_item(Account account, Jid jid, Roster.Item roster_item);
|
public signal void updated_roster_item(Account account, Jid jid, Roster.Item roster_item);
|
||||||
|
public signal void mutual_subscription(Account account, Jid jid);
|
||||||
|
|
||||||
private StreamInteractor stream_interactor;
|
private StreamInteractor stream_interactor;
|
||||||
private Database db;
|
private Database db;
|
||||||
|
@ -66,6 +67,10 @@ public class RosterManager : StreamInteractionModule, Object {
|
||||||
stream_interactor.module_manager.get_module(account, Roster.Module.IDENTITY).item_updated.connect_after( (stream, roster_item) => {
|
stream_interactor.module_manager.get_module(account, Roster.Module.IDENTITY).item_updated.connect_after( (stream, roster_item) => {
|
||||||
on_roster_item_updated(account, roster_item);
|
on_roster_item_updated(account, roster_item);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
stream_interactor.module_manager.get_module(account, Roster.Module.IDENTITY).mutual_subscription.connect_after( (stream, jid) => {
|
||||||
|
mutual_subscription(account, jid);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void on_roster_item_updated(Account account, Roster.Item roster_item) {
|
private void on_roster_item_updated(Account account, Roster.Item roster_item) {
|
||||||
|
|
|
@ -70,7 +70,7 @@ public class Manager : StreamInteractionModule, Object {
|
||||||
stream_interactor.account_added.connect(on_account_added);
|
stream_interactor.account_added.connect(on_account_added);
|
||||||
stream_interactor.get_module(MessageProcessor.IDENTITY).received_pipeline.connect(received_message_listener);
|
stream_interactor.get_module(MessageProcessor.IDENTITY).received_pipeline.connect(received_message_listener);
|
||||||
stream_interactor.get_module(MessageProcessor.IDENTITY).pre_message_send.connect(on_pre_message_send);
|
stream_interactor.get_module(MessageProcessor.IDENTITY).pre_message_send.connect(on_pre_message_send);
|
||||||
stream_interactor.get_module(PresenceManager.IDENTITY).mutual_subscription.connect(on_mutual_subscription);
|
stream_interactor.get_module(RosterManager.IDENTITY).mutual_subscription.connect(on_mutual_subscription);
|
||||||
}
|
}
|
||||||
|
|
||||||
private class ReceivedMessageListener : MessageListener {
|
private class ReceivedMessageListener : MessageListener {
|
||||||
|
@ -174,7 +174,7 @@ public class Manager : StreamInteractionModule, Object {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void on_mutual_subscription(Jid jid, Account account) {
|
private void on_mutual_subscription(Account account, Jid jid) {
|
||||||
XmppStream? stream = stream_interactor.get_stream(account);
|
XmppStream? stream = stream_interactor.get_stream(account);
|
||||||
if(stream == null) return;
|
if(stream == null) return;
|
||||||
|
|
||||||
|
|
|
@ -15,13 +15,9 @@ namespace Xmpp.Presence {
|
||||||
public signal void received_subscription_request(XmppStream stream, Jid jid);
|
public signal void received_subscription_request(XmppStream stream, Jid jid);
|
||||||
public signal void received_subscription_approval(XmppStream stream, Jid jid);
|
public signal void received_subscription_approval(XmppStream stream, Jid jid);
|
||||||
public signal void received_unsubscription(XmppStream stream, Jid jid);
|
public signal void received_unsubscription(XmppStream stream, Jid jid);
|
||||||
public signal void mutual_subscription(XmppStream stream, Jid jid);
|
|
||||||
|
|
||||||
public bool available_resource = true;
|
public bool available_resource = true;
|
||||||
|
|
||||||
private Gee.List<Jid> subscriptions = new ArrayList<Jid>(Jid.equals_bare_func);
|
|
||||||
private Gee.List<Jid> subscribers = new ArrayList<Jid>(Jid.equals_bare_func);
|
|
||||||
|
|
||||||
public void request_subscription(XmppStream stream, Jid bare_jid) {
|
public void request_subscription(XmppStream stream, Jid bare_jid) {
|
||||||
Presence.Stanza presence = new Presence.Stanza();
|
Presence.Stanza presence = new Presence.Stanza();
|
||||||
presence.to = bare_jid;
|
presence.to = bare_jid;
|
||||||
|
@ -34,8 +30,6 @@ namespace Xmpp.Presence {
|
||||||
presence.to = bare_jid;
|
presence.to = bare_jid;
|
||||||
presence.type_ = Presence.Stanza.TYPE_SUBSCRIBED;
|
presence.type_ = Presence.Stanza.TYPE_SUBSCRIBED;
|
||||||
send_presence(stream, presence);
|
send_presence(stream, presence);
|
||||||
subscribers.add(bare_jid);
|
|
||||||
if (subscriptions.contains(bare_jid)) mutual_subscription(stream, bare_jid);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void deny_subscription(XmppStream stream, Jid bare_jid) {
|
public void deny_subscription(XmppStream stream, Jid bare_jid) {
|
||||||
|
@ -47,7 +41,6 @@ namespace Xmpp.Presence {
|
||||||
presence.to = bare_jid;
|
presence.to = bare_jid;
|
||||||
presence.type_ = Presence.Stanza.TYPE_UNSUBSCRIBED;
|
presence.type_ = Presence.Stanza.TYPE_UNSUBSCRIBED;
|
||||||
send_presence(stream, presence);
|
send_presence(stream, presence);
|
||||||
subscribers.remove(bare_jid);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void unsubscribe(XmppStream stream, Jid bare_jid) {
|
public void unsubscribe(XmppStream stream, Jid bare_jid) {
|
||||||
|
@ -55,7 +48,6 @@ namespace Xmpp.Presence {
|
||||||
presence.to = bare_jid;
|
presence.to = bare_jid;
|
||||||
presence.type_ = Presence.Stanza.TYPE_UNSUBSCRIBE;
|
presence.type_ = Presence.Stanza.TYPE_UNSUBSCRIBE;
|
||||||
send_presence(stream, presence);
|
send_presence(stream, presence);
|
||||||
subscriptions.remove(bare_jid);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void send_presence(XmppStream stream, Presence.Stanza presence) {
|
public void send_presence(XmppStream stream, Presence.Stanza presence) {
|
||||||
|
@ -92,16 +84,12 @@ namespace Xmpp.Presence {
|
||||||
break;
|
break;
|
||||||
case Presence.Stanza.TYPE_SUBSCRIBED:
|
case Presence.Stanza.TYPE_SUBSCRIBED:
|
||||||
received_subscription_approval(stream, presence.from);
|
received_subscription_approval(stream, presence.from);
|
||||||
subscriptions.add(presence.from);
|
|
||||||
if (subscribers.contains(presence.from)) mutual_subscription(stream, presence.from);
|
|
||||||
break;
|
break;
|
||||||
case Presence.Stanza.TYPE_UNSUBSCRIBE:
|
case Presence.Stanza.TYPE_UNSUBSCRIBE:
|
||||||
stream.get_flag(Flag.IDENTITY).remove_presence(presence.from);
|
stream.get_flag(Flag.IDENTITY).remove_presence(presence.from);
|
||||||
received_unsubscription(stream, presence.from);
|
received_unsubscription(stream, presence.from);
|
||||||
subscribers.remove(presence.from);
|
|
||||||
break;
|
break;
|
||||||
case Presence.Stanza.TYPE_UNSUBSCRIBED:
|
case Presence.Stanza.TYPE_UNSUBSCRIBED:
|
||||||
subscriptions.remove(presence.from);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@ public class Module : XmppStreamModule, Iq.Handler {
|
||||||
public signal void pre_get_roster(XmppStream stream, Iq.Stanza iq);
|
public signal void pre_get_roster(XmppStream stream, Iq.Stanza iq);
|
||||||
public signal void item_removed(XmppStream stream, Item item, Iq.Stanza iq);
|
public signal void item_removed(XmppStream stream, Item item, Iq.Stanza iq);
|
||||||
public signal void item_updated(XmppStream stream, Item item, Iq.Stanza iq);
|
public signal void item_updated(XmppStream stream, Item item, Iq.Stanza iq);
|
||||||
|
public signal void mutual_subscription(XmppStream stream, Jid jid);
|
||||||
|
|
||||||
public bool interested_resource = true;
|
public bool interested_resource = true;
|
||||||
|
|
||||||
|
@ -55,8 +56,12 @@ public class Module : XmppStreamModule, Iq.Handler {
|
||||||
item_removed(stream, item, iq);
|
item_removed(stream, item, iq);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
bool is_new = false;
|
||||||
|
Item old = flag.get_item(item.jid);
|
||||||
|
is_new = item.subscription == Item.SUBSCRIPTION_BOTH && (old == null || old.subscription == Item.SUBSCRIPTION_BOTH);
|
||||||
flag.roster_items[item.jid] = item;
|
flag.roster_items[item.jid] = item;
|
||||||
item_updated(stream, item, iq);
|
item_updated(stream, item, iq);
|
||||||
|
if(is_new) mutual_subscription(stream, item.jid);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue