2013-11-13 21:50:49 +00:00
# include "mainwindow.h"
2013-11-15 22:04:32 +00:00
# include "aboutwindow.h"
2013-11-20 23:29:02 +00:00
# include "network.h"
2013-11-13 21:50:49 +00:00
# include "ui_mainwindow.h"
2013-11-18 20:06:05 +00:00
# include <string>
# include <map>
2013-11-20 23:29:02 +00:00
# include <set>
2013-11-18 20:06:05 +00:00
# include <vector>
2013-11-19 20:05:14 +00:00
# include <stdexcept>
2013-11-18 20:06:05 +00:00
2013-11-15 22:04:32 +00:00
# include <QClipboard>
2013-11-18 20:06:05 +00:00
# include <QMutex>
2013-11-19 20:05:14 +00:00
# include <QCoreApplication>
# include <QDir>
# include <QFile>
# include <QMessageBox>
# include <QDebug>
2013-11-20 17:19:37 +00:00
# include <QProcess>
# include <QStringList>
2013-11-20 23:29:02 +00:00
# include <QVBoxLayout>
2013-11-18 20:06:05 +00:00
2013-11-20 19:10:33 +00:00
// Globally visible
ZeroTier : : Node : : LocalClient * zeroTierClient = ( ZeroTier : : Node : : LocalClient * ) 0 ;
// Main window instance for app
static MainWindow * mainWindow = ( MainWindow * ) 0 ;
2013-11-18 20:06:05 +00:00
static void handleZTMessage ( void * arg , unsigned long id , const char * line )
{
2013-11-20 19:10:33 +00:00
static std : : map < unsigned long , std : : vector < std : : string > > ztReplies ;
static QMutex ztReplies_m ;
2013-11-18 20:06:05 +00:00
ztReplies_m . lock ( ) ;
if ( * line ) {
ztReplies [ id ] . push_back ( std : : string ( line ) ) ;
ztReplies_m . unlock ( ) ;
2013-11-19 20:05:14 +00:00
} else { // empty lines conclude transmissions
2013-11-20 19:10:33 +00:00
std : : map < unsigned long , std : : vector < std : : string > > : : iterator r ( ztReplies . find ( id ) ) ;
if ( r ! = ztReplies . end ( ) ) {
MainWindow : : ZTMessageEvent * event = new MainWindow : : ZTMessageEvent ( r - > second ) ;
ztReplies . erase ( r ) ;
ztReplies_m . unlock ( ) ;
QCoreApplication : : postEvent ( mainWindow , event ) ; // must post since this may be another thread
} else ztReplies_m . unlock ( ) ;
2013-11-18 20:06:05 +00:00
}
}
2013-11-13 21:50:49 +00:00
MainWindow : : MainWindow ( QWidget * parent ) :
QMainWindow ( parent ) ,
ui ( new Ui : : MainWindow )
{
ui - > setupUi ( this ) ;
2013-11-20 17:19:37 +00:00
this - > startTimer ( 1000 ) ;
this - > setEnabled ( false ) ; // gets enabled when updates are received
2013-11-20 19:10:33 +00:00
mainWindow = this ;
2013-11-13 21:50:49 +00:00
}
MainWindow : : ~ MainWindow ( )
{
delete ui ;
2013-11-20 17:19:37 +00:00
delete zeroTierClient ;
zeroTierClient = ( ZeroTier : : Node : : LocalClient * ) 0 ;
2013-11-20 19:10:33 +00:00
mainWindow = ( MainWindow * ) 0 ;
2013-11-13 21:50:49 +00:00
}
2013-11-15 22:04:32 +00:00
2013-11-19 20:05:14 +00:00
void MainWindow : : timerEvent ( QTimerEvent * event )
{
QMainWindow : : timerEvent ( event ) ;
if ( ! zeroTierClient ) {
std : : string dotAuthFile ( ( QDir : : homePath ( ) + QDir : : separator ( ) + " .zeroTierOneAuthToken " ) . toStdString ( ) ) ;
std : : string authToken ;
if ( ! ZeroTier : : Utils : : readFile ( dotAuthFile . c_str ( ) , authToken ) ) {
# ifdef __APPLE__
2013-11-20 17:19:37 +00:00
// Run the little AppleScript hack that asks for admin credentials and
// then installs the auth token file in the current user's home.
QString authHelperPath ( QCoreApplication : : applicationDirPath ( ) + " /../Resources/helpers/mac/ZeroTier One (Authenticate).app/Contents/MacOS/applet " ) ;
2013-11-19 20:05:14 +00:00
if ( ! QFile : : exists ( authHelperPath ) ) {
// Allow this to also work from the source tree if it's run from there.
2013-11-20 17:19:37 +00:00
// This is for debugging purposes and shouldn't harm the live release
2013-11-19 20:05:14 +00:00
// in any way.
2013-11-20 17:19:37 +00:00
authHelperPath = QCoreApplication : : applicationDirPath ( ) + " /../../../../ZeroTierUI/helpers/mac/ZeroTier One (Authenticate).app/Contents/MacOS/applet " ;
2013-11-19 20:05:14 +00:00
if ( ! QFile : : exists ( authHelperPath ) ) {
QMessageBox : : critical ( this , " Unable to Locate Helper " , " Unable to locate authorization helper, cannot obtain authentication token. " , QMessageBox : : Ok , QMessageBox : : NoButton ) ;
QApplication : : exit ( 1 ) ;
2013-11-20 17:19:37 +00:00
return ;
2013-11-19 20:05:14 +00:00
}
}
2013-11-20 17:19:37 +00:00
QProcess : : execute ( authHelperPath , QStringList ( ) ) ;
2013-11-19 20:05:14 +00:00
# endif
2013-11-20 17:19:37 +00:00
if ( ! ZeroTier : : Utils : : readFile ( dotAuthFile . c_str ( ) , authToken ) ) {
QMessageBox : : critical ( this , " Cannot Authorize " , " Unable to authorize this user to administrate ZeroTier One. \n \n To do so manually, copy 'authtoken.secret' from the ZeroTier One home directory to '.zeroTierOneAuthToken' in your home directory and set file modes on this file to only be readable by you (e.g. 0600 on Mac or Linux systems). " , QMessageBox : : Ok , QMessageBox : : NoButton ) ;
QApplication : : exit ( 1 ) ;
return ;
}
2013-11-19 20:05:14 +00:00
}
2013-11-20 17:19:37 +00:00
zeroTierClient = new ZeroTier : : Node : : LocalClient ( authToken . c_str ( ) , 0 , & handleZTMessage , this ) ;
2013-11-19 20:05:14 +00:00
}
2013-11-20 19:10:33 +00:00
zeroTierClient - > send ( " info " ) ;
zeroTierClient - > send ( " listnetworks " ) ;
zeroTierClient - > send ( " listpeers " ) ;
}
void MainWindow : : customEvent ( QEvent * event )
{
ZTMessageEvent * m = ( ZTMessageEvent * ) event ; // only one custom event type so far
if ( m - > ztMessage . size ( ) = = 0 )
return ;
std : : vector < std : : string > hdr ( ZeroTier : : Node : : LocalClient : : splitLine ( m - > ztMessage [ 0 ] ) ) ;
if ( hdr . size ( ) < 2 )
return ;
if ( hdr [ 0 ] ! = " 200 " )
return ;
// Enable main window on valid communication with service
if ( ! this - > isEnabled ( ) )
this - > setEnabled ( true ) ;
if ( hdr [ 1 ] = = " info " ) {
if ( hdr . size ( ) > = 3 )
this - > myAddress = hdr [ 2 ] . c_str ( ) ;
if ( hdr . size ( ) > = 4 )
this - > myStatus = hdr [ 3 ] . c_str ( ) ;
if ( hdr . size ( ) > = 5 )
this - > myVersion = hdr [ 4 ] . c_str ( ) ;
} else if ( hdr [ 1 ] = = " listnetworks " ) {
2013-11-20 23:29:02 +00:00
std : : set < std : : string > networkIds ;
2013-11-20 21:16:30 +00:00
2013-11-20 23:29:02 +00:00
// Add/update network widgets in scroll area
2013-11-20 21:16:30 +00:00
for ( unsigned long i = 1 ; i < m - > ztMessage . size ( ) ; + + i ) {
std : : vector < std : : string > l ( ZeroTier : : Node : : LocalClient : : splitLine ( m - > ztMessage [ i ] ) ) ;
2013-11-20 23:29:02 +00:00
// 200 listnetworks <nwid> <name> <status> <type> <dev> <ips>
if ( ( l . size ( ) = = 8 ) & & ( l [ 2 ] . length ( ) = = 16 ) ) {
networkIds . insert ( l [ 2 ] ) ;
Network * nw = ( Network * ) 0 ;
for ( QObjectList : : const_iterator n ( ui - > networksScrollAreaContentWidget - > children ( ) . begin ( ) ) ; n ! = ui - > networksScrollAreaContentWidget - > children ( ) . end ( ) ; + + n ) {
Network * n2 = ( Network * ) * n ;
if ( ( n2 ) & & ( n2 - > networkId ( ) = = l [ 2 ] ) ) {
nw = n2 ;
break ;
}
}
if ( ! nw ) {
nw = new Network ( ui - > networksScrollAreaContentWidget , l [ 2 ] ) ;
}
nw - > setNetworkName ( l [ 3 ] ) ;
nw - > setStatus ( l [ 4 ] ) ;
nw - > setNetworkType ( l [ 5 ] ) ;
nw - > setNetworkDeviceName ( l [ 6 ] ) ;
nw - > setIps ( l [ 7 ] ) ;
}
2013-11-20 21:16:30 +00:00
}
2013-11-20 23:29:02 +00:00
// Remove widgets for networks no longer in the list
for ( QObjectList : : const_iterator n ( ui - > networksScrollAreaContentWidget - > children ( ) . begin ( ) ) ; n ! = ui - > networksScrollAreaContentWidget - > children ( ) . end ( ) ; + + n ) {
Network * n2 = ( Network * ) * n ;
if ( ( n2 ) & & ( ! networkIds . count ( n2 - > networkId ( ) ) ) )
n2 - > deleteLater ( ) ;
}
// Update layout
QVBoxLayout * layout = new QVBoxLayout ( ) ;
layout - > setSpacing ( 0 ) ;
layout - > setMargin ( 0 ) ;
for ( QObjectList : : const_iterator n ( ui - > networksScrollAreaContentWidget - > children ( ) . begin ( ) ) ; n ! = ui - > networksScrollAreaContentWidget - > children ( ) . end ( ) ; + + n )
layout - > addWidget ( ( QWidget * ) * n ) ;
delete ui - > networksScrollAreaContentWidget - > layout ( ) ;
ui - > networksScrollAreaContentWidget - > setLayout ( layout ) ;
2013-11-20 19:10:33 +00:00
} else if ( hdr [ 1 ] = = " listpeers " ) {
this - > numPeers = 0 ;
for ( unsigned long i = 1 ; i < m - > ztMessage . size ( ) ; + + i ) {
std : : vector < std : : string > l ( ZeroTier : : Node : : LocalClient : : splitLine ( m - > ztMessage [ i ] ) ) ;
if ( ( l . size ( ) > = 5 ) & & ( ( l [ 3 ] ! = " - " ) | | ( l [ 4 ] ! = " - " ) ) )
+ + this - > numPeers ; // number of direct peers online -- check for active IPv4 and/or IPv6 address
}
}
if ( this - > myAddress . size ( ) ) {
QString st ( this - > myAddress ) ;
st + = " ( " ;
st + = this - > myStatus ;
st + = " , " ;
st + = QString : : number ( this - > numPeers ) ;
st + = " peers) " ;
while ( st . size ( ) < 38 )
st + = QChar : : Space ;
ui - > statusAndAddressButton - > setText ( st ) ;
}
2013-11-19 20:05:14 +00:00
}
2013-11-15 22:04:32 +00:00
void MainWindow : : on_joinNetworkButton_clicked ( )
{
2013-11-20 21:16:30 +00:00
QString toJoin ( ui - > networkIdLineEdit - > text ( ) ) ;
ui - > networkIdLineEdit - > setText ( QString ( ) ) ;
if ( ! zeroTierClient ) // sanity check
return ;
if ( toJoin . size ( ) ! = 16 ) {
QMessageBox : : information ( this , " Invalid Network ID " , " The network ID you entered was not valid. Enter a 16-digit hexadecimal network ID, like '8056c2e21c000001'. " , QMessageBox : : Ok , QMessageBox : : NoButton ) ;
return ;
}
zeroTierClient - > send ( ( QString ( " join " ) + toJoin ) . toStdString ( ) ) ;
2013-11-15 22:04:32 +00:00
}
void MainWindow : : on_actionAbout_triggered ( )
{
AboutWindow * about = new AboutWindow ( this ) ;
about - > show ( ) ;
}
void MainWindow : : on_actionJoin_Network_triggered ( )
{
2013-11-18 17:01:33 +00:00
// Does the same thing as clicking join button on main UI
2013-11-15 22:04:32 +00:00
on_joinNetworkButton_clicked ( ) ;
}
void MainWindow : : on_networkIdLineEdit_textChanged ( const QString & text )
{
2013-11-18 17:01:33 +00:00
QString newText ;
for ( QString : : const_iterator i ( text . begin ( ) ) ; i ! = text . end ( ) ; + + i ) {
switch ( i - > toLatin1 ( ) ) {
case ' 0 ' : newText . append ( ' 0 ' ) ; break ;
case ' 1 ' : newText . append ( ' 1 ' ) ; break ;
case ' 2 ' : newText . append ( ' 2 ' ) ; break ;
case ' 3 ' : newText . append ( ' 3 ' ) ; break ;
case ' 4 ' : newText . append ( ' 4 ' ) ; break ;
case ' 5 ' : newText . append ( ' 5 ' ) ; break ;
case ' 6 ' : newText . append ( ' 6 ' ) ; break ;
case ' 7 ' : newText . append ( ' 7 ' ) ; break ;
case ' 8 ' : newText . append ( ' 8 ' ) ; break ;
case ' 9 ' : newText . append ( ' 9 ' ) ; break ;
case ' a ' : newText . append ( ' a ' ) ; break ;
case ' b ' : newText . append ( ' b ' ) ; break ;
case ' c ' : newText . append ( ' c ' ) ; break ;
case ' d ' : newText . append ( ' d ' ) ; break ;
case ' e ' : newText . append ( ' e ' ) ; break ;
case ' f ' : newText . append ( ' f ' ) ; break ;
case ' A ' : newText . append ( ' a ' ) ; break ;
case ' B ' : newText . append ( ' b ' ) ; break ;
case ' C ' : newText . append ( ' c ' ) ; break ;
case ' D ' : newText . append ( ' d ' ) ; break ;
case ' E ' : newText . append ( ' e ' ) ; break ;
case ' F ' : newText . append ( ' f ' ) ; break ;
default : break ;
}
}
2013-11-20 23:29:02 +00:00
if ( newText . size ( ) > 16 )
newText . truncate ( 16 ) ;
2013-11-18 17:01:33 +00:00
ui - > networkIdLineEdit - > setText ( newText ) ;
2013-11-15 22:04:32 +00:00
}
void MainWindow : : on_statusAndAddressButton_clicked ( )
{
2013-11-20 19:10:33 +00:00
QApplication : : clipboard ( ) - > setText ( this - > myAddress ) ;
2013-11-15 22:04:32 +00:00
}