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

70 lines
1.9 KiB
Java
Raw Normal View History

package eu.siacs.conversations.parser;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
2014-06-22 19:44:17 +00:00
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;
public abstract class AbstractParser {
protected XmppConnectionService mXmppConnectionService;
protected AbstractParser(XmppConnectionService service) {
this.mXmppConnectionService = service;
}
protected long getTimestamp(Element packet) {
2014-06-22 16:21:04 +00:00
long now = System.currentTimeMillis();
if (packet.hasChild("delay")) {
try {
String stamp = packet.findChild("delay").getAttribute(
"stamp");
stamp = stamp.replace("Z", "+0000");
2014-06-22 16:21:04 +00:00
if (stamp.contains(".")) {
2014-06-22 19:44:17 +00:00
Date date = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ",Locale.US)
2014-06-22 16:21:04 +00:00
.parse(stamp);
if (now<date.getTime()) {
return now;
} else {
return date.getTime();
}
} else {
2014-06-22 19:44:17 +00:00
Date date = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ",Locale.US)
2014-06-22 16:21:04 +00:00
.parse(stamp);
if (now<date.getTime()) {
return now;
} else {
return date.getTime();
}
}
} catch (ParseException e) {
2014-06-22 16:21:04 +00:00
return now;
}
} else {
2014-06-22 16:21:04 +00:00
return now;
}
}
2014-06-06 16:49:35 +00:00
protected void updateLastseen(Element packet, Account account, boolean presenceOverwrite) {
String[] fromParts = packet.getAttribute("from").split("/");
String from = fromParts[0];
String presence = null;
if (fromParts.length >= 2) {
presence = fromParts[1];
}
Contact contact = account.getRoster().getContact(from);
long timestamp = getTimestamp(packet);
if (timestamp >= contact.lastseen.time) {
contact.lastseen.time = timestamp;
2014-06-06 16:49:35 +00:00
if ((presence!=null)&&(presenceOverwrite)) {
contact.lastseen.presence = presence;
}
}
}
}