From dff7c00a0c2c3fcb64efd611d70398d711ad861b Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 24 Jun 2009 00:04:28 +0200 Subject: NetworkUserBackend implementiert --- src/Common/Backends/CMakeLists.txt | 6 + src/Common/Backends/NetworkUserBackend.cpp | 203 +++++++++++++++++++++++++++++ src/Common/Backends/NetworkUserBackend.h | 91 +++++++++++++ 3 files changed, 300 insertions(+) create mode 100644 src/Common/Backends/CMakeLists.txt create mode 100644 src/Common/Backends/NetworkUserBackend.cpp create mode 100644 src/Common/Backends/NetworkUserBackend.h (limited to 'src/Common/Backends') diff --git a/src/Common/Backends/CMakeLists.txt b/src/Common/Backends/CMakeLists.txt new file mode 100644 index 0000000..4d9d30e --- /dev/null +++ b/src/Common/Backends/CMakeLists.txt @@ -0,0 +1,6 @@ +include_directories(${INCLUDES}) + +add_library(Backends STATIC + NetworkUserBackend.cpp NetworkUserBackend.h +) +target_link_libraries(Backends Common) diff --git a/src/Common/Backends/NetworkUserBackend.cpp b/src/Common/Backends/NetworkUserBackend.cpp new file mode 100644 index 0000000..81fc94a --- /dev/null +++ b/src/Common/Backends/NetworkUserBackend.cpp @@ -0,0 +1,203 @@ +/* + * NetworkUserBackend.cpp + * + * Copyright (C) 2009 Matthias Schiffer + * + * 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 3 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, see . + */ + +#include "NetworkUserBackend.h" +#include "../RequestManager.h" + +namespace Mad { +namespace Common { +namespace Backends { + +void NetworkUserBackend::IdUserRequest::sendRequest() { + Common::XmlPacket packet; + packet.setType(type); + packet.set(idType, id); + + sendPacket(packet); +} + +void NetworkUserBackend::NameUserRequest::sendRequest() { + Common::XmlPacket packet; + packet.setType(type); + packet.set("name", name); + + sendPacket(packet); +} + +boost::shared_ptr > NetworkUserBackend::getUserList() throw(Core::Exception) { + boost::shared_ptr request(new SimpleUserRequest(application, "ListUsers")); + application->getRequestManager()->sendRequest(connection, request); + request->wait(); + + std::pair, Core::Exception> result = request->getResult(); + if(!result.first || result.second) + throw result.second; + + boost::shared_ptr > userList(new std::map); + + const XmlPacket::List *users = result.first->getList("users"); + if(users) { + for(XmlPacket::List::const_iterator user = users->begin(); user != users->end(); ++user) { + UserInfo userInfo(user->get("uid"), user->get("username")); + userInfo.setGid(user->get("gid")); + userInfo.setFullName(user->get("fullName")); + + userList->insert(std::make_pair(userInfo.getUid(), userInfo)); + } + } + + return userList; +} + +boost::shared_ptr NetworkUserBackend::getUserInfo(unsigned long uid) throw(Core::Exception) { + boost::shared_ptr request(new IdUserRequest(application, "GetUserInfo", "uid", uid)); + application->getRequestManager()->sendRequest(connection, request); + request->wait(); + + std::pair, Core::Exception> result = request->getResult(); + if(!result.first || result.second) + throw result.second; + + boost::shared_ptr userInfo(new UserInfo(result.first->get("uid"), result.first->get("username"))); + userInfo->setGid(result.first->get("gid")); + userInfo->setFullName(result.first->get("fullName")); + + return userInfo; +} + +boost::shared_ptr NetworkUserBackend::getUserInfoByName(const std::string &name) throw(Core::Exception) { + boost::shared_ptr request(new NameUserRequest(application, "GetUserInfo", name)); + application->getRequestManager()->sendRequest(connection, request); + request->wait(); + + std::pair, Core::Exception> result = request->getResult(); + if(!result.first || result.second) + throw result.second; + + boost::shared_ptr userInfo(new UserInfo(result.first->get("uid"), result.first->get("username"))); + userInfo->setGid(result.first->get("gid")); + userInfo->setFullName(result.first->get("fullName")); + + return userInfo; +} + +boost::shared_ptr > NetworkUserBackend::getUserGroupList(unsigned long uid) throw(Core::Exception) { + boost::shared_ptr request(new IdUserRequest(application, "ListUserGroups", "uid", uid)); + application->getRequestManager()->sendRequest(connection, request); + request->wait(); + + std::pair, Core::Exception> result = request->getResult(); + if(!result.first || result.second) + throw result.second; + + boost::shared_ptr > groupList(new std::set); + + const XmlPacket::List *groups = result.first->getList("groups"); + if(groups) { + for(XmlPacket::List::const_iterator group = groups->begin(); group != groups->end(); ++group) + groupList->insert(group->get("gid")); + } + + return groupList; +} + +boost::shared_ptr > NetworkUserBackend::getGroupList() throw(Core::Exception) { + boost::shared_ptr request(new SimpleUserRequest(application, "ListGroups")); + application->getRequestManager()->sendRequest(connection, request); + request->wait(); + + std::pair, Core::Exception> result = request->getResult(); + if(!result.first || result.second) + throw result.second; + + boost::shared_ptr > groupList(new std::map); + + const XmlPacket::List *groups = result.first->getList("groups"); + if(groups) { + for(XmlPacket::List::const_iterator group = groups->begin(); group != groups->end(); ++group) { + GroupInfo groupInfo(group->get("gid"), group->get("name")); + groupList->insert(std::make_pair(groupInfo.getGid(), groupInfo)); + } + } + + return groupList; +} + +boost::shared_ptr NetworkUserBackend::getGroupInfo(unsigned long gid) throw(Core::Exception) { + boost::shared_ptr request(new IdUserRequest(application, "GetGroupInfo", "gid", gid)); + application->getRequestManager()->sendRequest(connection, request); + request->wait(); + + std::pair, Core::Exception> result = request->getResult(); + if(!result.first || result.second) + throw result.second; + + boost::shared_ptr groupInfo(new GroupInfo(result.first->get("gid"), result.first->get("name"))); + + return groupInfo; +} + +boost::shared_ptr NetworkUserBackend::getGroupInfoByName(const std::string &name) throw(Core::Exception) { + boost::shared_ptr request(new NameUserRequest(application, "GetGroupInfo", name)); + application->getRequestManager()->sendRequest(connection, request); + request->wait(); + + std::pair, Core::Exception> result = request->getResult(); + if(!result.first || result.second) + throw result.second; + + boost::shared_ptr groupInfo(new GroupInfo(result.first->get("gid"), result.first->get("name"))); + + return groupInfo; +} + +boost::shared_ptr > NetworkUserBackend::getGroupUserList(unsigned long gid) throw(Core::Exception) { + boost::shared_ptr request(new IdUserRequest(application, "ListGroupUsers", "gid", gid)); + application->getRequestManager()->sendRequest(connection, request); + request->wait(); + + std::pair, Core::Exception> result = request->getResult(); + if(!result.first || result.second) + throw result.second; + + boost::shared_ptr > userList(new std::set); + + const XmlPacket::List *users = result.first->getList("users"); + if(users) { + for(XmlPacket::List::const_iterator user = users->begin(); user != users->end(); ++user) { + userList->insert(user->get("uid")); + } + } + + return userList; +} + + +/*void NetworkUserBackend::setPassword(unsigned long uid, const std::string &password) throw(Core::Exception) { + +}*/ + + +/*void NetworkUserBackend::addUser(const UserInfo &userInfo) throw(Core::Exception) { + +}*/ + +} +} +} diff --git a/src/Common/Backends/NetworkUserBackend.h b/src/Common/Backends/NetworkUserBackend.h new file mode 100644 index 0000000..c569ab6 --- /dev/null +++ b/src/Common/Backends/NetworkUserBackend.h @@ -0,0 +1,91 @@ +/* + * NetworkUserBackend.h + * + * Copyright (C) 2009 Matthias Schiffer + * + * 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 3 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, see . + */ + +#ifndef MAD_COMMON_BACKENDS_NETWORKUSERBACKEND_H_ +#define MAD_COMMON_BACKENDS_NETWORKUSERBACKEND_H_ + +#include "../UserBackend.h" +#include "../Requests/SimpleRequest.h" + +namespace Mad { +namespace Common { +namespace Backends { + +class NetworkUserBackend : public UserBackend { + private: + class SimpleUserRequest : public Requests::SimpleRequest { + public: + SimpleUserRequest(Application *application, const std::string &type) : SimpleRequest(application, type) {} + }; + + class IdUserRequest : public Request { + private: + std::string type; + std::string idType; + unsigned long id; + + + protected: + virtual void sendRequest(); + + public: + IdUserRequest(Application *application, const std::string &type0, const std::string &idType0, unsigned long id0) + : Request(application), type(type0), idType(idType0), id(id0) {} + }; + + class NameUserRequest : public Request { + private: + std::string type; + std::string name; + + + protected: + virtual void sendRequest(); + + public: + NameUserRequest(Application *application, const std::string &type0, const std::string &name0) + : Request(application), type(type0), name(name0) {} + }; + + Application *application; + Connection *connection; + + protected: + virtual boost::shared_ptr > getUserList() throw(Core::Exception); + virtual boost::shared_ptr getUserInfo(unsigned long uid) throw(Core::Exception); + virtual boost::shared_ptr getUserInfoByName(const std::string &name) throw(Core::Exception); + virtual boost::shared_ptr > getUserGroupList(unsigned long uid) throw(Core::Exception); + + virtual boost::shared_ptr > getGroupList() throw(Core::Exception); + virtual boost::shared_ptr getGroupInfo(unsigned long gid) throw(Core::Exception); + virtual boost::shared_ptr getGroupInfoByName(const std::string &name) throw(Core::Exception); + virtual boost::shared_ptr > getGroupUserList(unsigned long gid) throw(Core::Exception); + + //virtual void setPassword(unsigned long uid, const std::string &password) throw(Core::Exception); + //virtual void addUser(const UserInfo &userInfo) throw(Core::Exception); + + public: + NetworkUserBackend(Application *application0, Connection *connection0) : application(application0), connection(connection0) {} +}; + +} +} +} + +#endif /* MAD_COMMON_BACKENDS_NETWORKUSERBACKEND_H_ */ -- cgit v1.2.3