/* * Copyright (C) 1999-2008 Jive Software. 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 * * 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.openfire.fastpath.dataforms; import org.jivesoftware.xmpp.workgroup.Workgroup; import org.jivesoftware.xmpp.workgroup.WorkgroupProvider; import org.dom4j.Element; import org.xmpp.forms.DataForm; import org.xmpp.packet.IQ; import org.xmpp.packet.PacketError; public class WorkgroupFormProvider implements WorkgroupProvider { public boolean handleGet(IQ packet) { Element iq = packet.getChildElement(); String name = iq.getName(); if ("workgroup-form".equals(name)) { return true; } return false; } public boolean handleSet(IQ packet) { return false; } public void executeGet(IQ packet, Workgroup workgroup) { IQ reply = IQ.createResultIQ(packet); FormManager formManager = FormManager.getInstance(); DataForm dataForm = formManager.getDataForm(workgroup); if (dataForm == null) { reply.setChildElement(packet.getChildElement().createCopy()); reply.setError(new PacketError(PacketError.Condition.item_not_found)); workgroup.send(reply); return; } Element iq = packet.getChildElement(); if (iq.elements().isEmpty()) { reply.setChildElement(iq.createCopy()); // Send the data form to the requestor reply.addExtension(dataForm.createCopy()); workgroup.send(reply); } } public void executeSet(IQ packet, Workgroup workgroup) { } }