/* * Copyright (c) 2010 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #include #include namespace Swift { boost::shared_ptr IQ::createRequest( Type type, const JID& to, const std::string& id, boost::shared_ptr payload) { boost::shared_ptr iq = boost::make_shared(type); if (to.isValid()) { iq->setTo(to); } iq->setID(id); if (payload) { iq->addPayload(payload); } return iq; } boost::shared_ptr IQ::createResult(const JID& to, const std::string& id, boost::shared_ptr payload) { boost::shared_ptr iq = boost::make_shared(Result); iq->setTo(to); iq->setID(id); if (payload) { iq->addPayload(payload); } return iq; } boost::shared_ptr IQ::createResult(const JID& to, const JID& from, const std::string& id, boost::shared_ptr payload) { boost::shared_ptr iq = boost::make_shared(Result); iq->setTo(to); iq->setFrom(from); iq->setID(id); if (payload) { iq->addPayload(payload); } return iq; } boost::shared_ptr IQ::createError(const JID& to, const std::string& id, ErrorPayload::Condition condition, ErrorPayload::Type type, boost::shared_ptr payload) { boost::shared_ptr iq = boost::make_shared(IQ::Error); iq->setTo(to); iq->setID(id); boost::shared_ptr errorPayload = boost::make_shared(condition, type); errorPayload->setPayload(payload); iq->addPayload(errorPayload); return iq; } boost::shared_ptr IQ::createError(const JID& to, const JID& from, const std::string& id, ErrorPayload::Condition condition, ErrorPayload::Type type, boost::shared_ptr payload) { boost::shared_ptr iq = boost::make_shared(IQ::Error); iq->setTo(to); iq->setFrom(from); iq->setID(id); boost::shared_ptr errorPayload = boost::make_shared(condition, type); errorPayload->setPayload(payload); iq->addPayload(errorPayload); return iq; } }