conversations-classic/src/main/java/eu/siacs/conversations/parser/AbstractParser.java

74 lines
2.4 KiB
Java
Raw Normal View History

2014-10-22 16:38:44 +00:00
package eu.siacs.conversations.parser;
2014-10-22 16:38:44 +00:00
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import eu.siacs.conversations.entities.Account;
import eu.siacs.conversations.entities.Contact;
import eu.siacs.conversations.services.XmppConnectionService;
import eu.siacs.conversations.xml.Element;
import eu.siacs.conversations.xmpp.jid.Jid;
import eu.siacs.conversations.xmpp.stanzas.AbstractStanza;
2014-10-22 16:38:44 +00:00
public abstract class AbstractParser {
protected XmppConnectionService mXmppConnectionService;
protected AbstractParser(XmppConnectionService service) {
this.mXmppConnectionService = service;
}
public static Long getTimestamp(Element element, Long defaultValue) {
2015-05-15 04:31:27 +00:00
Element delay = element.findChild("delay","urn:xmpp:delay");
if (delay != null) {
String stamp = delay.getAttribute("stamp");
if (stamp != null) {
try {
return AbstractParser.parseTimestamp(delay.getAttribute("stamp")).getTime();
} catch (ParseException e) {
return defaultValue;
}
}
2014-10-22 16:38:44 +00:00
}
return defaultValue;
}
protected long getTimestamp(Element packet) {
return getTimestamp(packet,System.currentTimeMillis());
2014-10-22 16:38:44 +00:00
}
public static Date parseTimestamp(String timestamp) throws ParseException {
timestamp = timestamp.replace("Z", "+0000");
SimpleDateFormat dateFormat;
timestamp = timestamp.substring(0,19)+timestamp.substring(timestamp.length() -5,timestamp.length());
dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ",Locale.US);
return dateFormat.parse(timestamp);
}
protected void updateLastseen(final AbstractStanza packet, final Account account, final boolean presenceOverwrite) {
updateLastseen(getTimestamp(packet), account, packet.getFrom(), presenceOverwrite);
}
protected void updateLastseen(long timestamp, final Account account, final Jid from, final boolean presenceOverwrite) {
final String presence = from == null || from.isBareJid() ? "" : from.getResourcepart();
final Contact contact = account.getRoster().getContact(from);
2014-10-22 16:38:44 +00:00
if (timestamp >= contact.lastseen.time) {
contact.lastseen.time = timestamp;
if (!presence.isEmpty() && presenceOverwrite) {
2014-10-22 16:38:44 +00:00
contact.lastseen.presence = presence;
}
}
}
protected String avatarData(Element items) {
Element item = items.findChild("item");
if (item == null) {
return null;
}
return item.findChildContent("data", "urn:xmpp:avatar:data");
2014-10-22 16:38:44 +00:00
}
}