aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/parser/AbstractParser.java
blob: 0b94102a584c30b365a4921f9d0bc609c5874250 (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package de.pixart.messenger.parser;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List;
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.InvalidJid;
import de.pixart.messenger.xmpp.stanzas.AbstractStanza;
import rocks.xmpp.addr.Jid;

public abstract class AbstractParser {

    protected XmppConnectionService mXmppConnectionService;

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

    public static Long parseTimestamp(Element element, Long d) {
        return parseTimestamp(element, d, false);
    }

    public static Long parseTimestamp(Element element, Long d, boolean ignoreCsiAndSm) {
        long min = Long.MAX_VALUE;
        boolean returnDefault = true;
        final Jid to;
        if (ignoreCsiAndSm && element instanceof AbstractStanza) {
            to = ((AbstractStanza) element).getTo();
        } else {
            to = null;
        }
        for (Element child : element.getChildren()) {
            if ("delay".equals(child.getName()) && "urn:xmpp:delay".equals(child.getNamespace())) {
                final Jid f = to == null ? null : InvalidJid.getNullForInvalid(child.getAttributeAsJid("from"));
                if (f != null && (to.asBareJid().equals(f) || to.getDomain().equals(f.toString()))) {
                    continue;
                }
                final String stamp = child.getAttribute("stamp");
                if (stamp != null) {
                    try {
                        min = Math.min(min, AbstractParser.parseTimestamp(stamp));
                        returnDefault = false;
                    } catch (Throwable t) {
                        //ignore
                    }
                }
            }
        }
        if (returnDefault) {
            return d;
        } else {
            return min;
        }
    }

    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.length() >= 25 && timestamp.charAt(19) == '.') {
            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.getResource());
    }

    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().getLocal();
        final String domain = conference.getJid().getDomain();
        String affiliation = item.getAttribute("affiliation");
        String role = item.getAttribute("role");
        String nick = item.getAttribute("nick");
        if (nick != null && fullJid == null) {
            try {
                fullJid = Jid.of(local, domain, nick);
            } catch (IllegalArgumentException e) {
                fullJid = null;
            }
        }
        Jid realJid = item.getAttributeAsJid("jid");
        MucOptions.User user = new MucOptions.User(conference.getMucOptions(), fullJid);
        if (InvalidJid.isValid(realJid)) {
            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 List<String> errorNames = orderedElementNames(error.getChildren());
            final String text = error.findChildContent("text");
            if (text != null && !text.trim().isEmpty()) {
                return prefixError(errorNames) + text;
            } else if (errorNames.size() > 0) {
                return prefixError(errorNames) + errorNames.get(0).replace("-", " ");
            }
        }
        return null;
    }

    private static String prefixError(List<String> errorNames) {
        if (errorNames.size() > 0) {
            return errorNames.get(0) + '\u001f';
        }
        return "";
    }

    private static List<String> orderedElementNames(List<Element> children) {
        List<String> names = new ArrayList<>();
        for (Element child : children) {
            final String name = child.getName();
            if (name != null && !name.equals("text")) {
                if ("urn:ietf:params:xml:ns:xmpp-stanzas".equals(child.getNamespace())) {
                    names.add(name);
                } else {
                    names.add(0, name);
                }
            }
        }
        return names;
    }
}