2009-12-28 17:40:45 -05:00
|
|
|
|
|
|
|
#include "notifyqt.h"
|
|
|
|
#include "rsiface/rsnotify.h"
|
|
|
|
#include "rsiface/rspeers.h"
|
|
|
|
#include "rsiface/rsphoto.h"
|
|
|
|
#ifdef TURTLE_HOPPING
|
|
|
|
#include <rsiface/rsturtle.h>
|
|
|
|
#endif
|
|
|
|
|
2010-05-02 20:09:55 -04:00
|
|
|
#include "gui/RsAutoUpdatePage.h"
|
2009-12-28 17:40:45 -05:00
|
|
|
|
|
|
|
#include "gui/toaster/OnlineToaster.h"
|
|
|
|
#include "gui/toaster/MessageToaster.h"
|
|
|
|
#include "gui/toaster/ChatToaster.h"
|
|
|
|
#include "gui/toaster/CallToaster.h"
|
|
|
|
|
|
|
|
#include "gui/settings/rsharesettings.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
2010-01-20 17:02:43 -05:00
|
|
|
#include <time.h>
|
2009-12-28 17:40:45 -05:00
|
|
|
|
|
|
|
/*****
|
|
|
|
* #define NOTIFY_DEBUG
|
|
|
|
****/
|
|
|
|
|
|
|
|
void NotifyQt::notifyErrorMsg(int list, int type, std::string msg)
|
|
|
|
{
|
2010-02-07 13:10:12 -05:00
|
|
|
emit errorOccurred(list,type,QString::fromStdString(msg)) ;
|
2009-12-28 17:40:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void NotifyQt::notifyOwnAvatarChanged()
|
|
|
|
{
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "Notifyqt:: notified that own avatar changed" << std::endl ;
|
2010-02-08 11:42:26 -05:00
|
|
|
#endif
|
2009-12-28 17:40:45 -05:00
|
|
|
emit ownAvatarChanged() ;
|
|
|
|
}
|
|
|
|
|
2010-04-19 17:50:03 -04:00
|
|
|
std::string NotifyQt::askForPassword(const std::string& key_details,bool prev_is_bad)
|
2009-12-28 17:40:45 -05:00
|
|
|
{
|
2010-02-09 14:10:15 -05:00
|
|
|
|
2010-04-19 17:50:03 -04:00
|
|
|
RsAutoUpdatePage::lockAllEvents() ;
|
|
|
|
|
|
|
|
std::string res = QInputDialog::getText(NULL, tr("GPG key passphrase"),
|
|
|
|
(prev_is_bad?tr("Wrong password !\n\n"):QString()) +
|
|
|
|
tr("Please enter the password to unlock the following GPG key:\n") + QString::fromStdString(key_details), QLineEdit::Password, NULL, NULL).toStdString();
|
|
|
|
|
|
|
|
RsAutoUpdatePage::unlockAllEvents() ;
|
|
|
|
|
|
|
|
return res ;
|
2009-12-28 17:40:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void NotifyQt::notifyOwnStatusMessageChanged()
|
|
|
|
{
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "Notifyqt:: notified that own avatar changed" << std::endl ;
|
2010-02-08 11:42:26 -05:00
|
|
|
#endif
|
2009-12-28 17:40:45 -05:00
|
|
|
emit ownStatusMessageChanged() ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotifyQt::notifyPeerHasNewAvatar(std::string peer_id)
|
|
|
|
{
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "notifyQt: notification of new avatar." << std::endl ;
|
2010-02-08 11:42:26 -05:00
|
|
|
#endif
|
2009-12-28 17:40:45 -05:00
|
|
|
emit peerHasNewAvatar(QString::fromStdString(peer_id)) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotifyQt::notifyCustomState(const std::string& peer_id)
|
|
|
|
{
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "notifyQt: Received custom status string notification" << std::endl ;
|
2010-02-08 11:42:26 -05:00
|
|
|
#endif
|
2009-12-28 17:40:45 -05:00
|
|
|
emit peerHasNewCustomStateString(QString::fromStdString(peer_id)) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotifyQt::notifyChatStatus(const std::string& peer_id,const std::string& status_string,bool is_private)
|
|
|
|
{
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "notifyQt: Received chat status string: " << status_string << std::endl ;
|
2010-02-08 11:42:26 -05:00
|
|
|
#endif
|
2009-12-28 17:40:45 -05:00
|
|
|
emit chatStatusChanged(QString::fromStdString(peer_id),QString::fromStdString(status_string),is_private) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotifyQt::notifyTurtleSearchResult(uint32_t search_id,const std::list<TurtleFileInfo>& files)
|
|
|
|
{
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "in notify search result..." << std::endl ;
|
2010-02-08 11:42:26 -05:00
|
|
|
#endif
|
2009-12-28 17:40:45 -05:00
|
|
|
|
|
|
|
for(std::list<TurtleFileInfo>::const_iterator it(files.begin());it!=files.end();++it)
|
|
|
|
{
|
|
|
|
FileDetail det ;
|
|
|
|
det.rank = 0 ;
|
|
|
|
det.age = 0 ;
|
|
|
|
det.name = (*it).name ;
|
|
|
|
det.hash = (*it).hash ;
|
|
|
|
det.size = (*it).size ;
|
|
|
|
det.id = "Anonymous" ;
|
|
|
|
|
|
|
|
emit gotTurtleSearchResult(search_id,det) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotifyQt::notifyHashingInfo(std::string fileinfo)
|
|
|
|
{
|
|
|
|
emit hashingInfoChanged(QString::fromStdString(fileinfo)) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
//void NotifyQt::notifyChat()
|
|
|
|
//{
|
|
|
|
// std::cerr << "Received chat notification" << std::endl ;
|
|
|
|
// return;
|
|
|
|
//}
|
|
|
|
|
|
|
|
void NotifyQt::notifyListChange(int list, int type)
|
|
|
|
{
|
|
|
|
#ifdef NOTIFY_DEBUG
|
|
|
|
std::cerr << "NotifyQt::notifyListChange()" << std::endl;
|
|
|
|
#endif
|
|
|
|
switch(list)
|
|
|
|
{
|
|
|
|
case NOTIFY_LIST_NEIGHBOURS:
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "received neighbrs changed" << std::endl ;
|
|
|
|
#endif
|
|
|
|
emit neighborsChanged();
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_FRIENDS:
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "received friends changed" << std::endl ;
|
|
|
|
#endif
|
|
|
|
emit friendsChanged() ;
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_DIRLIST_LOCAL:
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "received files changed" << std::endl ;
|
|
|
|
#endif
|
|
|
|
emit filesPostModChanged(true) ; /* Local */
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_DIRLIST_FRIENDS:
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "received files changed" << std::endl ;
|
|
|
|
#endif
|
|
|
|
emit filesPostModChanged(false) ; /* Local */
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_SEARCHLIST:
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_MESSAGELIST:
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "received msg changed" << std::endl ;
|
|
|
|
#endif
|
|
|
|
emit messagesChanged() ;
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_CHANNELLIST:
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_TRANSFERLIST:
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "received transfer changed" << std::endl ;
|
|
|
|
#endif
|
|
|
|
emit transfersChanged() ;
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_CONFIG:
|
2010-02-08 11:42:26 -05:00
|
|
|
#ifdef NOTIFY_DEBUG
|
2009-12-28 17:40:45 -05:00
|
|
|
std::cerr << "received config changed" << std::endl ;
|
|
|
|
#endif
|
|
|
|
emit configChanged() ;
|
|
|
|
break ;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void NotifyQt::notifyListPreChange(int list, int type)
|
|
|
|
{
|
|
|
|
#ifdef NOTIFY_DEBUG
|
|
|
|
std::cerr << "NotifyQt::notifyListPreChange()" << std::endl;
|
|
|
|
#endif
|
|
|
|
switch(list)
|
|
|
|
{
|
|
|
|
case NOTIFY_LIST_NEIGHBOURS:
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_FRIENDS:
|
|
|
|
emit friendsChanged() ;
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_DIRLIST_FRIENDS:
|
|
|
|
emit filesPreModChanged(false) ; /* remote */
|
|
|
|
break ;
|
|
|
|
case NOTIFY_LIST_DIRLIST_LOCAL:
|
|
|
|
emit filesPreModChanged(true) ; /* local */
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_SEARCHLIST:
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_MESSAGELIST:
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_CHANNELLIST:
|
|
|
|
break;
|
|
|
|
case NOTIFY_LIST_TRANSFERLIST:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* New Timer Based Update scheme ...
|
|
|
|
* means correct thread seperation
|
|
|
|
*
|
|
|
|
* uses Flags, to detect changes
|
|
|
|
*/
|
|
|
|
|
|
|
|
void NotifyQt::UpdateGUI()
|
|
|
|
{
|
|
|
|
/* hack to force updates until we've fixed that part */
|
|
|
|
static time_t lastTs = 0;
|
|
|
|
|
|
|
|
// std::cerr << "Got update signal t=" << lastTs << std::endl ;
|
|
|
|
|
|
|
|
lastTs = time(NULL) ;
|
|
|
|
|
|
|
|
static bool already_updated = false ; // these only update once at start because they may already have been set before
|
|
|
|
// the gui is running, then they get updated by callbacks.
|
|
|
|
if(!already_updated)
|
|
|
|
{
|
|
|
|
emit messagesChanged() ;
|
|
|
|
emit neighborsChanged();
|
|
|
|
emit configChanged();
|
|
|
|
|
|
|
|
already_updated = true ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Finally Check for PopupMessages / System Error Messages */
|
|
|
|
|
|
|
|
if (rsNotify)
|
|
|
|
{
|
|
|
|
uint32_t sysid;
|
|
|
|
uint32_t type;
|
|
|
|
std::string title, id, msg;
|
|
|
|
|
|
|
|
if (rsNotify->NotifyPopupMessage(type, id, msg))
|
|
|
|
{
|
|
|
|
RshareSettings settings;
|
|
|
|
uint popupflags = settings.getNotifyFlags();
|
|
|
|
|
|
|
|
/* id the name */
|
|
|
|
std::string name = rsPeers->getPeerName(id);
|
2010-02-08 09:06:43 -05:00
|
|
|
//std::cerr << "NotifyQT got message for peer id : " << id << "; name : " << name << std::endl;
|
2009-12-28 17:40:45 -05:00
|
|
|
std::string realmsg = "<strong>" + name + "</strong>";
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case RS_POPUP_MSG:
|
|
|
|
if (popupflags & RS_POPUP_MSG)
|
|
|
|
{
|
|
|
|
MessageToaster * msgToaster = new MessageToaster();
|
|
|
|
//msgToaster->setMessage(QString::fromStdString(title));
|
|
|
|
msgToaster->setName(QString::fromStdString(realmsg));
|
|
|
|
msgToaster->displayPopup();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RS_POPUP_CHAT:
|
|
|
|
if (popupflags & RS_POPUP_CHAT)
|
|
|
|
{
|
|
|
|
ChatToaster * chatToaster = new ChatToaster();
|
|
|
|
chatToaster->setMessage(QString::fromStdString(realmsg));
|
|
|
|
chatToaster->show();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RS_POPUP_CALL:
|
|
|
|
if (popupflags & RS_POPUP_CALL)
|
|
|
|
{
|
|
|
|
CallToaster * callToaster = new CallToaster();
|
|
|
|
callToaster->setMessage(QString::fromStdString(realmsg));
|
|
|
|
callToaster->show();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case RS_POPUP_CONNECT:
|
|
|
|
if (popupflags & RS_POPUP_CONNECT)
|
|
|
|
{
|
|
|
|
OnlineToaster * onlineToaster = new OnlineToaster();
|
|
|
|
onlineToaster->setMessage(QString::fromStdString(realmsg));
|
|
|
|
onlineToaster->show();
|
2010-05-05 07:47:29 -04:00
|
|
|
onlineToaster->play();
|
2009-12-28 17:40:45 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rsNotify->NotifySysMessage(sysid, type, title, msg))
|
|
|
|
{
|
|
|
|
/* make a warning message */
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case RS_SYS_ERROR:
|
|
|
|
QMessageBox::critical(0,
|
|
|
|
QString::fromStdString(title),
|
|
|
|
QString::fromStdString(msg));
|
|
|
|
break;
|
|
|
|
case RS_SYS_WARNING:
|
|
|
|
QMessageBox::warning(0,
|
|
|
|
QString::fromStdString(title),
|
|
|
|
QString::fromStdString(msg));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case RS_SYS_INFO:
|
|
|
|
QMessageBox::information(0,
|
|
|
|
QString::fromStdString(title),
|
|
|
|
QString::fromStdString(msg));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rsNotify->NotifyLogMessage(sysid, type, title, msg))
|
|
|
|
{
|
|
|
|
/* make a log message */
|
|
|
|
std::string logMesString = title + " " + msg;
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case RS_SYS_ERROR:
|
|
|
|
case RS_SYS_WARNING:
|
|
|
|
case RS_SYS_INFO: emit logInfoChanged(QString(logMesString.c_str()));
|
|
|
|
default:;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//void NotifyQt::displaySearch()
|
|
|
|
//{
|
|
|
|
// iface->lockData(); /* Lock Interface */
|
|
|
|
//
|
|
|
|
//#ifdef NOTIFY_DEBUG
|
|
|
|
// std::ostringstream out;
|
|
|
|
// std::cerr << out.str();
|
|
|
|
//#endif
|
|
|
|
//
|
|
|
|
// iface->unlockData(); /* UnLock Interface */
|
|
|
|
//}
|
|
|
|
|
|
|
|
// void NotifyQt::displayChat()
|
|
|
|
// {
|
|
|
|
// iface->lockData(); /* Lock Interface */
|
|
|
|
//
|
|
|
|
// #ifdef NOTIFY_DEBUG
|
|
|
|
// std::ostringstream out;
|
|
|
|
// std::cerr << out.str();
|
|
|
|
// #endif
|
|
|
|
//
|
|
|
|
// iface->unlockData(); /* UnLock Interface */
|
|
|
|
//
|
|
|
|
// if (hDialog)
|
|
|
|
// hDialog -> insertChat();
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//void NotifyQt::displayChannels()
|
|
|
|
//{
|
|
|
|
// iface->lockData(); /* Lock Interface */
|
|
|
|
//
|
|
|
|
//#ifdef NOTIFY_DEBUG
|
|
|
|
// std::ostringstream out;
|
|
|
|
// std::cerr << out.str();
|
|
|
|
//#endif
|
|
|
|
//
|
|
|
|
// iface->unlockData(); /* UnLock Interface */
|
|
|
|
//
|
|
|
|
// if (sDialog)
|
|
|
|
// sDialog -> insertChannels();
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//void NotifyQt::displayTransfers()
|
|
|
|
//{
|
|
|
|
// /* Do the GUI */
|
|
|
|
// if (tDialog)
|
|
|
|
// tDialog->insertTransfers();
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//void NotifyQt::preDisplayNeighbours()
|
|
|
|
//{
|
|
|
|
//
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//void NotifyQt::preDisplayFriends()
|
|
|
|
//{
|
|
|
|
//
|
|
|
|
//}
|
|
|
|
|
|
|
|
//void NotifyQt::preDisplaySearch()
|
|
|
|
//{
|
|
|
|
//
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//void NotifyQt::preDisplayMessages()
|
|
|
|
//{
|
|
|
|
//
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//void NotifyQt::preDisplayChannels()
|
|
|
|
//{
|
|
|
|
//
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//void NotifyQt::preDisplayTransfers()
|
|
|
|
//{
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
|
|
|