/**************************************************************** * RetroShare is distributed under the following license: * * Copyright (C) 2009 RetroShare Team * * 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 "torstatus.h" #include #include #include #include #include "retroshare/rsconfig.h" #include "util/misc.h" #ifdef RETROTOR #include "TorControl/TorManager.h" #include "TorControl/TorControl.h" #endif #include TorStatus::TorStatus(QWidget *parent) : QWidget(parent) { QHBoxLayout *hbox = new QHBoxLayout(); hbox->setMargin(0); hbox->setSpacing(6); statusTor = new QLabel("" + tr("Tor") + ":", this ); statusTor->setToolTip(tr("

This version of Retroshare uses Tor to connect to your friends.

")) ; hbox->addWidget(statusTor); torstatusLabel = new QLabel( this ); torstatusLabel->setPixmap(QPixmap(":/icons/no-tor.png")); hbox->addWidget(torstatusLabel); _compactMode = false; setLayout( hbox ); } void TorStatus::getTorStatus() { statusTor->setVisible(!_compactMode); QString text = _compactMode?statusTor->text():""; /* check local network state. We cannot make sure that Tor is running yet. */ uint32_t netState = rsConfig -> getNetState(); bool online ; switch(netState) { default: case RSNET_NETSTATE_BAD_UNKNOWN: case RSNET_NETSTATE_BAD_OFFLINE: online = false ; break ; case RSNET_NETSTATE_WARNING_RESTART: case RSNET_NETSTATE_BAD_NATSYM: case RSNET_NETSTATE_BAD_NODHT_NAT: case RSNET_NETSTATE_WARNING_NATTED: case RSNET_NETSTATE_WARNING_NODHT: case RSNET_NETSTATE_GOOD: case RSNET_NETSTATE_ADV_FORWARD: online = true ; break ; } /* now the extra bit .... switch on check boxes */ int S = QFontMetricsF(torstatusLabel->font()).height(); #ifdef RETROTOR // get Tor status int tor_control_status = Tor::TorManager::instance()->control()->status(); int torstatus = Tor::TorManager::instance()->control()->torStatus(); QString tor_control_status_str,torstatus_str ; bool tor_control_ok ; switch(tor_control_status) { default: case Tor::TorControl::Error : tor_control_ok = false ; tor_control_status_str = "Error" ; break ; case Tor::TorControl::NotConnected: tor_control_ok = false ; tor_control_status_str = "Not connected" ; break ; case Tor::TorControl::Connecting: tor_control_ok = false ; tor_control_status_str = "Connecting" ; break ; case Tor::TorControl::Authenticating: tor_control_ok = false ; tor_control_status_str = "Authenticating" ; break ; case Tor::TorControl::Connected: tor_control_ok = true ; tor_control_status_str = "Connected" ; break ; } switch(torstatus) { default: case Tor::TorControl::TorUnknown: torstatus_str = "Unknown" ; break ; case Tor::TorControl::TorOffline: torstatus_str = "Tor offline" ; break ; case Tor::TorControl::TorReady: torstatus_str = "Tor ready" ; break ; } #define MIN_RS_NET_SIZE 10 if(torstatus == Tor::TorControl::TorOffline || !online || !tor_control_ok) { // RED - some issue. torstatusLabel->setPixmap(QPixmap(":/icons/tor-stopping.png").scaledToHeight(1.5*S,Qt::SmoothTransformation)); torstatusLabel->setToolTip( text + tr("Tor is currently offline")); } else if(torstatus == Tor::TorControl::TorReady && online && tor_control_ok) { torstatusLabel->setPixmap(QPixmap(":/icons/tor-on.png").scaledToHeight(1.5*S,Qt::SmoothTransformation)); torstatusLabel->setToolTip( text + tr("Tor is OK")); } else // torstatus == Tor::TorControl::TorUnknown { // GRAY. torstatusLabel->setPixmap(QPixmap(":/icons/no-tor.png").scaledToHeight(1.5*S,Qt::SmoothTransformation)); torstatusLabel->setToolTip( text + tr("No tor configuration")); } #else torstatusLabel->setPixmap(QPixmap(":/icons/tor-stopping.png").scaledToHeight(S,Qt::SmoothTransformation)); torstatusLabel->setToolTip( text + tr("Tor is currently offline")); #endif }