2008-04-20 07:11:03 -04:00
|
|
|
#ifndef RSQBLOG_H_
|
|
|
|
#define RSQBLOG_H_
|
|
|
|
|
|
|
|
/*
|
2008-04-22 04:19:02 -04:00
|
|
|
* libretroshare/src/rsiface: rsQblog.h
|
2008-04-20 07:11:03 -04:00
|
|
|
*
|
|
|
|
* RetroShare C++ Interface.
|
|
|
|
*
|
2008-06-04 06:59:24 -04:00
|
|
|
* Copyright 2007-2008 by Chris Evi-Parker, Robert Fernie.
|
2008-04-20 07:11:03 -04:00
|
|
|
*
|
|
|
|
* 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 <iostream>
|
2008-05-08 20:30:29 -04:00
|
|
|
#include <string>
|
2008-04-20 07:11:03 -04:00
|
|
|
#include <list>
|
|
|
|
#include <map>
|
2008-06-08 14:32:40 -04:00
|
|
|
|
|
|
|
#include "rsiface/rstypes.h"
|
2008-04-20 07:11:03 -04:00
|
|
|
|
|
|
|
|
2008-05-11 15:36:02 -04:00
|
|
|
/* delcare interafce for everyone o use */
|
|
|
|
class RsQblog;
|
|
|
|
extern RsQblog *rsQblog;
|
2008-04-22 04:19:02 -04:00
|
|
|
|
|
|
|
/*! allows gui to interface with the rsQblogs service */
|
|
|
|
class RsQblog
|
2008-04-20 07:11:03 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
2008-05-24 11:10:59 -04:00
|
|
|
RsQblog() { return; }
|
|
|
|
virtual ~RsQblog() { return; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* allows user to set his status
|
|
|
|
* @param status The status of the user
|
|
|
|
*/
|
|
|
|
virtual bool setStatus(const std::string &status) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns reference to map of usrs and their status
|
|
|
|
* @param usrStatus returns map to usr and their status
|
|
|
|
*/
|
|
|
|
virtual bool getStatus(std::map<std::string, std::string> &usrStatus) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* choose whether to filter or not
|
|
|
|
* @param filterSwitch
|
|
|
|
*/
|
|
|
|
virtual bool setFilterSwitch(bool &filterSwitch) = 0;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* retrieve usrs filterSwitch status
|
|
|
|
*/
|
|
|
|
virtual bool getFilterSwitch(void) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* add user id to filter list
|
|
|
|
* @param usr id to add to filter list
|
|
|
|
*/
|
|
|
|
virtual bool addToFilter(std::string &usrId) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* remove friend from filter list
|
|
|
|
* @param id The user's frined's id
|
|
|
|
*/
|
|
|
|
virtual bool removeFiltFriend(std::string &usrId) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get users fav song
|
|
|
|
* @param usrId the usr whose fav song you want
|
|
|
|
* @param favSong puts ref for fav song here
|
|
|
|
*/
|
|
|
|
virtual bool getProfile(std::map<std::string, std::string> &profile) = 0;
|
2008-06-04 06:59:24 -04:00
|
|
|
|
2008-05-24 11:10:59 -04:00
|
|
|
/**
|
|
|
|
* for now just fav song, TODO: must find way to link to rs profile
|
|
|
|
*/
|
|
|
|
virtual bool setProfile(const std::string &favSong) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* send blog info, will send to a data structure for transmission
|
|
|
|
* @param msg The msg the usr wants to send
|
|
|
|
*/
|
|
|
|
virtual bool sendBlog(const std::string &msg) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* retrieve blog of a usr
|
|
|
|
* @param blogs contains the blog msgs of usr along with time posted for sorting
|
|
|
|
*/
|
|
|
|
virtual bool getBlogs(std::map< std::string, std::multimap<long int, std:: string> > &blogs) = 0;
|
2008-06-08 14:32:40 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stuff DrBob Added for Profile View!
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get users Latest Blog Post.
|
|
|
|
* @param id the usr whose idetails you want to get.
|
|
|
|
* @param ts Timestamp of the Blog Post.
|
|
|
|
* @param post the actual Blog Post.
|
|
|
|
*/
|
|
|
|
|
|
|
|
virtual bool getPeerLatestBlog(std::string id, uint32_t &ts, std::wstring &post) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get users Profile.
|
|
|
|
* @param id the user id
|
|
|
|
* @param entries set of profile information.
|
|
|
|
*/
|
|
|
|
virtual bool getPeerProfile(std::string id, std::list< std::pair<std::wstring, std::wstring> > &entries) = 0;
|
|
|
|
/**
|
|
|
|
* get users fav files
|
|
|
|
* @param id the user whose info you want.
|
|
|
|
* @param favs list of Files
|
|
|
|
*/
|
|
|
|
virtual bool getPeerFavourites(std::string id, std::list<FileInfo> &favs) = 0;
|
|
|
|
|
|
|
|
|
2008-04-20 07:11:03 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /*RSQBLOG_H_*/
|