aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/xmpp/filetransfer/http/delete/DeleteSlotPacketParser.java
blob: a6408e9f0f1037002899c37421859c5d9caff7e3 (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.delete;

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.filetransfer.http.FileTransferHttp;
import de.thedevstack.conversationsplus.xmpp.utils.ErrorIqPacketExceptionHelper;

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

/**
 * Created by steckbrief on 21.08.2016.
 */
public class DeleteSlotPacketParser extends IqPacketParser {
    public static String parseDeleteToken(IqPacket packet) throws XmppException {
        String deletetoken = null;
        if (packet.getType() == IqPacket.TYPE.RESULT) {
            Element slot = findRequiredChild(packet, "slot", FileTransferHttp.NAMESPACE);

            deletetoken = findRequiredChildContent(slot, "deletetoken");
        } else if (packet.getType() == IqPacket.TYPE.ERROR) {
            ErrorIqPacketExceptionHelper.throwIqErrorException(packet);
        } else {
            throw new UnexpectedIqPacketTypeException(packet, packet.getType(), IqPacket.TYPE.RESULT, IqPacket.TYPE.ERROR);
        }

        return deletetoken;
    }
}