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

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.utils.ErrorIqPacketExceptionHelper;

import eu.siacs.conversations.xml.Element;
import eu.siacs.conversations.xmpp.stanzas.IqPacket;

/**
 *
 */
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;
    }
}