2014-07-12 03:44:23 +02:00
|
|
|
package eu.siacs.conversations.generator;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.xmpp.stanzas.PresencePacket;
|
|
|
|
|
|
|
|
public class PresenceGenerator {
|
|
|
|
|
2014-07-12 11:13:18 +02:00
|
|
|
private PresencePacket subscription(String type, Contact contact) {
|
2014-07-12 03:44:23 +02:00
|
|
|
PresencePacket packet = new PresencePacket();
|
2014-07-12 11:13:18 +02:00
|
|
|
packet.setAttribute("type", type);
|
2014-07-12 03:44:23 +02:00
|
|
|
packet.setAttribute("to", contact.getJid());
|
|
|
|
packet.setAttribute("from", contact.getAccount().getJid());
|
|
|
|
return packet;
|
|
|
|
}
|
2014-07-12 11:13:18 +02:00
|
|
|
|
|
|
|
public PresencePacket requestPresenceUpdatesFrom(Contact contact) {
|
|
|
|
return subscription("subscribe", contact);
|
|
|
|
}
|
2014-07-12 03:44:23 +02:00
|
|
|
|
|
|
|
public PresencePacket stopPresenceUpdatesFrom(Contact contact) {
|
2014-07-12 11:13:18 +02:00
|
|
|
return subscription("unsubscribe", contact);
|
2014-07-12 03:44:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public PresencePacket stopPresenceUpdatesTo(Contact contact) {
|
2014-07-12 11:13:18 +02:00
|
|
|
return subscription("unsubscribed", contact);
|
2014-07-12 03:44:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public PresencePacket sendPresenceUpdatesTo(Contact contact) {
|
2014-07-12 11:13:18 +02:00
|
|
|
return subscription("subscribed", contact);
|
2014-07-12 03:44:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public PresencePacket sendPresence(Account account) {
|
|
|
|
PresencePacket packet = new PresencePacket();
|
|
|
|
packet.setAttribute("from", account.getFullJid());
|
|
|
|
String sig = account.getPgpSignature();
|
|
|
|
if (sig != null) {
|
|
|
|
packet.addChild("status").setContent("online");
|
|
|
|
packet.addChild("x", "jabber:x:signed").setContent(sig);
|
|
|
|
}
|
|
|
|
return packet;
|
|
|
|
}
|
|
|
|
}
|