82 lines
3 KiB
C++
82 lines
3 KiB
C++
/**
|
|
* XMPP - libpurple transport
|
|
*
|
|
* Copyright (C) 2009, Jan Kaluza <hanzz@soc.pidgin.im>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
|
|
*/
|
|
|
|
#include "storageresponder.h"
|
|
|
|
#include <iostream>
|
|
#include <boost/bind.hpp>
|
|
#include "Swiften/Queries/IQRouter.h"
|
|
#include "Swiften/Elements/RawXMLPayload.h"
|
|
#include "Swiften/Swiften.h"
|
|
#include "transport/usermanager.h"
|
|
#include "transport/user.h"
|
|
#include "log4cxx/logger.h"
|
|
|
|
using namespace log4cxx;
|
|
|
|
using namespace Swift;
|
|
using namespace boost;
|
|
|
|
namespace Transport {
|
|
|
|
static LoggerPtr logger = Logger::getLogger("StorageResponder");
|
|
|
|
StorageResponder::StorageResponder(Swift::IQRouter *router, StorageBackend *storageBackend, UserManager *userManager) : Swift::Responder<PrivateStorage>(router) {
|
|
m_storageBackend = storageBackend;
|
|
m_userManager = userManager;
|
|
}
|
|
|
|
StorageResponder::~StorageResponder() {
|
|
}
|
|
|
|
bool StorageResponder::handleGetRequest(const Swift::JID& from, const Swift::JID& to, const std::string& id, boost::shared_ptr<Swift::PrivateStorage> payload) {
|
|
User *user = m_userManager->getUser(from.toBare().toString());
|
|
if (!user) {
|
|
LOG4CXX_WARN(logger, from.toBare().toString() << ": User is not logged in");
|
|
sendError(from, id, ErrorPayload::NotAcceptable, ErrorPayload::Cancel);
|
|
return true;
|
|
}
|
|
|
|
int type = 0;
|
|
std::string value = "";
|
|
m_storageBackend->getUserSetting(user->getUserInfo().id, "storage", type, value);
|
|
LOG4CXX_INFO(logger, from.toBare().toString() << ": Sending jabber:iq:storage");
|
|
|
|
sendResponse(from, id, boost::shared_ptr<PrivateStorage>(new PrivateStorage(boost::shared_ptr<RawXMLPayload>(new RawXMLPayload(value)))));
|
|
return true;
|
|
}
|
|
|
|
bool StorageResponder::handleSetRequest(const Swift::JID& from, const Swift::JID& to, const std::string& id, boost::shared_ptr<Swift::PrivateStorage> payload) {
|
|
User *user = m_userManager->getUser(from.toBare().toString());
|
|
if (!user) {
|
|
sendError(from, id, ErrorPayload::NotAcceptable, ErrorPayload::Cancel);
|
|
LOG4CXX_WARN(logger, from.toBare().toString() << ": User is not logged in");
|
|
return true;
|
|
}
|
|
|
|
StorageSerializer serializer;
|
|
std::string value = serializer.serializePayload(boost::dynamic_pointer_cast<Storage>(payload->getPayload()));
|
|
m_storageBackend->updateUserSetting(user->getUserInfo().id, "storage", value);
|
|
LOG4CXX_INFO(logger, from.toBare().toString() << ": Storing jabber:iq:storage");
|
|
sendResponse(from, id, boost::shared_ptr<PrivateStorage>());
|
|
return true;
|
|
}
|
|
|
|
}
|