aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/eu/siacs/conversations/parser/AbstractParser.java
blob: eedfca16e6ff20deb6d61589af9a5fbd76209447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package eu.siacs.conversations.parser;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collections;
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.InvalidJidException;
import eu.siacs.conversations.xmpp.jid.Jid;

public abstract class AbstractParser {

	protected XmppConnectionService mXmppConnectionService;

	protected AbstractParser(XmppConnectionService service) {
		this.mXmppConnectionService = service;
	}

	protected long getTimestamp(Element packet) {
		long now = System.currentTimeMillis();
		ArrayList<String> stamps = new ArrayList<>();
		for (Element child : packet.getChildren()) {
			if (child.getName().equals("delay")) {
				stamps.add(child.getAttribute("stamp").replace("Z", "+0000"));
			}
		}
		Collections.sort(stamps);
		if (stamps.size() >= 1) {
			try {
				String stamp = stamps.get(stamps.size() - 1);
				if (stamp.contains(".")) {
					Date date = new SimpleDateFormat(
							"yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.US)
							.parse(stamp);
					if (now < date.getTime()) {
						return now;
					} else {
						return date.getTime();
					}
				} else {
					Date date = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ",
							Locale.US).parse(stamp);
					if (now < date.getTime()) {
						return now;
					} else {
						return date.getTime();
					}
				}
			} catch (ParseException e) {
				return now;
			}
		} else {
			return now;
		}
	}

	protected void updateLastseen(final Element packet, final Account account,
			final boolean presenceOverwrite) {
        Jid from;
        try {
            from = Jid.fromString(packet.getAttribute("from")).toBareJid();
        } catch (final InvalidJidException e) {
            // TODO: Handle this?
            from = null;
        }
        String presence = from == null || from.isBareJid() ? "" : from.getResourcepart();
		Contact contact = account.getRoster().getContact(from);
		long timestamp = getTimestamp(packet);
		if (timestamp >= contact.lastseen.time) {
			contact.lastseen.time = timestamp;
			if (!presence.isEmpty() && presenceOverwrite) {
				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();
	}
}