mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
9470e5562a
Added timestamp check for group update in nxs decided to add control variable to allow meta changes in updates rather than none git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs_finale@6803 b45a01b8-16f6-495d-af2f-9b41ad6348cc
121 lines
3.6 KiB
C++
121 lines
3.6 KiB
C++
/*
|
|
* libretroshare/src/services: p3gxsforums.h
|
|
*
|
|
* GxsForum 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_GXSFORUMS_SERVICE_HEADER
|
|
#define P3_GXSFORUMS_SERVICE_HEADER
|
|
|
|
|
|
#include "retroshare/rsgxsforums.h"
|
|
#include "gxs/rsgenexchange.h"
|
|
|
|
#include "util/rstickevent.h"
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
/*
|
|
*
|
|
*/
|
|
|
|
class p3GxsForums: public RsGenExchange, public RsGxsForums,
|
|
public RsTickEvent /* only needed for testing - remove after */
|
|
{
|
|
public:
|
|
|
|
p3GxsForums(RsGeneralDataService* gds, RsNetworkExchangeService* nes, RsGixs* gixs);
|
|
|
|
virtual void service_tick();
|
|
|
|
protected:
|
|
|
|
|
|
virtual void notifyChanges(std::vector<RsGxsNotify*>& changes);
|
|
|
|
// Overloaded from RsTickEvent.
|
|
virtual void handle_event(uint32_t event_type, const std::string &elabel);
|
|
|
|
public:
|
|
|
|
virtual bool getGroupData(const uint32_t &token, std::vector<RsGxsForumGroup> &groups);
|
|
virtual bool getMsgData(const uint32_t &token, std::vector<RsGxsForumMsg> &msgs);
|
|
virtual bool getRelatedMessages(const uint32_t &token, std::vector<RsGxsForumMsg> &msgs);
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
virtual void setMessageReadStatus(uint32_t& token, const RsGxsGrpMsgIdPair& msgId, bool read);
|
|
|
|
//virtual bool setMessageStatus(const std::string &msgId, const uint32_t status, const uint32_t statusMask);
|
|
//virtual bool setGroupSubscribeFlags(const std::string &groupId, uint32_t subscribeFlags, uint32_t subscribeMask);
|
|
|
|
//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, RsGxsForumGroup &group);
|
|
virtual bool createMsg(uint32_t &token, RsGxsForumMsg &msg);
|
|
|
|
/*!
|
|
* To update forum group with new information
|
|
* @param token the token used to check completion status of update
|
|
* @param group group to be updated, groupId element must be set or will be rejected
|
|
* @return false groupId not set, true if set and accepted (still check token for completion)
|
|
*/
|
|
virtual bool updateGroup(uint32_t &token, RsGxsGroupUpdateMeta& meta, RsGxsForumGroup &group);
|
|
|
|
|
|
private:
|
|
|
|
static uint32_t forumsAuthenPolicy();
|
|
|
|
virtual bool generateDummyData();
|
|
|
|
std::string genRandomId();
|
|
|
|
void dummy_tick();
|
|
|
|
bool generateMessage(uint32_t &token, const RsGxsGroupId &grpId,
|
|
const RsGxsMessageId &parentId, const RsGxsMessageId &threadId);
|
|
bool generateGroup(uint32_t &token, std::string groupName);
|
|
|
|
class ForumDummyRef
|
|
{
|
|
public:
|
|
ForumDummyRef() { return; }
|
|
ForumDummyRef(const RsGxsGroupId &grpId, const RsGxsMessageId &threadId, const RsGxsMessageId &msgId)
|
|
:mGroupId(grpId), mThreadId(threadId), mMsgId(msgId) { return; }
|
|
|
|
RsGxsGroupId mGroupId;
|
|
RsGxsMessageId mThreadId;
|
|
RsGxsMessageId mMsgId;
|
|
};
|
|
|
|
uint32_t mGenToken;
|
|
bool mGenActive;
|
|
int mGenCount;
|
|
std::vector<ForumDummyRef> mGenRefs;
|
|
RsGxsMessageId mGenThreadId;
|
|
|
|
};
|
|
|
|
#endif
|