aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/parser/AbstractParser.java
blob: 21da7fe676758945ee9af65708b8f2985fcd0a91 (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
package de.pixart.messenger.parser;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Locale;

import de.pixart.messenger.entities.Account;
import de.pixart.messenger.entities.Contact;
import de.pixart.messenger.entities.Conversation;
import de.pixart.messenger.entities.MucOptions;
import de.pixart.messenger.services.XmppConnectionService;
import de.pixart.messenger.xml.Element;
import de.pixart.messenger.xmpp.jid.InvalidJidException;
import de.pixart.messenger.xmpp.jid.Jid;

public abstract class AbstractParser {

    protected XmppConnectionService mXmppConnectionService;

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

    public static Long parseTimestamp(Element element, Long d) {
        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"));
                } catch (ParseException e) {
                    return d;
                }
            }
        }
        return d;
    }

    public static long parseTimestamp(Element element) {
        return parseTimestamp(element, System.currentTimeMillis());
    }

    public static long parseTimestamp(String timestamp) throws ParseException {
        timestamp = timestamp.replace("Z", "+0000");
        SimpleDateFormat dateFormat;
        long ms;
        if (timestamp.charAt(19) == '.' && timestamp.length() >= 25) {
            String millis = timestamp.substring(19, timestamp.length() - 5);
            try {
                double fractions = Double.parseDouble("0" + millis);
                ms = Math.round(1000 * fractions);
            } catch (NumberFormatException e) {
                ms = 0;
            }
        } else {
            ms = 0;
        }
        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 Math.min(dateFormat.parse(timestamp).getTime() + ms, System.currentTimeMillis());
    }

    protected void updateLastseen(final Account account, final Jid from) {
        final Contact contact = account.getRoster().getContact(from);
        contact.setLastResource(from.isBareJid() ? "" : from.getResourcepart());
    }

    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) {
        return parseItem(conference, item, null);
    }

    public static MucOptions.User parseItem(Conversation conference, Element item, Jid fullJid) {
        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");
        if (nick != null && fullJid == null) {
            try {
                fullJid = Jid.fromParts(local, domain, nick);
            } catch (InvalidJidException e) {
                fullJid = null;
            }
        }
        Jid realJid = item.getAttributeAsJid("jid");
        MucOptions.User user = new MucOptions.User(conference.getMucOptions(), fullJid);
        user.setRealJid(realJid);
        user.setAffiliation(affiliation);
        user.setRole(role);
        return user;
    }

    public static String extractErrorMessage(Element packet) {
        final Element error = packet.findChild("error");
        if (error != null && error.getChildren().size() > 0) {
            final String text = error.findChildContent("text");
            if (text != null && !text.trim().isEmpty()) {
                return text;
            } else {
                return error.getChildren().get(0).getName().replace("-", " ");
            }
        } else {
            return null;
        }
    }
}