Smack/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/provider/MUCUserProvider.java

133 lines
4.8 KiB
Java
Raw Normal View History

/**
*
* Copyright 2003-2007 Jive Software.
*
* 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.
*/
2014-02-15 11:35:08 +01:00
package org.jivesoftware.smackx.muc.provider;
import java.io.IOException;
import org.jivesoftware.smack.packet.XmlEnvironment;
import org.jivesoftware.smack.provider.ExtensionElementProvider;
import org.jivesoftware.smack.util.ParserUtils;
import org.jivesoftware.smack.xml.XmlPullParser;
import org.jivesoftware.smack.xml.XmlPullParserException;
2014-02-15 11:35:08 +01:00
import org.jivesoftware.smackx.muc.packet.MUCUser;
import org.jxmpp.jid.EntityBareJid;
import org.jxmpp.jid.EntityJid;
/**
* The MUCUserProvider parses packets with extended presence information about
* roles and affiliations.
*
* @author Gaston Dombiak
*/
public class MUCUserProvider extends ExtensionElementProvider<MUCUser> {
/**
2018-03-31 14:17:30 +02:00
* Parses a MUCUser stanza (extension sub-packet).
*
* @param parser the XML parser, positioned at the starting element of the extension.
* @return a PacketExtension.
2019-10-30 12:02:36 +01:00
* @throws IOException if an I/O error occurred.
* @throws XmlPullParserException if an error in the XML parser occurred.
*/
@Override
public MUCUser parse(XmlPullParser parser, int initialDepth, XmlEnvironment xmlEnvironment) throws XmlPullParserException, IOException {
MUCUser mucUser = new MUCUser();
2014-09-05 00:29:07 +02:00
outerloop: while (true) {
switch (parser.next()) {
case START_ELEMENT:
2014-09-05 00:29:07 +02:00
switch (parser.getName()) {
case "invite":
mucUser.setInvite(parseInvite(parser));
2014-09-05 00:29:07 +02:00
break;
case "item":
mucUser.setItem(MUCParserUtils.parseItem(parser));
2014-09-05 00:29:07 +02:00
break;
case "password":
mucUser.setPassword(parser.nextText());
2014-09-05 00:29:07 +02:00
break;
case "status":
String statusString = parser.getAttributeValue("", "code");
mucUser.addStatusCode(MUCUser.Status.create(statusString));
2014-09-05 00:29:07 +02:00
break;
case "decline":
mucUser.setDecline(parseDecline(parser));
2014-09-05 00:29:07 +02:00
break;
case "destroy":
mucUser.setDestroy(MUCParserUtils.parseDestroy(parser));
2014-09-05 00:29:07 +02:00
break;
}
2014-09-05 00:29:07 +02:00
break;
case END_ELEMENT:
2014-09-05 00:29:07 +02:00
if (parser.getDepth() == initialDepth) {
break outerloop;
}
2014-09-05 00:29:07 +02:00
break;
default:
// Catch all for incomplete switch (MissingCasesInEnumSwitch) statement.
break;
}
}
return mucUser;
}
private static MUCUser.Invite parseInvite(XmlPullParser parser) throws XmlPullParserException, IOException {
String reason = null;
EntityBareJid to = ParserUtils.getBareJidAttribute(parser, "to");
EntityJid from = ParserUtils.getEntityJidAttribute(parser, "from");
outerloop: while (true) {
XmlPullParser.Event eventType = parser.next();
if (eventType == XmlPullParser.Event.START_ELEMENT) {
if (parser.getName().equals("reason")) {
reason = parser.nextText();
}
}
else if (eventType == XmlPullParser.Event.END_ELEMENT) {
if (parser.getName().equals("invite")) {
break outerloop;
}
}
}
return new MUCUser.Invite(reason, from, to);
}
private static MUCUser.Decline parseDecline(XmlPullParser parser) throws XmlPullParserException, IOException {
String reason = null;
EntityBareJid to = ParserUtils.getBareJidAttribute(parser, "to");
EntityBareJid from = ParserUtils.getBareJidAttribute(parser, "from");
outerloop: while (true) {
XmlPullParser.Event eventType = parser.next();
if (eventType == XmlPullParser.Event.START_ELEMENT) {
if (parser.getName().equals("reason")) {
reason = parser.nextText();
}
}
else if (eventType == XmlPullParser.Event.END_ELEMENT) {
if (parser.getName().equals("decline")) {
break outerloop;
}
}
}
return new MUCUser.Decline(reason, from, to);
}
}