aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/eu/siacs/conversations/parser/AbstractParser.java
blob: bdd139325796168549cee0702d0f4fa579b82594 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package eu.siacs.conversations.parser;

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.entities.Conversation;
import eu.siacs.conversations.entities.MucOptions;
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;
import eu.siacs.conversations.xmpp.stanzas.AbstractStanza;

public abstract class AbstractParser {

	protected XmppConnectionService mXmppConnectionService;

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

    /**
     * Gets the timestamp from the 'delay' element.
     * Refer to XEP-0203: Delayed Delivery for details. @link{http://xmpp.org/extensions/xep-0203.html}
     * @param element the element to find the child element 'delay' in.
     * @return the time in milli seconds of the attribute 'stamp' of the
     *  element 'delay'. In case there is no 'delay' element or no 'stamp'
     *  attribute or the current time is less than the value of the 'stamp'
     *  attribute the current time is returned.
     */
	public static Long getTimestamp(Element element, Long defaultValue) {
		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;
				}
			}
		}
		return defaultValue;
	}

	protected long getTimestamp(Element packet) {
		return getTimestamp(packet,System.currentTimeMillis());
	}

    /**
     * Parses the timestamp according to XEP-0082: XMPP Date and Time Profiles.
     * @link{http://xmpp.org/extensions/xep-0082.html}
     *
     * @param timestamp the timestamp to parse
     * @return Date
     * @throws ParseException
     */
	public static Date parseTimestamp(String timestamp) throws ParseException {
        /*try {
            Logging.d("TIMESTAMP", timestamp);
            return DatatypeFactory.newInstance().newXMLGregorianCalendar(timestamp).toGregorianCalendar().getTime();
        } catch (DatatypeConfigurationException e) {
            Logging.d("TIMESTAMP", e.getMessage());
            return new Date();
        }*/
        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(long timestamp, final Account account, final Jid from) {
		final String presence = from == null || from.isBareJid() ? "" : from.getResourcepart();
		final Contact contact = account.getRoster().getContact(from);
		if (timestamp >= contact.lastseen.time) {
			contact.lastseen.time = timestamp;
			if (!presence.isEmpty()) {
				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");
	}

	public static MucOptions.User parseItem(Conversation conference, Element item) {
		final String local = conference.getJid().getLocalpart();
		final String domain = conference.getJid().getDomainpart();
		String affiliation = item.getAttribute("affiliation");
		String role = item.getAttribute("role");
		String nick = item.getAttribute("nick");
		Jid fullJid;
		try {
			fullJid = nick != null ? Jid.fromParts(local, domain, nick) : null;
		} catch (InvalidJidException e) {
			fullJid = null;
		}
		Jid realJid = item.getAttributeAsJid("jid");
		MucOptions.User user = new MucOptions.User(conference.getMucOptions(), nick == null ? null : fullJid);
		user.setRealJid(realJid);
		user.setAffiliation(affiliation);
		user.setRole(role);
		return user;
	}
}