/**************************************************************** * RetroShare is distributed under the following license: * * Copyright (C) 2008 Robert Fernie * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. ****************************************************************/ #include "NetworkView.h" #include "rsiface/rspeers.h" #include "rsiface/rsdisc.h" #include "rsiface/rsinit.h" #ifdef RS_USE_PGPSSL #include #endif #include #include #include #include #include #include "gui/elastic/node.h" /** Constructor */ NetworkView::NetworkView(QWidget *parent) : MainPage(parent) { /* Invoke the Qt Designer generated object setup routine */ ui.setupUi(this); //mScene = new QGraphicsScene(); //ui.graphicsView->setScene(mScene); /* add button */ connect( ui.refreshButton, SIGNAL( clicked( void ) ), this, SLOT( insertPeers( void ) ) ); //connect( mScene, SIGNAL( changed ( const QList & ) ), this, SLOT ( changedScene( void ) ) ); /* Hide Settings frame */ shownwSettingsFrame(false); connect( ui.nviewsettingsButton, SIGNAL(toggled(bool)), this, SLOT(shownwSettingsFrame(bool))); insertPeers(); /* hide the Tree +/- */ // ui.linkTreeWidget -> setRootIsDecorated( false ); /* Set header resize modes and initial section sizes */ // QHeaderView * _header = ui.linkTreeWidget->header () ; // _header->setResizeMode (0, QHeaderView::Interactive); // _header->setResizeMode (1, QHeaderView::Interactive); // _header->setResizeMode (2, QHeaderView::Interactive); // // _header->resizeSection ( 0, 400 ); // _header->resizeSection ( 1, 50 ); // _header->resizeSection ( 2, 150 ); } void NetworkView::peerCustomPopupMenu( QPoint point ) { QMenu contextMnu( this ); QMouseEvent *mevent = new QMouseEvent( QEvent::MouseButtonPress, point, Qt::RightButton, Qt::RightButton, Qt::NoModifier ); //QAction * voteupAct = new QAction(QIcon(IMAGE_EXPIORTFRIEND), tr( "Vote Link Up" ), this ); //connect( voteupAct , SIGNAL( triggered() ), this, SLOT( voteup() ) ); contextMnu.clear(); //contextMnu.addAction(voteupAct); contextMnu.exec( mevent->globalPos() ); } void NetworkView::changedFoFCheckBox( ) { insertPeers(); } void NetworkView::changedDrawSignatures( ) { insertPeers(); } void NetworkView::changedDrawFriends( ) { insertPeers(); } void NetworkView::clearPeerItems() { std::map::iterator pit; for(pit = mPeerItems.begin(); pit != mPeerItems.end(); pit++) { //mScene->destroyItemGroup((QGraphicsItemGroup *) pit->second); } mPeerItems.clear(); } void NetworkView::clearOtherItems() { std::list::iterator oit; for(oit = mOtherItems.begin(); oit != mOtherItems.end(); oit++) { //mScene->removeItem(*oit); delete (*oit); } mOtherItems.clear(); } void NetworkView::clearLineItems() { std::list::iterator oit; for(oit = mLineItems.begin(); oit != mLineItems.end(); oit++) { //mScene->removeItem(*oit); delete (*oit); } mLineItems.clear(); } void NetworkView::insertPeers() { /* clear graphics scene */ ui.graphicsView->clearGraph(); /* add all friends */ std::list ids; std::list::iterator it; rsPeers->getPGPAllList(ids); std::string ownId = rsPeers->getPGPOwnId(); std::cerr << "NetworkView::insertPeers()" << std::endl; /* get the list of friends' issuers, as we flag them specially */ std::list fids; rsPeers->getPGPFriendList(fids); int i = 0; uint32_t type = 0; for(it = ids.begin(); it != ids.end(); it++, i++) { if (*it == ownId) { continue; } #ifdef RS_USE_PGPSSL /* *** */ RsPeerDetails detail; if (!rsPeers->getPeerDetails(*it, detail)) { continue; } switch(detail.validLvl) { default: case GPGME_VALIDITY_UNKNOWN: case GPGME_VALIDITY_UNDEFINED: case GPGME_VALIDITY_NEVER: /* lots of fall through */ type = ELASTIC_NODE_TYPE_FOF; break; case GPGME_VALIDITY_MARGINAL: /* lots of fall through */ type = ELASTIC_NODE_TYPE_MARGINALAUTH; break; case GPGME_VALIDITY_FULL: case GPGME_VALIDITY_ULTIMATE: /* lots of fall through */ type = ELASTIC_NODE_TYPE_AUTHED; if (fids.end() != std::find(fids.begin(), fids.end(), *it)) { type = ELASTIC_NODE_TYPE_FRIEND; } break; } ui.graphicsView->addNode(type, *it, detail.name); #else /* *** */ std::string name = rsPeers->getPeerName(*it); if (rsPeers->isFriend(*it)) { type = ELASTIC_NODE_TYPE_FRIEND; } else { RsPeerDetails detail; rsPeers->getPeerDetails(*it, detail); if(detail.trustLvl > RS_TRUST_LVL_MARGINAL) { type = ELASTIC_NODE_TYPE_AUTHED; } else if (detail.trustLvl >= RS_TRUST_LVL_MARGINAL) { type = ELASTIC_NODE_TYPE_MARGINALAUTH; } else { type = ELASTIC_NODE_TYPE_FOF; } } ui.graphicsView->addNode(type, *it, name); #endif std::cerr << "NetworkView::insertPeers() Added Friend: " << *it << std::endl; } insertConnections(); insertSignatures(); } void NetworkView::insertConnections() { /* iterate through all friends */ std::list fids, ids; std::list::iterator it; //std::string ownId = rsPeers->getGPGOwnId(); //rsPeers->getPGPAllList(ids); rsPeers->getPGPFriendList(fids); std::cerr << "NetworkView::insertConnections()" << std::endl; // For the moment, only add friends. for(it = fids.begin(); it != fids.end(); it++) { ui.graphicsView->addEdge("", *it); std::cerr << "NetworkView: Adding Edge: Self -> " << *it; std::cerr << std::endl; } #if 0 int i = 0; for(it = ids.begin(); it != ids.end(); it++, i++) { if (rsPeers->isFriend(*it)) { /* add own connection (check for it first) */ std::list &refList = connLists[*it]; if (refList.end() == std::find(refList.begin(), refList.end(), ownId)) { connLists[ownId].push_back(*it); connLists[*it].push_back(ownId); ui.graphicsView->addEdge("", *it); std::cerr << "NetworkView: Adding Edge: Self -> " << *it; std::cerr << std::endl; } else { std::cerr << "NetworkView: Already Edge: Self -> " << *it; std::cerr << std::endl; } } std::list friendList; std::list::iterator it2; rsDisc->getDiscFriends(*it, friendList); int j = 0; for(it2 = friendList.begin(); it2 != friendList.end(); it2++) { if (*it == *it2) continue; /* check that we haven't added this one already */ std::list &refList = connLists[*it]; if (refList.end() == std::find(refList.begin(), refList.end(), *it2)) { connLists[*it2].push_back(*it); connLists[*it].push_back(*it2); ui.graphicsView->addEdge(*it, *it2); std::cerr << "NetworkView: Adding Edge: " << *it << " <-> " << *it2; std::cerr << std::endl; } else { std::cerr << "NetworkView: Already Edge: " << *it << " <-> " << *it2; std::cerr << std::endl; } } } #endif } void NetworkView::insertSignatures() { /* iterate through all friends */ std::list ids; std::list::iterator it, sit; std::string ownId = rsPeers->getPGPOwnId(); rsPeers->getPGPAllList(ids); std::cerr << "NetworkView::insertSignatures()" << std::endl; int i = 0; for(it = ids.begin(); it != ids.end(); it++, i++) { RsPeerDetails detail; if (!rsPeers->getPeerDetails(*it, detail)) { continue; } for(sit = detail.gpgSigners.begin(); sit != detail.gpgSigners.end(); sit++) { if (*it != *sit) { std::cerr << "NetworkView: Adding Arrow: "; std::cerr << *sit << " <-> " << *it; std::cerr << std::endl; ui.graphicsView->addArrow(*sit, *it); } } } } void NetworkView::changedScene() { } /** Toggles the Settings pane on and off, changes toggle button text */ void NetworkView::shownwSettingsFrame(bool show) { if (show) { ui.viewsettingsframe->setVisible(true); ui.nviewsettingsButton->setChecked(true); ui.nviewsettingsButton->setToolTip(tr("Hide Settings")); } else { ui.viewsettingsframe->setVisible(false); ui.nviewsettingsButton->setChecked(false); ui.nviewsettingsButton->setToolTip(tr("Show Settings")); } }