mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-05 13:19:32 -04:00

groupid assigned to group before service_CreateGroup now (to help with identity using pgp hashes) fixed up dummy group creation for photo service and ui completed basic functions of GxsGroupDialog git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5809 b45a01b8-16f6-495d-af2f-9b41ad6348cc
147 lines
4.1 KiB
C++
147 lines
4.1 KiB
C++
#ifndef RSPOSTED_H
|
|
#define RSPOSTED_H
|
|
|
|
|
|
/*
|
|
* libretroshare/src/retroshare: rsposted.h
|
|
*
|
|
* RetroShare C++ Interface.
|
|
*
|
|
* Copyright 2008-2012 by Robert Fernie, Christopher Evi-Parker
|
|
*
|
|
* 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".
|
|
*
|
|
*/
|
|
|
|
#include <inttypes.h>
|
|
#include <string>
|
|
#include <list>
|
|
#include "gxs/rstokenservice.h"
|
|
#include "gxs/rsgxsifaceimpl.h"
|
|
|
|
class RsPosted;
|
|
extern RsPosted *rsPosted;
|
|
|
|
/* The Main Interface Class - for information about your Peers */
|
|
|
|
class RsPostedGroup
|
|
{
|
|
public:
|
|
RsGroupMetaData mMeta;
|
|
std::string mDescription;
|
|
RsPostedGroup() { return; }
|
|
};
|
|
|
|
//#define RSPOSTED_MSGTYPE_POST 0x0001
|
|
//#define RSPOSTED_MSGTYPE_VOTE 0x0002
|
|
//#define RSPOSTED_MSGTYPE_COMMENT 0x0004
|
|
|
|
#define RSPOSTED_PERIOD_YEAR 1
|
|
#define RSPOSTED_PERIOD_MONTH 2
|
|
#define RSPOSTED_PERIOD_WEEK 3
|
|
#define RSPOSTED_PERIOD_DAY 4
|
|
#define RSPOSTED_PERIOD_HOUR 5
|
|
|
|
#define RSPOSTED_VIEWMODE_LATEST 1
|
|
#define RSPOSTED_VIEWMODE_TOP 2
|
|
#define RSPOSTED_VIEWMODE_HOT 3
|
|
#define RSPOSTED_VIEWMODE_COMMENTS 4
|
|
|
|
class RsPostedPost;
|
|
class RsPostedComment;
|
|
class RsPostedVote;
|
|
|
|
typedef std::map<RsGxsGroupId, std::vector<RsPostedPost> > PostedPostResult;
|
|
typedef std::map<RsGxsGroupId, std::vector<RsPostedComment> > PostedCommentResult;
|
|
typedef std::map<RsGxsGroupId, std::vector<RsPostedVote> > PostedVoteResult;
|
|
|
|
std::ostream &operator<<(std::ostream &out, const RsPostedGroup &group);
|
|
std::ostream &operator<<(std::ostream &out, const RsPostedPost &post);
|
|
std::ostream &operator<<(std::ostream &out, const RsPostedVote &vote);
|
|
std::ostream &operator<<(std::ostream &out, const RsPostedComment &comment);
|
|
|
|
|
|
class RsPosted : public RsGxsIfaceImpl
|
|
{
|
|
public:
|
|
|
|
static const uint32_t FLAG_MSGTYPE_POST;
|
|
static const uint32_t FLAG_MSGTYPE_VOTE;
|
|
static const uint32_t FLAG_MSGTYPE_COMMENT;
|
|
|
|
|
|
RsPosted(RsGenExchange* gxs) : RsGxsIfaceImpl(gxs) { return; }
|
|
virtual ~RsPosted() { return; }
|
|
|
|
/* Specific Service Data */
|
|
|
|
virtual bool getGroup(const uint32_t &token, std::vector<RsPostedGroup> &group) = 0;
|
|
virtual bool getPost(const uint32_t &token, PostedPostResult &post) = 0;
|
|
virtual bool getComment(const uint32_t &token, PostedCommentResult &comment) = 0;
|
|
|
|
virtual bool submitGroup(uint32_t &token, RsPostedGroup &group) = 0;
|
|
virtual bool submitPost(uint32_t &token, RsPostedPost &post) = 0;
|
|
virtual bool submitVote(uint32_t &token, RsPostedVote &vote) = 0;
|
|
virtual bool submitComment(uint32_t &token, RsPostedComment &comment) = 0;
|
|
|
|
// Special Ranking Request.
|
|
virtual bool requestRanking(uint32_t &token, RsGxsGroupId groupId) = 0;
|
|
|
|
};
|
|
|
|
class RsPostedPost
|
|
{
|
|
public:
|
|
RsPostedPost()
|
|
{
|
|
mMeta.mMsgFlags = RsPosted::FLAG_MSGTYPE_POST;
|
|
return;
|
|
}
|
|
|
|
RsMsgMetaData mMeta;
|
|
std::string mLink;
|
|
std::string mNotes;
|
|
};
|
|
|
|
|
|
class RsPostedVote
|
|
{
|
|
public:
|
|
RsPostedVote()
|
|
{
|
|
mMeta.mMsgFlags = RsPosted::FLAG_MSGTYPE_VOTE;
|
|
return;
|
|
}
|
|
|
|
RsMsgMetaData mMeta;
|
|
};
|
|
|
|
|
|
class RsPostedComment
|
|
{
|
|
public:
|
|
RsPostedComment()
|
|
{
|
|
mMeta.mMsgFlags = RsPosted::FLAG_MSGTYPE_COMMENT;
|
|
return;
|
|
}
|
|
|
|
std::string mComment;
|
|
RsMsgMetaData mMeta;
|
|
};
|
|
|
|
#endif // RSPOSTED_H
|