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;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected long getTimestamp(Element packet) {
|
|
|
|
long now = System.currentTimeMillis();
|
2014-12-04 15:20:28 +00:00
|
|
|
Element delay = packet.findChild("delay");
|
|
|
|
if (delay == null) {
|
|
|
|
return now;
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
2014-12-04 15:20:28 +00:00
|
|
|
String stamp = delay.getAttribute("stamp");
|
|
|
|
if (stamp == null) {
|
|
|
|
return now;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
long time = parseTimestamp(stamp).getTime();
|
|
|
|
return now < time ? now : time;
|
|
|
|
} catch (ParseException e) {
|
2014-10-22 16:38:44 +00:00
|
|
|
return now;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:47 +00:00
|
|
|
protected void updateLastseen(final Element packet, final Account account,
|
|
|
|
final boolean presenceOverwrite) {
|
2014-12-21 20:43:58 +00:00
|
|
|
final Jid from = packet.getAttributeAsJid("from");
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
Element data = item.findChild("data", "urn:xmpp:avatar:data");
|
|
|
|
if (data == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return data.getContent();
|
|
|
|
}
|
|
|
|
}
|