/** * * Copyright © 2017 Grigory Fedorov * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jivesoftware.smackx.httpfileupload.provider; import org.jivesoftware.smack.SmackException; import org.jivesoftware.smack.provider.IQProvider; import org.jivesoftware.smack.util.ParserUtils; import org.jivesoftware.smackx.httpfileupload.element.Slot; import org.jivesoftware.smackx.httpfileupload.element.Slot_V0_2; import org.xmlpull.v1.XmlPullParser; import org.xmlpull.v1.XmlPullParserException; import java.io.IOException; import java.net.URL; import java.util.HashMap; import java.util.Map; /** * Provider for Slot. * * @author Grigory Fedorov * @see XEP-0363: HTTP File Upload */ public class SlotProvider extends IQProvider { @Override public Slot parse(XmlPullParser parser, int initialDepth) throws XmlPullParserException, IOException, SmackException { final String namespace = parser.getNamespace(); URL putUrl = null; URL getUrl = null; Map headers = null; outerloop: while (true) { int event = parser.next(); switch (event) { case XmlPullParser.START_TAG: String name = parser.getName(); switch (name) { case "put": putUrl = new URL(parser.nextText()); break; case "get": getUrl = new URL(parser.nextText()); break; case "header": String headerName = ParserUtils.getRequiredAttribute(parser, "name"); String headerValue = ParserUtils.getRequiredNextText(parser); if (headers == null) { headers = new HashMap<>(); } headers.put(headerName, headerValue); break; } break; case XmlPullParser.END_TAG: if (parser.getDepth() == initialDepth) { break outerloop; } break; } } switch (namespace) { case Slot.NAMESPACE: return new Slot(putUrl, getUrl, headers); case Slot_V0_2.NAMESPACE: return new Slot_V0_2(putUrl, getUrl); default: throw new AssertionError(); } } }