2007-12-11 20:43:17 -05:00
|
|
|
/*
|
|
|
|
* libretroshare/src/services chatservice.h
|
|
|
|
*
|
|
|
|
* Services for RetroShare.
|
|
|
|
*
|
|
|
|
* Copyright 2004-2008 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 SERVICE_CHAT_HEADER
|
|
|
|
#define SERVICE_CHAT_HEADER
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <string>
|
2012-01-06 17:17:08 -05:00
|
|
|
#include <vector>
|
2007-12-11 20:43:17 -05:00
|
|
|
|
|
|
|
#include "serialiser/rsmsgitems.h"
|
|
|
|
#include "services/p3service.h"
|
2010-08-31 13:13:52 -04:00
|
|
|
#include "retroshare/rsmsgs.h"
|
2010-04-24 07:27:25 -04:00
|
|
|
|
2011-07-09 14:39:34 -04:00
|
|
|
class p3LinkMgr;
|
2011-09-29 05:20:09 -04:00
|
|
|
class p3HistoryMgr;
|
2011-07-09 14:39:34 -04:00
|
|
|
|
2010-04-24 07:27:25 -04:00
|
|
|
//!The basic Chat service.
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Can be used to send and receive chats, immediate status (using notify), avatars, and custom status
|
|
|
|
* This service uses rsnotify (callbacks librs clients (e.g. rs-gui))
|
|
|
|
* @see NotifyBase
|
|
|
|
*/
|
2010-09-20 20:08:06 -04:00
|
|
|
class p3ChatService: public p3Service, public p3Config, public pqiMonitor
|
2007-12-11 20:43:17 -05:00
|
|
|
{
|
|
|
|
public:
|
2011-09-29 05:20:09 -04:00
|
|
|
p3ChatService(p3LinkMgr *cm, p3HistoryMgr *historyMgr);
|
2009-01-30 14:52:47 -05:00
|
|
|
|
2010-09-20 20:08:06 -04:00
|
|
|
/***** overloaded from p3Service *****/
|
2010-08-31 13:13:52 -04:00
|
|
|
/*!
|
|
|
|
* This retrieves all chat msg items and also (important!)
|
|
|
|
* processes chat-status items that are in service item queue. chat msg item requests are also processed and not returned
|
|
|
|
* (important! also) notifications sent to notify base on receipt avatar, immediate status and custom status
|
|
|
|
* : notifyCustomState, notifyChatStatus, notifyPeerHasNewAvatar
|
|
|
|
* @see NotifyBase
|
|
|
|
*/
|
2009-01-30 14:52:47 -05:00
|
|
|
virtual int tick();
|
|
|
|
virtual int status();
|
|
|
|
|
2010-09-20 20:08:06 -04:00
|
|
|
/*************** pqiMonitor callback ***********************/
|
|
|
|
virtual void statusChange(const std::list<pqipeer> &plist);
|
|
|
|
|
2010-04-24 07:27:25 -04:00
|
|
|
/*!
|
|
|
|
* public chat sent to all peers
|
|
|
|
*/
|
2011-09-29 05:20:09 -04:00
|
|
|
int sendPublicChat(const std::wstring &msg);
|
2010-04-24 07:27:25 -04:00
|
|
|
|
2010-09-20 20:08:06 -04:00
|
|
|
/********* RsMsgs ***********/
|
2010-04-24 07:27:25 -04:00
|
|
|
/*!
|
|
|
|
* chat is sent to specifc peer
|
2010-09-01 13:56:15 -04:00
|
|
|
* @param id peer to send chat msg to
|
2010-04-24 07:27:25 -04:00
|
|
|
*/
|
2011-09-29 05:20:09 -04:00
|
|
|
bool sendPrivateChat(const std::string &id, const std::wstring &msg);
|
2010-04-24 07:27:25 -04:00
|
|
|
|
2012-05-06 18:19:59 -04:00
|
|
|
bool sendLobbyStatusPeerChangedNickname(const ChatLobbyId& lobby_id) ;
|
|
|
|
|
2010-04-24 07:27:25 -04:00
|
|
|
/*!
|
2010-04-27 07:53:46 -04:00
|
|
|
* can be used to send 'immediate' status msgs, these status updates are meant for immediate use by peer (not saved by rs)
|
2010-04-24 07:27:25 -04:00
|
|
|
* e.g currently used to update user when a peer 'is typing' during a chat
|
|
|
|
*/
|
2009-05-05 09:18:53 -04:00
|
|
|
void sendStatusString(const std::string& peer_id,const std::string& status_str) ;
|
2010-04-24 07:27:25 -04:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* send to all peers online
|
|
|
|
*@see sendStatusString()
|
|
|
|
*/
|
2009-09-29 16:37:20 -04:00
|
|
|
void sendGroupChatStatusString(const std::string& status_str) ;
|
2009-10-04 18:27:42 -04:00
|
|
|
|
2010-04-24 07:27:25 -04:00
|
|
|
/*!
|
2010-04-27 07:53:46 -04:00
|
|
|
* this retrieves custom status for a peers, generate a requests to the peer
|
2010-04-24 07:27:25 -04:00
|
|
|
* @param peer_id the id of the peer you want status string for
|
|
|
|
*/
|
2009-10-04 18:27:42 -04:00
|
|
|
std::string getCustomStateString(const std::string& peer_id) ;
|
2010-04-24 07:27:25 -04:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* sets the client's custom status, generates 'status available' item sent to all online peers
|
|
|
|
*/
|
2009-10-04 18:27:42 -04:00
|
|
|
void setOwnCustomStateString(const std::string&) ;
|
2010-04-24 07:27:25 -04:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* @return client's custom string
|
|
|
|
*/
|
2009-10-04 18:27:42 -04:00
|
|
|
std::string getOwnCustomStateString() ;
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2010-04-15 06:47:48 -04:00
|
|
|
/*! gets the peer's avatar in jpeg format, if available. Null otherwise. Also asks the peer to send
|
|
|
|
* its avatar, if not already available. Creates a new unsigned char array. It's the caller's
|
|
|
|
* responsibility to delete this ones used.
|
|
|
|
*/
|
2009-01-30 14:52:47 -05:00
|
|
|
void getAvatarJpegData(const std::string& peer_id,unsigned char *& data,int& size) ;
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2010-04-15 06:47:48 -04:00
|
|
|
/*!
|
|
|
|
* Sets the avatar data and size for client's account
|
|
|
|
* @param data is copied, so should be destroyed by the caller
|
|
|
|
*/
|
2009-01-30 14:52:47 -05:00
|
|
|
void setOwnAvatarJpegData(const unsigned char *data,int size) ;
|
2010-04-15 06:47:48 -04:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* Gets the avatar data for clients account
|
2010-04-27 07:53:46 -04:00
|
|
|
* data is in jpeg format
|
2010-04-15 06:47:48 -04:00
|
|
|
*/
|
2009-01-30 14:52:47 -05:00
|
|
|
void getOwnAvatarJpegData(unsigned char *& data,int& size) ;
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2010-04-24 07:27:25 -04:00
|
|
|
/*!
|
2010-09-20 20:08:06 -04:00
|
|
|
* returns the count of messages in public queue
|
2010-09-01 13:56:15 -04:00
|
|
|
* @param public or private queue
|
2010-04-24 07:27:25 -04:00
|
|
|
*/
|
2010-09-20 20:08:06 -04:00
|
|
|
int getPublicChatQueueCount();
|
2010-09-01 13:56:15 -04:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* This retrieves all public chat msg items
|
|
|
|
*/
|
|
|
|
bool getPublicChatQueue(std::list<ChatInfo> &chats);
|
|
|
|
|
2010-09-20 20:08:06 -04:00
|
|
|
/*!
|
|
|
|
* returns the count of messages in private queue
|
|
|
|
* @param public or private queue
|
|
|
|
*/
|
|
|
|
int getPrivateChatQueueCount(bool incoming);
|
|
|
|
|
2010-09-01 13:56:15 -04:00
|
|
|
/*!
|
|
|
|
* @param id's of available private chat messages
|
|
|
|
*/
|
2010-09-20 20:08:06 -04:00
|
|
|
bool getPrivateChatQueueIds(bool incoming, std::list<std::string> &ids);
|
2010-09-01 13:56:15 -04:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* This retrieves all private chat msg items for peer
|
|
|
|
*/
|
2010-09-20 20:08:06 -04:00
|
|
|
bool getPrivateChatQueue(bool incoming, const std::string &id, std::list<ChatInfo> &chats);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @param clear private chat queue
|
|
|
|
*/
|
|
|
|
bool clearPrivateChatQueue(bool incoming, const std::string &id);
|
2008-01-25 02:49:28 -05:00
|
|
|
|
2011-12-04 17:03:54 -05:00
|
|
|
bool getVirtualPeerId(const ChatLobbyId&, std::string& virtual_peer_id) ;
|
2011-12-04 09:31:48 -05:00
|
|
|
bool isLobbyId(const std::string&, ChatLobbyId&) ;
|
2011-11-23 17:10:37 -05:00
|
|
|
void getChatLobbyList(std::list<ChatLobbyInfo, std::allocator<ChatLobbyInfo> >&) ;
|
2011-11-28 17:36:13 -05:00
|
|
|
bool acceptLobbyInvite(const ChatLobbyId& id) ;
|
|
|
|
void denyLobbyInvite(const ChatLobbyId& id) ;
|
|
|
|
void getPendingChatLobbyInvites(std::list<ChatLobbyInvite>& invites) ;
|
2012-01-27 18:13:28 -05:00
|
|
|
void invitePeerToLobby(const ChatLobbyId&, const std::string& peer_id,bool connexion_challenge = false) ;
|
2011-11-27 16:04:10 -05:00
|
|
|
void unsubscribeChatLobby(const ChatLobbyId& lobby_id) ;
|
2011-12-26 17:43:54 -05:00
|
|
|
bool setNickNameForChatLobby(const ChatLobbyId& lobby_id,const std::string& nick) ;
|
2011-11-27 16:04:10 -05:00
|
|
|
bool getNickNameForChatLobby(const ChatLobbyId& lobby_id,std::string& nick) ;
|
2011-12-26 17:43:54 -05:00
|
|
|
bool setDefaultNickNameForChatLobby(const std::string& nick) ;
|
|
|
|
bool getDefaultNickNameForChatLobby(std::string& nick) ;
|
2012-01-06 17:17:08 -05:00
|
|
|
void sendLobbyStatusString(const ChatLobbyId& id,const std::string& status_string) ;
|
2012-03-16 18:47:49 -04:00
|
|
|
ChatLobbyId createChatLobby(const std::string& lobby_name,const std::string& lobby_topic, const std::list<std::string>& invited_friends,uint32_t privacy_type) ;
|
2012-01-07 14:52:58 -05:00
|
|
|
|
2012-01-06 17:17:08 -05:00
|
|
|
void getListOfNearbyChatLobbies(std::vector<PublicChatLobbyRecord>& public_lobbies) ;
|
2012-01-07 14:52:58 -05:00
|
|
|
bool joinPublicChatLobby(const ChatLobbyId& id) ;
|
2011-11-23 17:10:37 -05:00
|
|
|
|
2011-06-30 16:50:08 -04:00
|
|
|
protected:
|
2009-09-29 16:37:20 -04:00
|
|
|
/************* from p3Config *******************/
|
|
|
|
virtual RsSerialiser *setupSerialiser() ;
|
2010-04-24 07:27:25 -04:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* chat msg items and custom status are saved
|
|
|
|
*/
|
2010-12-18 14:35:07 -05:00
|
|
|
virtual bool saveList(bool& cleanup, std::list<RsItem*>&) ;
|
2010-09-20 20:08:06 -04:00
|
|
|
virtual void saveDone();
|
2010-12-18 14:35:07 -05:00
|
|
|
virtual bool loadList(std::list<RsItem*>& load) ;
|
2009-03-20 16:41:31 -04:00
|
|
|
|
2008-01-25 02:49:28 -05:00
|
|
|
private:
|
2009-03-20 16:41:31 -04:00
|
|
|
RsMutex mChatMtx;
|
|
|
|
|
2009-01-30 14:52:47 -05:00
|
|
|
class AvatarInfo ;
|
2009-10-04 18:27:42 -04:00
|
|
|
class StateStringInfo ;
|
2009-01-30 14:52:47 -05:00
|
|
|
|
2010-08-31 13:13:52 -04:00
|
|
|
// Receive chat queue
|
|
|
|
void receiveChatQueue();
|
|
|
|
|
|
|
|
void initRsChatInfo(RsChatMsgItem *c, ChatInfo &i);
|
|
|
|
|
|
|
|
|
2009-01-30 14:52:47 -05:00
|
|
|
/// Send avatar info to peer in jpeg format.
|
|
|
|
void sendAvatarJpegData(const std::string& peer_id) ;
|
|
|
|
|
2010-04-24 06:33:12 -04:00
|
|
|
/// Send custom state info to peer
|
|
|
|
void sendCustomState(const std::string& peer_id);
|
|
|
|
|
2009-01-30 14:52:47 -05:00
|
|
|
/// Receive the avatar in a chat item, with RS_CHAT_RECEIVE_AVATAR flag.
|
2009-09-29 16:37:20 -04:00
|
|
|
void receiveAvatarJpegData(RsChatAvatarItem *ci) ; // new method
|
2009-10-04 18:27:42 -04:00
|
|
|
void receiveStateString(const std::string& id,const std::string& s) ;
|
2009-01-30 14:52:47 -05:00
|
|
|
|
2012-01-06 17:17:08 -05:00
|
|
|
/// methods for handling various Chat items.
|
|
|
|
bool handleRecvChatMsgItem(RsChatMsgItem *item) ; // returns false if the item should be deleted.
|
|
|
|
void handleRecvChatStatusItem(RsChatStatusItem *item) ;
|
|
|
|
void handleRecvChatAvatarItem(RsChatAvatarItem *item) ;
|
|
|
|
void handleRecvChatLobbyListRequest(RsChatLobbyListRequestItem *item) ;
|
|
|
|
void handleRecvChatLobbyList(RsChatLobbyListItem *item) ;
|
2012-03-16 18:47:49 -04:00
|
|
|
void handleRecvChatLobbyList(RsChatLobbyListItem_deprecated *item) ;
|
2012-01-06 17:17:08 -05:00
|
|
|
void handleRecvChatLobbyEventItem(RsChatLobbyEventItem *item) ;
|
|
|
|
|
2009-01-30 14:52:47 -05:00
|
|
|
/// Sends a request for an avatar to the peer of given id
|
|
|
|
void sendAvatarRequest(const std::string& peer_id) ;
|
|
|
|
|
2010-04-24 06:33:12 -04:00
|
|
|
/// Send a request for custom status string
|
|
|
|
void sendCustomStateRequest(const std::string& peer_id);
|
|
|
|
|
2011-05-04 16:52:45 -04:00
|
|
|
/// called as a proxy to sendItem(). Possibly splits item into multiple items of size lower than the maximum item size.
|
2012-01-06 17:17:08 -05:00
|
|
|
void checkSizeAndSendMessage(RsChatLobbyMsgItem *item) ;
|
|
|
|
void checkSizeAndSendMessage_deprecated(RsChatMsgItem *item) ; // keep for compatibility for a few weeks.
|
2011-05-04 16:52:45 -04:00
|
|
|
|
|
|
|
/// Called when a RsChatMsgItem is received. The item may be collapsed with any waiting partial chat item from the same peer.
|
2012-01-06 17:17:08 -05:00
|
|
|
bool locked_checkAndRebuildPartialMessage(RsChatLobbyMsgItem*) ;
|
|
|
|
bool locked_checkAndRebuildPartialMessage_deprecated(RsChatMsgItem*) ;
|
2011-05-04 16:52:45 -04:00
|
|
|
|
2011-11-25 16:31:52 -05:00
|
|
|
/// receive and handle chat lobby item
|
2011-12-29 09:19:53 -05:00
|
|
|
bool recvLobbyChat(RsChatLobbyMsgItem*,const std::string& src_peer_id) ;
|
2012-01-18 15:47:32 -05:00
|
|
|
bool sendLobbyChat(const std::string &id, const std::wstring&, const ChatLobbyId&) ;
|
2011-11-26 16:23:31 -05:00
|
|
|
void handleRecvLobbyInvite(RsChatLobbyInviteItem*) ;
|
2011-12-04 09:31:48 -05:00
|
|
|
void checkAndRedirectMsgToLobby(RsChatMsgItem*) ;
|
2011-12-26 09:45:45 -05:00
|
|
|
void handleConnectionChallenge(RsChatLobbyConnectChallengeItem *item) ;
|
|
|
|
void sendConnectionChallenge(ChatLobbyId id) ;
|
2011-12-27 08:47:37 -05:00
|
|
|
void handleFriendUnsubscribeLobby(RsChatLobbyUnsubscribeItem*) ;
|
2011-12-26 17:43:54 -05:00
|
|
|
void cleanLobbyCaches() ;
|
2012-01-06 17:17:08 -05:00
|
|
|
bool bounceLobbyObject(RsChatLobbyBouncingObject *obj, const std::string& peer_id) ;
|
|
|
|
|
|
|
|
void sendLobbyStatusItem(const ChatLobbyId&, int type, const std::string& status_string) ;
|
|
|
|
void sendLobbyStatusPeerLiving(const ChatLobbyId& lobby_id) ;
|
2012-05-06 18:19:59 -04:00
|
|
|
|
2012-01-06 17:17:08 -05:00
|
|
|
void sendLobbyStatusNewPeer(const ChatLobbyId& lobby_id) ;
|
2012-01-23 17:49:47 -05:00
|
|
|
void sendLobbyStatusKeepAlive(const ChatLobbyId&) ;
|
2012-01-06 17:17:08 -05:00
|
|
|
|
|
|
|
void locked_initLobbyBouncableObject(const ChatLobbyId& id,RsChatLobbyBouncingObject&) ;
|
2011-12-26 09:45:45 -05:00
|
|
|
|
2011-12-04 09:31:48 -05:00
|
|
|
static std::string makeVirtualPeerId(ChatLobbyId) ;
|
2012-02-06 16:00:09 -05:00
|
|
|
static uint64_t makeConnexionChallengeCode(const std::string& peer_id,ChatLobbyId lobby_id,ChatLobbyMsgId msg_id) ;
|
2011-11-25 16:31:52 -05:00
|
|
|
|
2011-12-26 09:45:45 -05:00
|
|
|
void locked_printDebugInfo() const ;
|
2009-09-29 16:37:20 -04:00
|
|
|
RsChatAvatarItem *makeOwnAvatarItem() ;
|
2009-10-04 18:27:42 -04:00
|
|
|
RsChatStatusItem *makeOwnCustomStateStringItem() ;
|
2009-03-20 16:41:31 -04:00
|
|
|
|
2011-07-09 14:39:34 -04:00
|
|
|
p3LinkMgr *mLinkMgr;
|
2011-09-29 05:20:09 -04:00
|
|
|
p3HistoryMgr *mHistoryMgr;
|
2009-01-30 14:52:47 -05:00
|
|
|
|
2010-09-01 13:56:15 -04:00
|
|
|
std::list<RsChatMsgItem *> publicList;
|
2010-09-20 20:08:06 -04:00
|
|
|
std::list<RsChatMsgItem *> privateIncomingList;
|
|
|
|
std::list<RsChatMsgItem *> privateOutgoingList;
|
2010-08-31 13:13:52 -04:00
|
|
|
|
2009-01-30 14:52:47 -05:00
|
|
|
AvatarInfo *_own_avatar ;
|
|
|
|
std::map<std::string,AvatarInfo *> _avatars ;
|
2012-01-06 17:17:08 -05:00
|
|
|
std::map<std::string,RsChatMsgItem *> _pendingPartialMessages ;
|
|
|
|
std::map<ChatLobbyMsgId,std::vector<RsChatLobbyMsgItem*> > _pendingPartialLobbyMessages ; // should be used for all chat msgs after version updgrade
|
2009-09-29 16:37:20 -04:00
|
|
|
std::string _custom_status_string ;
|
2009-10-04 18:27:42 -04:00
|
|
|
std::map<std::string,StateStringInfo> _state_strings ;
|
2011-11-25 16:31:52 -05:00
|
|
|
|
|
|
|
class ChatLobbyEntry: public ChatLobbyInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::map<ChatLobbyMsgId,time_t> msg_cache ;
|
2011-12-04 09:31:48 -05:00
|
|
|
std::string virtual_peer_id ;
|
2011-12-26 09:45:45 -05:00
|
|
|
int connexion_challenge_count ;
|
2012-01-06 17:17:08 -05:00
|
|
|
time_t last_connexion_challenge_time ;
|
2012-01-23 17:49:47 -05:00
|
|
|
time_t last_keep_alive_packet_time ;
|
2011-11-25 16:31:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
std::map<ChatLobbyId,ChatLobbyEntry> _chat_lobbys ;
|
2011-11-26 16:23:31 -05:00
|
|
|
std::map<ChatLobbyId,ChatLobbyInvite> _lobby_invites_queue ;
|
2012-01-06 17:17:08 -05:00
|
|
|
std::map<ChatLobbyId,PublicChatLobbyRecord> _public_lobbies ;
|
2011-12-04 09:31:48 -05:00
|
|
|
std::map<std::string,ChatLobbyId> _lobby_ids ;
|
2011-12-26 09:45:45 -05:00
|
|
|
std::string _default_nick_name ;
|
|
|
|
time_t last_lobby_challenge_time ; // prevents bruteforce attack
|
2012-01-07 08:33:30 -05:00
|
|
|
time_t last_public_lobby_info_request_time ; // allows to ask for updates
|
2012-01-15 08:00:57 -05:00
|
|
|
bool _should_reset_lobby_counts ;
|
2007-12-11 20:43:17 -05:00
|
|
|
};
|
|
|
|
|
2011-06-30 16:50:08 -04:00
|
|
|
class p3ChatService::StateStringInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
StateStringInfo()
|
|
|
|
{
|
|
|
|
_custom_status_string = "" ; // the custom status string of the peer
|
|
|
|
_peer_is_new = false ; // true when the peer has a new avatar
|
|
|
|
_own_is_new = false ; // true when I myself a new avatar to send to this peer.
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string _custom_status_string ;
|
|
|
|
int _peer_is_new ; // true when the peer has a new avatar
|
|
|
|
int _own_is_new ; // true when I myself a new avatar to send to this peer.
|
|
|
|
};
|
|
|
|
|
2007-12-11 20:43:17 -05:00
|
|
|
#endif // SERVICE_CHAT_HEADER
|
2009-01-30 14:52:47 -05:00
|
|
|
|