| /* |
| * libjingle |
| * Copyright 2011, Google Inc. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions are met: |
| * |
| * 1. Redistributions of source code must retain the above copyright notice, |
| * this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright notice, |
| * this list of conditions and the following disclaimer in the documentation |
| * and/or other materials provided with the distribution. |
| * 3. The name of the author may not be used to endorse or promote products |
| * derived from this software without specific prior written permission. |
| * |
| * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
| * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "talk/xmpp/mucroomlookuptask.h" |
| |
| #include "talk/base/logging.h" |
| #include "talk/base/scoped_ptr.h" |
| #include "talk/xmpp/constants.h" |
| |
| |
| namespace buzz { |
| |
| MucRoomLookupTask::MucRoomLookupTask(XmppTaskParentInterface* parent, |
| const Jid& lookup_server_jid, |
| const std::string& room_name, |
| const std::string& room_domain) |
| : IqTask(parent, STR_SET, lookup_server_jid, |
| MakeNameQuery(room_name, room_domain)) { |
| } |
| |
| MucRoomLookupTask::MucRoomLookupTask(XmppTaskParentInterface* parent, |
| const Jid& lookup_server_jid, |
| const Jid& room_jid) |
| : IqTask(parent, STR_SET, lookup_server_jid, |
| MakeJidQuery(room_jid)) { |
| } |
| |
| XmlElement* MucRoomLookupTask::MakeNameQuery( |
| const std::string& room_name, const std::string& room_domain) { |
| XmlElement* name_elem = new XmlElement(QN_SEARCH_ROOM_NAME, false); |
| name_elem->SetBodyText(room_name); |
| |
| XmlElement* domain_elem = new XmlElement(QN_SEARCH_ROOM_DOMAIN, false); |
| domain_elem->SetBodyText(room_domain); |
| |
| XmlElement* query = new XmlElement(QN_SEARCH_QUERY, true); |
| query->AddElement(name_elem); |
| query->AddElement(domain_elem); |
| return query; |
| } |
| |
| XmlElement* MucRoomLookupTask::MakeJidQuery(const Jid& room_jid) { |
| XmlElement* jid_elem = new XmlElement(QN_SEARCH_ROOM_JID); |
| jid_elem->SetBodyText(room_jid.Str()); |
| |
| XmlElement* query = new XmlElement(QN_SEARCH_QUERY); |
| query->AddElement(jid_elem); |
| return query; |
| } |
| |
| void MucRoomLookupTask::HandleResult(const XmlElement* stanza) { |
| const XmlElement* query_elem = stanza->FirstNamed(QN_SEARCH_QUERY); |
| if (query_elem == NULL) { |
| SignalError(this, NULL); |
| return; |
| } |
| |
| const XmlElement* item_elem = query_elem->FirstNamed(QN_SEARCH_ITEM); |
| if (item_elem == NULL) { |
| SignalError(this, NULL); |
| return; |
| } |
| |
| MucRoomInfo room; |
| room.jid = Jid(item_elem->Attr(buzz::QN_JID)); |
| if (!room.jid.IsValid()) { |
| SignalError(this, NULL); |
| return; |
| } |
| |
| const XmlElement* room_name_elem = |
| item_elem->FirstNamed(QN_SEARCH_ROOM_NAME); |
| if (room_name_elem != NULL) { |
| room.name = room_name_elem->BodyText(); |
| } |
| |
| const XmlElement* room_domain_elem = |
| item_elem->FirstNamed(QN_SEARCH_ROOM_DOMAIN); |
| if (room_domain_elem != NULL) { |
| room.domain = room_domain_elem->BodyText(); |
| } |
| |
| SignalResult(this, room); |
| } |
| |
| } // namespace buzz |