/** * * Copyright 2016 Fernando Ramirez * * 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.bob.provider; import org.jivesoftware.smack.provider.IQProvider; import org.jivesoftware.smack.util.stringencoder.Base64; import org.jivesoftware.smackx.bob.BoBData; import org.jivesoftware.smackx.bob.BoBHash; import org.jivesoftware.smackx.bob.element.BoBIQ; import org.xmlpull.v1.XmlPullParser; /** * Bits of Binary IQ provider class. * * @author Fernando Ramirez * @see XEP-0231: Bits of * Binary */ public class BoBIQProvider extends IQProvider { @Override public BoBIQ parse(XmlPullParser parser, int initialDepth) throws Exception { BoBHash bobHash = null; BoBData bobData = null; parser.next(); if (parser.getName().equals(BoBIQ.ELEMENT)) { String cid = parser.getAttributeValue("", "cid"); bobHash = BoBHash.fromCid(cid); String dataType = parser.getAttributeValue("", "type"); String maxAgeString = parser.getAttributeValue("", "max-age"); long maxAge = 0; if (maxAgeString != null) { maxAge = Long.parseLong(maxAgeString); } String base64EncodedData = null; try { base64EncodedData = parser.nextText(); } catch (Exception e) { } if (base64EncodedData != null && dataType != null) { byte[] base64EncodedDataBytes = base64EncodedData.getBytes(); bobData = new BoBData(maxAge, dataType, Base64.decode(base64EncodedDataBytes)); } } return new BoBIQ(bobHash, bobData); } }