mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
d4bf742268
* Filled in p3wiki and rswiki * tweaked VEG files to prevent clashes. * added serialiser header. Still to do: * complete design of Wiki Links, and the like. * Finish serialiser git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5692 b45a01b8-16f6-495d-af2f-9b41ad6348cc
130 lines
4.3 KiB
C++
130 lines
4.3 KiB
C++
/*
|
|
* libretroshare/src/services: p3wikiservice.h
|
|
*
|
|
* Wiki interface for RetroShare.
|
|
*
|
|
* Copyright 2012-2012 by Robert Fernie.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA.
|
|
*
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
*
|
|
*/
|
|
|
|
#ifndef P3_WIKI_SERVICE_VEG_HEADER
|
|
#define P3_WIKI_SERVICE_VEG_HEADER
|
|
|
|
#include "services/p3gxsserviceVEG.h"
|
|
#include "retroshare/rswikiVEG.h"
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
/*
|
|
* Wiki Service
|
|
*
|
|
* This is an example service for the new cache system.
|
|
* For the moment, it will only hold data passed to it from the GUI.
|
|
* and spew that back when asked....
|
|
*
|
|
* We are doing it like this - so we can check the required interface functionality.
|
|
*
|
|
* Expect it won't take long before it'll be properly linked into the backend!
|
|
*
|
|
* This will be transformed into a Plugin Service, once the basics have been worked out.
|
|
*
|
|
*/
|
|
|
|
class WikiDataProxy: public GxsDataProxyVEG
|
|
{
|
|
public:
|
|
|
|
bool getGroup(const std::string &id, RsWikiGroup &group);
|
|
bool getPage(const std::string &id, RsWikiPage &wiki);
|
|
|
|
bool addGroup(const RsWikiGroup &group);
|
|
bool addPage(const RsWikiPage &page);
|
|
|
|
/* These Functions must be overloaded to complete the service */
|
|
virtual bool convertGroupToMetaData(void *groupData, RsGroupMetaData &meta);
|
|
virtual bool convertMsgToMetaData(void *msgData, RsMsgMetaData &meta);
|
|
};
|
|
|
|
|
|
class p3WikiServiceVEG: public p3GxsDataServiceVEG, public RsWikiVEG
|
|
{
|
|
public:
|
|
|
|
p3WikiServiceVEG(uint16_t type);
|
|
|
|
virtual int tick();
|
|
|
|
public:
|
|
|
|
|
|
virtual bool updated();
|
|
|
|
/* Data Requests */
|
|
virtual bool requestGroupInfo( uint32_t &token, uint32_t ansType, const RsTokReqOptionsVEG &opts, const std::list<std::string> &groupIds);
|
|
virtual bool requestMsgInfo( uint32_t &token, uint32_t ansType, const RsTokReqOptionsVEG &opts, const std::list<std::string> &groupIds);
|
|
virtual bool requestMsgRelatedInfo(uint32_t &token, uint32_t ansType, const RsTokReqOptionsVEG &opts, const std::list<std::string> &msgIds);
|
|
|
|
/* Generic Lists */
|
|
virtual bool getGroupList( const uint32_t &token, std::list<std::string> &groupIds);
|
|
virtual bool getMsgList( const uint32_t &token, std::list<std::string> &msgIds);
|
|
|
|
/* Generic Summary */
|
|
virtual bool getGroupSummary( const uint32_t &token, std::list<RsGroupMetaData> &groupInfo);
|
|
virtual bool getMsgSummary( const uint32_t &token, std::list<RsMsgMetaData> &msgInfo);
|
|
|
|
/* Actual Data -> specific to Interface */
|
|
/* Specific Service Data */
|
|
virtual bool getGroupData(const uint32_t &token, RsWikiGroup &group);
|
|
virtual bool getMsgData(const uint32_t &token, RsWikiPage &page);
|
|
|
|
/* Poll */
|
|
virtual uint32_t requestStatus(const uint32_t token);
|
|
|
|
/* Cancel Request */
|
|
virtual bool cancelRequest(const uint32_t &token);
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
virtual bool setMessageStatus(const std::string &msgId, const uint32_t status, const uint32_t statusMask);
|
|
virtual bool setGroupStatus(const std::string &groupId, const uint32_t status, const uint32_t statusMask);
|
|
virtual bool setGroupSubscribeFlags(const std::string &groupId, uint32_t subscribeFlags, uint32_t subscribeMask);
|
|
virtual bool setMessageServiceString(const std::string &msgId, const std::string &str);
|
|
virtual bool setGroupServiceString(const std::string &grpId, const std::string &str);
|
|
|
|
virtual bool groupRestoreKeys(const std::string &groupId);
|
|
virtual bool groupShareKeys(const std::string &groupId, std::list<std::string>& peers);
|
|
|
|
virtual bool createGroup(uint32_t &token, RsWikiGroup &group, bool isNew);
|
|
virtual bool createPage(uint32_t &token, RsWikiPage &page, bool isNew);
|
|
|
|
private:
|
|
|
|
std::string genRandomId();
|
|
|
|
WikiDataProxy *mWikiProxy;
|
|
|
|
RsMutex mWikiMtx;
|
|
|
|
bool mUpdated;
|
|
|
|
|
|
};
|
|
|
|
#endif
|