2008-02-04 12:55:13 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* "$Id: p3face-msgs.cc,v 1.7 2007-05-05 16:10:06 rmf24 Exp $"
|
|
|
|
*
|
|
|
|
* RetroShare C++ Interface.
|
|
|
|
*
|
|
|
|
* Copyright 2004-2006 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".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
2008-07-10 12:29:18 -04:00
|
|
|
#include "util/rsdir.h"
|
|
|
|
#include "util/rsdebug.h"
|
2008-02-04 12:55:13 -05:00
|
|
|
const int p3facemsgzone = 11453;
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2010-08-06 05:40:23 -04:00
|
|
|
#include "retroshare/rstypes.h"
|
2008-02-04 12:55:13 -05:00
|
|
|
#include "rsserver/p3msgs.h"
|
|
|
|
|
2008-06-24 00:22:42 -04:00
|
|
|
#include "services/p3msgservice.h"
|
|
|
|
#include "services/p3chatservice.h"
|
|
|
|
|
2010-01-13 16:22:52 -05:00
|
|
|
#include "pqi/authgpg.h"
|
2010-01-13 15:56:55 -05:00
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
/* external reference point */
|
|
|
|
RsMsgs *rsMsgs = NULL;
|
|
|
|
|
|
|
|
/****************************************/
|
|
|
|
/****************************************/
|
|
|
|
|
2011-09-29 05:20:09 -04:00
|
|
|
std::ostream &operator<<(std::ostream &out, const ChatInfo &info)
|
|
|
|
{
|
|
|
|
out << "ChatInfo: rsid: " << info.rsid << std::endl;
|
|
|
|
out << "chatflags: " << info.chatflags << std::endl;
|
|
|
|
out << "sendTime: " << info.sendTime << std::endl;
|
|
|
|
out << "recvTime: " << info.recvTime << std::endl;
|
|
|
|
std::string message;
|
|
|
|
message.assign(info.msg.begin(), info.msg.end());
|
|
|
|
out << "msg: " << message;
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const ChatInfo& info1, const ChatInfo& info2)
|
|
|
|
{
|
|
|
|
return info1.rsid == info2.rsid &&
|
|
|
|
info1.chatflags == info2.chatflags &&
|
|
|
|
info1.sendTime == info2.sendTime &&
|
|
|
|
info1.recvTime == info2.recvTime &&
|
|
|
|
info1.msg == info2.msg;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
bool p3Msgs::getMessageSummaries(std::list<MsgInfoSummary> &msgList)
|
|
|
|
{
|
|
|
|
return mMsgSrv->getMessageSummaries(msgList);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-11-02 17:11:11 -04:00
|
|
|
bool p3Msgs::getMessage(const std::string &mid, MessageInfo &msg)
|
2008-02-04 12:55:13 -05:00
|
|
|
{
|
|
|
|
return mMsgSrv->getMessage(mid, msg);
|
|
|
|
}
|
|
|
|
|
2010-05-28 10:42:54 -04:00
|
|
|
void p3Msgs::getMessageCount(unsigned int *pnInbox, unsigned int *pnInboxNew, unsigned int *pnOutbox, unsigned int *pnDraftbox, unsigned int *pnSentbox, unsigned int *pnTrashbox)
|
2010-05-13 15:20:40 -04:00
|
|
|
{
|
2010-05-28 10:42:54 -04:00
|
|
|
mMsgSrv->getMessageCount(pnInbox, pnInboxNew, pnOutbox, pnDraftbox, pnSentbox, pnTrashbox);
|
2010-05-13 15:20:40 -04:00
|
|
|
}
|
2008-02-04 12:55:13 -05:00
|
|
|
|
|
|
|
/****************************************/
|
|
|
|
/****************************************/
|
|
|
|
/* Message Items */
|
|
|
|
bool p3Msgs::MessageSend(MessageInfo &info)
|
|
|
|
{
|
|
|
|
return mMsgSrv->MessageSend(info);
|
|
|
|
}
|
|
|
|
|
2012-05-01 05:18:55 -04:00
|
|
|
bool p3Msgs::SystemMessage(const std::wstring &title, const std::wstring &message, uint32_t systemFlag)
|
|
|
|
{
|
|
|
|
return mMsgSrv->SystemMessage(title, message, systemFlag);
|
|
|
|
}
|
|
|
|
|
2010-11-02 17:11:11 -04:00
|
|
|
bool p3Msgs::MessageToDraft(MessageInfo &info, const std::string &msgParentId)
|
2010-05-25 05:32:14 -04:00
|
|
|
{
|
2010-11-02 17:11:11 -04:00
|
|
|
return mMsgSrv->MessageToDraft(info, msgParentId);
|
2010-05-25 05:32:14 -04:00
|
|
|
}
|
|
|
|
|
2010-11-02 17:11:11 -04:00
|
|
|
bool p3Msgs::MessageToTrash(const std::string &mid, bool bTrash)
|
2010-05-28 10:42:54 -04:00
|
|
|
{
|
2010-11-02 17:11:11 -04:00
|
|
|
return mMsgSrv->MessageToTrash(mid, bTrash);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool p3Msgs::getMsgParentId(const std::string &msgId, std::string &msgParentId)
|
|
|
|
{
|
|
|
|
return mMsgSrv->getMsgParentId(msgId, msgParentId);
|
2010-05-28 10:42:54 -04:00
|
|
|
}
|
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
/****************************************/
|
|
|
|
/****************************************/
|
2010-11-02 17:11:11 -04:00
|
|
|
bool p3Msgs::MessageDelete(const std::string &mid)
|
2008-02-04 12:55:13 -05:00
|
|
|
{
|
2008-07-10 12:29:18 -04:00
|
|
|
//std::cerr << "p3Msgs::MessageDelete() ";
|
|
|
|
//std::cerr << "mid: " << mid << std::endl;
|
2008-02-04 12:55:13 -05:00
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
return mMsgSrv -> removeMsgId(mid);
|
2008-02-04 12:55:13 -05:00
|
|
|
}
|
|
|
|
|
2011-05-23 19:45:31 -04:00
|
|
|
bool p3Msgs::MessageRead(const std::string &mid, bool unreadByUser)
|
2008-02-04 12:55:13 -05:00
|
|
|
{
|
2008-07-10 12:29:18 -04:00
|
|
|
//std::cerr << "p3Msgs::MessageRead() ";
|
|
|
|
//std::cerr << "mid: " << mid << std::endl;
|
2008-02-04 12:55:13 -05:00
|
|
|
|
2011-05-23 19:45:31 -04:00
|
|
|
return mMsgSrv -> markMsgIdRead(mid, unreadByUser);
|
2010-08-22 18:12:26 -04:00
|
|
|
}
|
|
|
|
|
2010-11-02 17:11:11 -04:00
|
|
|
bool p3Msgs::MessageReplied(const std::string &mid, bool replied)
|
|
|
|
{
|
|
|
|
return mMsgSrv->setMsgFlag(mid, replied ? RS_MSG_FLAGS_REPLIED : 0, RS_MSG_FLAGS_REPLIED);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool p3Msgs::MessageForwarded(const std::string &mid, bool forwarded)
|
|
|
|
{
|
|
|
|
return mMsgSrv->setMsgFlag(mid, forwarded ? RS_MSG_FLAGS_FORWARDED : 0, RS_MSG_FLAGS_FORWARDED);
|
|
|
|
}
|
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
bool p3Msgs::getMessageTagTypes(MsgTagType& tags)
|
|
|
|
{
|
|
|
|
return mMsgSrv->getMessageTagTypes(tags);
|
|
|
|
}
|
2008-02-04 12:55:13 -05:00
|
|
|
|
2011-05-23 19:45:31 -04:00
|
|
|
bool p3Msgs::MessageStar(const std::string &mid, bool star)
|
|
|
|
|
|
|
|
{
|
|
|
|
return mMsgSrv->setMsgFlag(mid, star ? RS_MSG_FLAGS_STAR : 0, RS_MSG_FLAGS_STAR);
|
|
|
|
}
|
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
bool p3Msgs::setMessageTagType(uint32_t tagId, std::string& text, uint32_t rgb_color)
|
|
|
|
{
|
|
|
|
return mMsgSrv->setMessageTagType(tagId, text, rgb_color);
|
2008-02-04 12:55:13 -05:00
|
|
|
}
|
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
bool p3Msgs::removeMessageTagType(uint32_t tagId)
|
2010-08-19 17:47:26 -04:00
|
|
|
{
|
2010-08-22 18:12:26 -04:00
|
|
|
return mMsgSrv->removeMessageTagType(tagId);
|
2010-08-19 17:47:26 -04:00
|
|
|
}
|
|
|
|
|
2010-11-02 17:11:11 -04:00
|
|
|
bool p3Msgs::getMessageTag(const std::string &msgId, MsgTagInfo& info)
|
2010-08-19 17:47:26 -04:00
|
|
|
{
|
2010-08-22 18:12:26 -04:00
|
|
|
return mMsgSrv->getMessageTag(msgId, info);
|
2010-08-19 17:47:26 -04:00
|
|
|
}
|
|
|
|
|
2010-11-02 17:11:11 -04:00
|
|
|
bool p3Msgs::setMessageTag(const std::string &msgId, uint32_t tagId, bool set)
|
2010-08-19 17:47:26 -04:00
|
|
|
{
|
2010-08-22 18:12:26 -04:00
|
|
|
return mMsgSrv->setMessageTag(msgId, tagId, set);
|
2010-08-19 17:47:26 -04:00
|
|
|
}
|
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
bool p3Msgs::resetMessageStandardTagTypes(MsgTagType& tags)
|
2010-08-19 17:47:26 -04:00
|
|
|
{
|
2010-08-22 18:12:26 -04:00
|
|
|
return mMsgSrv->resetMessageStandardTagTypes(tags);
|
2010-08-19 17:47:26 -04:00
|
|
|
}
|
|
|
|
|
2008-02-04 12:55:13 -05:00
|
|
|
/****************************************/
|
|
|
|
/****************************************/
|
2011-09-29 05:20:09 -04:00
|
|
|
bool p3Msgs::sendPublicChat(const std::wstring& msg)
|
2008-02-04 12:55:13 -05:00
|
|
|
{
|
|
|
|
/* send a message to all for now */
|
2010-09-01 13:56:15 -04:00
|
|
|
return mChatSrv -> sendPublicChat(msg);
|
|
|
|
}
|
|
|
|
|
2011-09-29 05:20:09 -04:00
|
|
|
bool p3Msgs::sendPrivateChat(const std::string& id, const std::wstring& msg)
|
2010-09-01 13:56:15 -04:00
|
|
|
{
|
|
|
|
/* send a message to peer */
|
|
|
|
return mChatSrv -> sendPrivateChat(id, msg);
|
2008-02-04 12:55:13 -05:00
|
|
|
}
|
|
|
|
|
2009-09-29 16:37:20 -04:00
|
|
|
void p3Msgs::sendGroupChatStatusString(const std::string& status_string)
|
|
|
|
{
|
|
|
|
mChatSrv->sendGroupChatStatusString(status_string);
|
|
|
|
}
|
2011-09-29 05:20:09 -04:00
|
|
|
|
|
|
|
void p3Msgs::sendStatusString(const std::string& peer_id, const std::string& status_string)
|
2009-05-05 09:18:53 -04:00
|
|
|
{
|
2011-09-29 05:20:09 -04:00
|
|
|
mChatSrv->sendStatusString(peer_id, status_string);
|
2009-05-05 09:18:53 -04:00
|
|
|
}
|
|
|
|
|
2010-09-20 20:08:06 -04:00
|
|
|
int p3Msgs::getPublicChatQueueCount()
|
2010-09-01 13:56:15 -04:00
|
|
|
{
|
2010-09-20 20:08:06 -04:00
|
|
|
return mChatSrv->getPublicChatQueueCount();
|
2010-09-01 13:56:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool p3Msgs::getPublicChatQueue(std::list<ChatInfo> &chats)
|
|
|
|
{
|
|
|
|
return mChatSrv->getPublicChatQueue(chats);
|
|
|
|
}
|
|
|
|
|
2010-09-20 20:08:06 -04:00
|
|
|
int p3Msgs::getPrivateChatQueueCount(bool incoming)
|
2010-09-01 13:56:15 -04:00
|
|
|
{
|
2010-09-20 20:08:06 -04:00
|
|
|
return mChatSrv->getPrivateChatQueueCount(incoming);
|
2010-09-01 13:56:15 -04:00
|
|
|
}
|
|
|
|
|
2010-09-20 20:08:06 -04:00
|
|
|
bool p3Msgs::getPrivateChatQueueIds(bool incoming, std::list<std::string> &ids)
|
2008-02-04 12:55:13 -05:00
|
|
|
{
|
2010-09-20 20:08:06 -04:00
|
|
|
return mChatSrv->getPrivateChatQueueIds(incoming, ids);
|
|
|
|
}
|
|
|
|
|
2011-09-29 05:20:09 -04:00
|
|
|
bool p3Msgs::getPrivateChatQueue(bool incoming, const std::string& id, std::list<ChatInfo> &chats)
|
2010-09-20 20:08:06 -04:00
|
|
|
{
|
|
|
|
return mChatSrv->getPrivateChatQueue(incoming, id, chats);
|
|
|
|
}
|
|
|
|
|
2011-09-29 05:20:09 -04:00
|
|
|
bool p3Msgs::clearPrivateChatQueue(bool incoming, const std::string& id)
|
2010-09-20 20:08:06 -04:00
|
|
|
{
|
|
|
|
return mChatSrv->clearPrivateChatQueue(incoming, id);
|
2009-01-30 14:52:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void p3Msgs::getOwnAvatarData(unsigned char *& data,int& size)
|
|
|
|
{
|
|
|
|
mChatSrv->getOwnAvatarJpegData(data,size) ;
|
2008-02-04 12:55:13 -05:00
|
|
|
}
|
|
|
|
|
2009-01-30 14:52:47 -05:00
|
|
|
void p3Msgs::setOwnAvatarData(const unsigned char *data,int size)
|
|
|
|
{
|
|
|
|
mChatSrv->setOwnAvatarJpegData(data,size) ;
|
|
|
|
}
|
|
|
|
|
2011-09-29 05:20:09 -04:00
|
|
|
void p3Msgs::getAvatarData(const std::string& pid,unsigned char *& data,int& size)
|
2009-01-30 14:52:47 -05:00
|
|
|
{
|
|
|
|
mChatSrv->getAvatarJpegData(pid,data,size) ;
|
|
|
|
}
|
|
|
|
|
2009-10-04 18:27:42 -04:00
|
|
|
std::string p3Msgs::getCustomStateString(const std::string& peer_id)
|
|
|
|
{
|
|
|
|
return mChatSrv->getCustomStateString(peer_id) ;
|
|
|
|
}
|
|
|
|
|
2009-09-29 16:37:20 -04:00
|
|
|
std::string p3Msgs::getCustomStateString()
|
|
|
|
{
|
2009-10-04 18:27:42 -04:00
|
|
|
return mChatSrv->getOwnCustomStateString() ;
|
2009-09-29 16:37:20 -04:00
|
|
|
}
|
2009-01-30 14:52:47 -05:00
|
|
|
|
2009-09-29 16:37:20 -04:00
|
|
|
void p3Msgs::setCustomStateString(const std::string& state_string)
|
|
|
|
{
|
2009-10-04 18:27:42 -04:00
|
|
|
mChatSrv->setOwnCustomStateString(state_string) ;
|
2009-09-29 16:37:20 -04:00
|
|
|
}
|
2009-10-04 18:27:42 -04:00
|
|
|
|
2011-12-04 17:03:54 -05:00
|
|
|
bool p3Msgs::getVirtualPeerId(const ChatLobbyId& id,std::string& peer_id)
|
|
|
|
{
|
|
|
|
return mChatSrv->getVirtualPeerId(id,peer_id) ;
|
|
|
|
}
|
2011-12-04 09:31:48 -05:00
|
|
|
bool p3Msgs::isLobbyId(const std::string& peer_id,ChatLobbyId& id)
|
2011-11-23 17:10:37 -05:00
|
|
|
{
|
2011-12-04 09:31:48 -05:00
|
|
|
return mChatSrv->isLobbyId(peer_id,id) ;
|
2011-11-23 17:10:37 -05:00
|
|
|
}
|
2011-12-04 09:31:48 -05:00
|
|
|
|
2011-11-23 17:10:37 -05:00
|
|
|
void p3Msgs::getChatLobbyList(std::list<ChatLobbyInfo>& linfos)
|
|
|
|
{
|
|
|
|
mChatSrv->getChatLobbyList(linfos) ;
|
|
|
|
}
|
|
|
|
void p3Msgs::invitePeerToLobby(const ChatLobbyId& lobby_id, const std::string& peer_id)
|
|
|
|
{
|
|
|
|
mChatSrv->invitePeerToLobby(lobby_id,peer_id) ;
|
|
|
|
}
|
2011-11-27 16:04:10 -05:00
|
|
|
void p3Msgs::unsubscribeChatLobby(const ChatLobbyId& lobby_id)
|
|
|
|
{
|
|
|
|
mChatSrv->unsubscribeChatLobby(lobby_id) ;
|
|
|
|
}
|
2011-12-26 17:43:54 -05:00
|
|
|
bool p3Msgs::setDefaultNickNameForChatLobby(const std::string& nick)
|
|
|
|
{
|
|
|
|
return mChatSrv->setDefaultNickNameForChatLobby(nick) ;
|
|
|
|
}
|
|
|
|
bool p3Msgs::getDefaultNickNameForChatLobby(std::string& nick_name)
|
|
|
|
{
|
|
|
|
return mChatSrv->getDefaultNickNameForChatLobby(nick_name) ;
|
|
|
|
}
|
|
|
|
|
2011-11-27 16:04:10 -05:00
|
|
|
bool p3Msgs::setNickNameForChatLobby(const ChatLobbyId& lobby_id,const std::string& nick)
|
|
|
|
{
|
|
|
|
return mChatSrv->setNickNameForChatLobby(lobby_id,nick) ;
|
|
|
|
}
|
|
|
|
bool p3Msgs::getNickNameForChatLobby(const ChatLobbyId& lobby_id,std::string& nick_name)
|
|
|
|
{
|
|
|
|
return mChatSrv->getNickNameForChatLobby(lobby_id,nick_name) ;
|
|
|
|
}
|
2011-11-23 17:10:37 -05:00
|
|
|
|
2012-01-07 14:52:58 -05:00
|
|
|
bool p3Msgs::joinPublicChatLobby(const ChatLobbyId& lobby_id)
|
|
|
|
{
|
|
|
|
return mChatSrv->joinPublicChatLobby(lobby_id) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void p3Msgs::getListOfNearbyChatLobbies(std::vector<PublicChatLobbyRecord>& public_lobbies)
|
|
|
|
{
|
|
|
|
mChatSrv->getListOfNearbyChatLobbies(public_lobbies) ;
|
|
|
|
}
|
|
|
|
|
2012-03-16 18:47:49 -04:00
|
|
|
ChatLobbyId p3Msgs::createChatLobby(const std::string& lobby_name,const std::string& lobby_topic,const std::list<std::string>& invited_friends,uint32_t privacy_type)
|
2011-11-27 16:46:49 -05:00
|
|
|
{
|
2012-03-16 18:47:49 -04:00
|
|
|
return mChatSrv->createChatLobby(lobby_name,lobby_topic,invited_friends,privacy_type) ;
|
2011-11-27 16:46:49 -05:00
|
|
|
}
|
|
|
|
|
2011-11-28 17:36:13 -05:00
|
|
|
bool p3Msgs::acceptLobbyInvite(const ChatLobbyId& id)
|
|
|
|
{
|
|
|
|
return mChatSrv->acceptLobbyInvite(id) ;
|
|
|
|
}
|
|
|
|
void p3Msgs::denyLobbyInvite(const ChatLobbyId& id)
|
|
|
|
{
|
|
|
|
mChatSrv->denyLobbyInvite(id) ;
|
|
|
|
}
|
|
|
|
void p3Msgs::getPendingChatLobbyInvites(std::list<ChatLobbyInvite>& invites)
|
|
|
|
{
|
|
|
|
mChatSrv->getPendingChatLobbyInvites(invites) ;
|
|
|
|
}
|
|
|
|
|
2011-11-23 17:10:37 -05:00
|
|
|
|