2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.parser;
|
|
|
|
|
2015-02-10 10:11:01 +00:00
|
|
|
|
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;
|
2014-11-05 20:55:47 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
public abstract class AbstractParser {
|
|
|
|
|
|
|
|
protected XmppConnectionService mXmppConnectionService;
|
|
|
|
|
|
|
|
protected AbstractParser(XmppConnectionService service) {
|
|
|
|
this.mXmppConnectionService = service;
|
|
|
|
}
|
|
|
|
|
2015-05-15 03:14:15 +00:00
|
|
|
public static Long getTimestamp(Element element, Long defaultValue) {
|
2015-05-15 04:31:27 +00:00
|
|
|
Element delay = element.findChild("delay","urn:xmpp:delay");
|
2015-05-15 03:14:15 +00:00
|
|
|
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
|
|
|
}
|
2015-05-15 03:14:15 +00:00
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected long getTimestamp(Element packet) {
|
|
|
|
return getTimestamp(packet,System.currentTimeMillis());
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-12-04 15:20:28 +00:00
|
|
|
public static Date parseTimestamp(String timestamp) throws ParseException {
|
|
|
|
timestamp = timestamp.replace("Z", "+0000");
|
|
|
|
SimpleDateFormat dateFormat;
|
2015-02-10 10:11:01 +00:00
|
|
|
timestamp = timestamp.substring(0,19)+timestamp.substring(timestamp.length() -5,timestamp.length());
|
|
|
|
dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ",Locale.US);
|
2014-12-04 15:20:28 +00:00
|
|
|
return dateFormat.parse(timestamp);
|
|
|
|
}
|
|
|
|
|
2015-05-15 03:14:15 +00:00
|
|
|
protected void updateLastseen(final Element packet, final Account account, final boolean presenceOverwrite) {
|
|
|
|
updateLastseen(packet, account, packet.getAttributeAsJid("from"), presenceOverwrite);
|
2015-03-16 22:23:51 +00:00
|
|
|
}
|
|
|
|
|
2015-05-15 03:14:15 +00:00
|
|
|
protected void updateLastseen(final Element packet, final Account account, final Jid from, final boolean presenceOverwrite) {
|
2014-12-21 20:43:58 +00:00
|
|
|
final String presence = from == null || from.isBareJid() ? "" : from.getResourcepart();
|
|
|
|
final Contact contact = account.getRoster().getContact(from);
|
|
|
|
final long timestamp = getTimestamp(packet);
|
2014-10-22 16:38:44 +00:00
|
|
|
if (timestamp >= contact.lastseen.time) {
|
|
|
|
contact.lastseen.time = timestamp;
|
2014-11-05 20:55:47 +00:00
|
|
|
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;
|
|
|
|
}
|
2015-05-14 12:42:21 +00:00
|
|
|
return item.findChildContent("data", "urn:xmpp:avatar:data");
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
}
|