From 26c1290391eb5540d6e2c5f6eceb877e0075d087 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 23 Sep 2009 14:20:58 +0200 Subject: Client: UserListManager client --- src/Client/Requests/DaemonListRequest.h | 2 - .../Requests/UserLists/UserListDiffListRequest.h | 43 +++++++++++++++++++ .../Requests/UserLists/UserListDownloadRequest.cpp | 38 ++++++++++++++++ .../Requests/UserLists/UserListDownloadRequest.h | 50 ++++++++++++++++++++++ .../Requests/UserLists/UserListListRequest.h | 43 +++++++++++++++++++ 5 files changed, 174 insertions(+), 2 deletions(-) create mode 100644 src/Client/Requests/UserLists/UserListDiffListRequest.h create mode 100644 src/Client/Requests/UserLists/UserListDownloadRequest.cpp create mode 100644 src/Client/Requests/UserLists/UserListDownloadRequest.h create mode 100644 src/Client/Requests/UserLists/UserListListRequest.h (limited to 'src/Client/Requests') diff --git a/src/Client/Requests/DaemonListRequest.h b/src/Client/Requests/DaemonListRequest.h index 85fc4e1..76f85cd 100644 --- a/src/Client/Requests/DaemonListRequest.h +++ b/src/Client/Requests/DaemonListRequest.h @@ -20,8 +20,6 @@ #ifndef MAD_CLIENT_REQUEST_DAEMONLISTREQUEST_H_ #define MAD_CLIENT_REQUEST_DAEMONLISTREQUEST_H_ -#include "../export.h" - #include namespace Mad { diff --git a/src/Client/Requests/UserLists/UserListDiffListRequest.h b/src/Client/Requests/UserLists/UserListDiffListRequest.h new file mode 100644 index 0000000..54831c1 --- /dev/null +++ b/src/Client/Requests/UserLists/UserListDiffListRequest.h @@ -0,0 +1,43 @@ +/* + * UserListDiffListRequest.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 Lesser 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along + * with this program. If not, see . + */ + +#ifndef MAD_CLIENT_USERLISTS_USERLISTDIFFLISTREQUEST_H_ +#define MAD_CLIENT_USERLISTS_USERLISTDIFFLISTREQUEST_H_ + +#include + +namespace Mad { +namespace Client { +namespace Requests { +namespace UserLists { + +class UserListDiffListRequest : public Common::Requests::SimpleRequest { + public: + UserListDiffListRequest(Common::Application *application) : SimpleRequest(application, "ListUserListDiffs") {} +}; + +} + +} + +} + +} + +#endif /* MAD_CLIENT_USERLISTS_USERLISTDIFFLISTREQUEST_H_ */ diff --git a/src/Client/Requests/UserLists/UserListDownloadRequest.cpp b/src/Client/Requests/UserLists/UserListDownloadRequest.cpp new file mode 100644 index 0000000..8e31fce --- /dev/null +++ b/src/Client/Requests/UserLists/UserListDownloadRequest.cpp @@ -0,0 +1,38 @@ +/* + * UserListDownloadRequest.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 Lesser 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along + * with this program. If not, see . + */ + +#include "UserListDownloadRequest.h" + +namespace Mad { +namespace Client { +namespace Requests { +namespace UserLists { + +void UserListDownloadRequest::sendRequest() { + Common::XmlData packet; + packet.setType("DownloadUserList"); + packet.set("name", name); + + sendPacket(packet); +} + +} +} +} +} diff --git a/src/Client/Requests/UserLists/UserListDownloadRequest.h b/src/Client/Requests/UserLists/UserListDownloadRequest.h new file mode 100644 index 0000000..570899f --- /dev/null +++ b/src/Client/Requests/UserLists/UserListDownloadRequest.h @@ -0,0 +1,50 @@ +/* + * UserListDownloadRequest.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 Lesser 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along + * with this program. If not, see . + */ + +#ifndef MAD_CLIENT_REQUESTS_USERLISTS_USERLISTDOWNLOADREQUEST_H_ +#define MAD_CLIENT_REQUESTS_USERLISTS_USERLISTDOWNLOADREQUEST_H_ + +#include + +namespace Mad { +namespace Client { +namespace Requests { +namespace UserLists { + +class UserListDownloadRequest : public Common::Request { + private: + std::string name; + + protected: + virtual void sendRequest(); + + public: + UserListDownloadRequest(Common::Application *application, const std::string &name0) + : Common::Request(application), name(name0) {} +}; + +} + +} + +} + +} + +#endif /* MAD_CLIENT_REQUESTS_USERLISTS_USERLISTDOWNLOADREQUEST_H_ */ diff --git a/src/Client/Requests/UserLists/UserListListRequest.h b/src/Client/Requests/UserLists/UserListListRequest.h new file mode 100644 index 0000000..805142a --- /dev/null +++ b/src/Client/Requests/UserLists/UserListListRequest.h @@ -0,0 +1,43 @@ +/* + * UserListListRequest.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 Lesser 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along + * with this program. If not, see . + */ + +#ifndef MAD_CLIENT_USERLISTS_USERLISTLISTREQUEST_H_ +#define MAD_CLIENT_USERLISTS_USERLISTLISTREQUEST_H_ + +#include + +namespace Mad { +namespace Client { +namespace Requests { +namespace UserLists { + +class UserListListRequest : public Common::Requests::SimpleRequest { + public: + UserListListRequest(Common::Application *application) : SimpleRequest(application, "ListUserLists") {} +}; + +} + +} + +} + +} + +#endif /* MAD_CLIENT_USERLISTS_USERLISTLISTREQUEST_H_ */ -- cgit v1.2.3