2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.xmpp.stanzas;
|
|
|
|
|
2014-12-30 13:50:51 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
2014-10-22 16:38:44 +00:00
|
|
|
import eu.siacs.conversations.xml.Element;
|
2018-03-05 17:30:40 +00:00
|
|
|
import rocks.xmpp.addr.Jid;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
public class AbstractStanza extends Element {
|
|
|
|
|
2014-12-30 13:50:51 +00:00
|
|
|
protected AbstractStanza(final String name) {
|
2014-10-22 16:38:44 +00:00
|
|
|
super(name);
|
|
|
|
}
|
|
|
|
|
2014-11-06 19:10:03 +00:00
|
|
|
public Jid getTo() {
|
2014-12-15 16:29:17 +00:00
|
|
|
return getAttributeAsJid("to");
|
2014-11-09 15:18:53 +00:00
|
|
|
}
|
2014-11-06 19:10:03 +00:00
|
|
|
|
|
|
|
public Jid getFrom() {
|
2014-12-15 16:29:17 +00:00
|
|
|
return getAttributeAsJid("from");
|
2014-11-09 15:18:53 +00:00
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public void setTo(final Jid to) {
|
2014-11-17 19:45:00 +00:00
|
|
|
if (to != null) {
|
2018-03-11 13:14:56 +00:00
|
|
|
setAttribute("to", to.toEscapedString());
|
2014-11-17 19:45:00 +00:00
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
public void setFrom(final Jid from) {
|
2014-11-17 19:45:00 +00:00
|
|
|
if (from != null) {
|
2018-03-11 13:14:56 +00:00
|
|
|
setAttribute("from", from.toEscapedString());
|
2014-11-17 19:45:00 +00:00
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-12-30 13:50:51 +00:00
|
|
|
public boolean fromServer(final Account account) {
|
|
|
|
return getFrom() == null
|
2018-03-11 13:14:56 +00:00
|
|
|
|| getFrom().equals(Jid.of(account.getServer()))
|
2018-03-05 17:30:40 +00:00
|
|
|
|| getFrom().equals(account.getJid().asBareJid())
|
2014-12-30 13:50:51 +00:00
|
|
|
|| getFrom().equals(account.getJid());
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean toServer(final Account account) {
|
|
|
|
return getTo() == null
|
2018-03-11 13:14:56 +00:00
|
|
|
|| getTo().equals(Jid.of(account.getServer()))
|
2018-03-05 17:30:40 +00:00
|
|
|
|| getTo().equals(account.getJid().asBareJid())
|
2014-12-30 13:50:51 +00:00
|
|
|
|| getTo().equals(account.getJid());
|
|
|
|
}
|
2015-05-15 03:14:15 +00:00
|
|
|
|
|
|
|
public boolean fromAccount(final Account account) {
|
2018-03-05 17:30:40 +00:00
|
|
|
return getFrom() != null && getFrom().asBareJid().equals(account.getJid().asBareJid());
|
2015-05-15 03:14:15 +00:00
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|