2003-09-14 16:46:38 +02:00
|
|
|
/**
|
|
|
|
* $RCSfile$
|
|
|
|
* $Revision$
|
|
|
|
* $Date$
|
|
|
|
*
|
2007-02-12 01:59:05 +01:00
|
|
|
* Copyright 2003-2007 Jive Software.
|
2003-09-14 16:46:38 +02:00
|
|
|
*
|
2004-11-03 00:37:00 +01:00
|
|
|
* All rights reserved. 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
|
2003-09-14 16:46:38 +02:00
|
|
|
*
|
2004-11-03 00:37:00 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2003-09-14 16:46:38 +02:00
|
|
|
*
|
2004-11-03 00:37:00 +01:00
|
|
|
* 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.
|
2003-09-14 16:46:38 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
package org.jivesoftware.smackx.provider;
|
|
|
|
|
|
|
|
import org.jivesoftware.smack.packet.PacketExtension;
|
|
|
|
import org.jivesoftware.smack.provider.PacketExtensionProvider;
|
2006-07-10 20:15:26 +02:00
|
|
|
import org.jivesoftware.smack.util.StringUtils;
|
2003-09-14 16:46:38 +02:00
|
|
|
import org.jivesoftware.smackx.packet.XHTMLExtension;
|
|
|
|
import org.xmlpull.v1.XmlPullParser;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The XHTMLExtensionProvider parses XHTML packets.
|
|
|
|
*
|
|
|
|
* @author Gaston Dombiak
|
|
|
|
*/
|
|
|
|
public class XHTMLExtensionProvider implements PacketExtensionProvider {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new XHTMLExtensionProvider.
|
|
|
|
* ProviderManager requires that every PacketExtensionProvider has a public, no-argument constructor
|
|
|
|
*/
|
|
|
|
public XHTMLExtensionProvider() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parses a XHTMLExtension packet (extension sub-packet).
|
|
|
|
*
|
|
|
|
* @param parser the XML parser, positioned at the starting element of the extension.
|
|
|
|
* @return a PacketExtension.
|
|
|
|
* @throws Exception if a parsing error occurs.
|
|
|
|
*/
|
|
|
|
public PacketExtension parseExtension(XmlPullParser parser)
|
|
|
|
throws Exception {
|
|
|
|
XHTMLExtension xhtmlExtension = new XHTMLExtension();
|
|
|
|
boolean done = false;
|
2006-07-18 07:14:33 +02:00
|
|
|
StringBuilder buffer = new StringBuilder();
|
2006-07-10 20:15:26 +02:00
|
|
|
int startDepth = parser.getDepth();
|
|
|
|
int depth = parser.getDepth();
|
|
|
|
String lastTag = "";
|
2003-09-14 16:46:38 +02:00
|
|
|
while (!done) {
|
|
|
|
int eventType = parser.next();
|
|
|
|
if (eventType == XmlPullParser.START_TAG) {
|
2006-07-10 20:15:26 +02:00
|
|
|
if (parser.getName().equals("body")) {
|
2006-07-18 07:14:33 +02:00
|
|
|
buffer = new StringBuilder();
|
2006-07-10 20:15:26 +02:00
|
|
|
depth = parser.getDepth();
|
|
|
|
}
|
|
|
|
lastTag = parser.getText();
|
2003-09-14 16:46:38 +02:00
|
|
|
buffer.append(parser.getText());
|
|
|
|
} else if (eventType == XmlPullParser.TEXT) {
|
2006-07-10 20:15:26 +02:00
|
|
|
if (buffer != null) {
|
|
|
|
// We need to return valid XML so any inner text needs to be re-escaped
|
|
|
|
buffer.append(StringUtils.escapeForXML(parser.getText()));
|
|
|
|
}
|
2003-09-14 16:46:38 +02:00
|
|
|
} else if (eventType == XmlPullParser.END_TAG) {
|
2006-07-10 20:27:40 +02:00
|
|
|
if (parser.getName().equals("body") && parser.getDepth() <= depth) {
|
2003-09-14 16:46:38 +02:00
|
|
|
buffer.append(parser.getText());
|
|
|
|
xhtmlExtension.addBody(buffer.toString());
|
|
|
|
}
|
2006-07-10 20:15:26 +02:00
|
|
|
else if (parser.getName().equals(xhtmlExtension.getElementName())
|
2006-07-10 20:27:40 +02:00
|
|
|
&& parser.getDepth() <= startDepth) {
|
2003-09-14 16:46:38 +02:00
|
|
|
done = true;
|
|
|
|
}
|
2006-07-10 20:15:26 +02:00
|
|
|
else {
|
|
|
|
// This is a check for tags that are both a start and end tag like <br/>
|
|
|
|
// So that they aren't doubled
|
|
|
|
if(!lastTag.equals(parser.getText())) {
|
|
|
|
buffer.append(parser.getText());
|
|
|
|
}
|
|
|
|
}
|
2003-09-14 16:46:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return xhtmlExtension;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|