aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/xmpp/filetransfer/http/upload/SlotPacketParser.java
blob: 85d11b6b5e98b54f1fc2842b720d54f36ec27192 (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
package de.thedevstack.conversationsplus.xmpp.filetransfer.http.upload;

import de.thedevstack.conversationsplus.xml.Element;
import de.thedevstack.conversationsplus.xmpp.IqPacketParser;
import de.thedevstack.conversationsplus.xmpp.exceptions.UnexpectedIqPacketTypeException;
import de.thedevstack.conversationsplus.xmpp.exceptions.XmppException;
import de.thedevstack.conversationsplus.xmpp.stanzas.IqPacket;
import de.thedevstack.conversationsplus.xmpp.utils.ErrorIqPacketExceptionHelper;

/**
 *
 */
public final class SlotPacketParser extends IqPacketParser {
    public static HttpUploadSlot parseGetAndPutUrl(IqPacket packet) throws XmppException {
        HttpUploadSlot httpUploadSlot = null;
        if (packet.getType() == IqPacket.TYPE.RESULT) {
            Element slot = findRequiredChild(packet, "slot", HttpUpload.NAMESPACE);

            String getUrl = findRequiredChildContent(slot, "get");
            String putUrl = findRequiredChildContent(slot, "put");

            httpUploadSlot = new HttpUploadSlot(getUrl, putUrl);
        } else if (packet.getType() == IqPacket.TYPE.ERROR) {
            ErrorIqPacketExceptionHelper.throwIqErrorException(packet);
        } else {
            throw new UnexpectedIqPacketTypeException(packet, packet.getType(), IqPacket.TYPE.RESULT, IqPacket.TYPE.ERROR);
        }
        return httpUploadSlot;
    }
}