2023-02-10 21:32:20 +01:00
# include "mainwindow.h"
# include <QComboBox>
using namespace std ;
bool display = false ;
//extern QDialog Configuration;
extern Ui : : Configuration config ;
extern bool testRsyncReturn ( QProcess * ) ;
QMap < int , QString > rsyncErrorStrings {
{ 0 , QTranslator : : tr ( " Success. The rsync command completed successfully without any errors. " ) } ,
{ 1 , QTranslator : : tr ( " Syntax or usage error. There was a problem with the syntax of the rsync command or with the options specified. " ) } ,
{ 2 , QTranslator : : tr ( " Protocol incompatibility. There was a problem with the protocol version or negotiation between the rsync client and server. " ) } ,
{ 3 , QTranslator : : tr ( " Errors selecting input/output files, dirs. There was a problem with the source or destination file or directory specified in the rsync command. " ) } ,
{ 4 , QTranslator : : tr ( " Requested action not supported: An attempt was made to use an unsupported action or option. " ) } ,
{ 5 , QTranslator : : tr ( " Error starting client-server protocol. There was an error starting the client-server protocol. " ) } ,
{ 6 , QTranslator : : tr ( " Daemon unable to append to log-file. The rsync daemon was unable to write to its log file. " ) } ,
{ 10 , QTranslator : : tr ( " Error in socket I/O. There was an error with the socket input/output. " ) } ,
{ 11 , QTranslator : : tr ( " Error in file I/O. There was an error reading or writing to a file. " ) } ,
{ 12 , QTranslator : : tr ( " Error in rsync protocol data stream. There was an error in the rsync protocol data stream. " ) } ,
{ 13 , QTranslator : : tr ( " Errors with program diagnostics. There was an error generating program diagnostics. " ) } ,
{ 14 , QTranslator : : tr ( " Error in IPC code. There was an error in the inter-process communication (IPC) code. " ) } ,
{ 20 , QTranslator : : tr ( " Received SIGUSR1 or SIGINT. The rsync process was interrupted by a signal. " ) } ,
{ 21 , QTranslator : : tr ( " Some error returned by waitpid(). An error occurred while waiting for a child process to complete. " ) } ,
{ 22 , QTranslator : : tr ( " Error allocating core memory buffers. There was an error allocating memory buffers. " ) } ,
{ 23 , QTranslator : : tr ( " Partial transfer due to error. The rsync command completed with an error, but some files may have been transferred successfully. " ) } ,
{ 24 , QTranslator : : tr ( " Partial transfer due to vanished source files. Some source files disappeared before they could be transferred. " ) }
} ;
MainWindow : : MainWindow ( QWidget * parent )
: QMainWindow ( parent )
, ui ( new Ui : : MainWindow )
{
ui - > setupUi ( this ) ;
QCoreApplication : : setOrganizationName ( " RsyncUI " ) ;
QCoreApplication : : setApplicationName ( " RsyncUI " ) ;
2023-02-10 23:27:44 +01:00
// context menu for treewidget (list of files)
2023-02-10 21:32:20 +01:00
ui - > treeWidget - > addAction ( ui - > actionDownload ) ;
2023-02-10 23:27:44 +01:00
// init configuration window
2023-02-10 21:32:20 +01:00
config . setupUi ( & Configuration ) ;
2023-02-13 16:54:56 +01:00
// init about window
AboutW . setupUi ( & aboutDialog ) ;
2023-02-27 23:48:05 +01:00
//init login dialog
loginD . setupUi ( & loginDialog ) ;
2023-03-01 14:12:38 +01:00
loginD . loginEdit - > setFocus ( ) ;
2023-02-27 23:48:05 +01:00
2023-02-13 16:54:56 +01:00
// text of About
QString aboutText = tr ( " <h2>Client for rsync server</h2> " ) +
" <b> " + tr ( " Version " ) + " : " + this - > about . version + " </b><br> " +
" <b> " + tr ( " Licence " ) + " : " + this - > about . licence + " </b><br> " +
" <b> " + tr ( " Author " ) + " : " + this - > about . author + " </b><br> " +
" <b> " + tr ( " EMail " ) + " : " + this - > about . email + " </b><br> " +
" <b> " + tr ( " Source code " ) + " : " + this - > about . git + " </b><br> " +
tr ( " You click on file to enqueue it, and RyncUI Download one file a time " ) ;
AboutW . TextAbout - > setHtml ( aboutText ) ;
2023-02-10 21:32:20 +01:00
// connectors
2023-02-15 13:49:31 +01:00
connect ( this , & MainWindow : : fileName , ui - > progressBar , & QProgressBar : : setFormat ) ;
2023-02-10 21:32:20 +01:00
connect ( this , & MainWindow : : progressSignal , ui - > progressBar , & QProgressBar : : setValue ) ;
2023-02-22 00:48:16 +01:00
//connect(this, &MainWindow::speed, ui->progressBar, &MainWindow::setDlSpeed);
2023-02-10 21:32:20 +01:00
//connect(this, &MainWindow::errorSignal, this, &MainWindow::downloadingErrorSlot);
connect ( this , & MainWindow : : stopDownloading , this , & MainWindow : : cancelled ) ;
connect ( config . buttonBox , SIGNAL ( accepted ( ) ) , this , SLOT ( on_buttonBox_accepted ( ) ) ) ;
connect ( config . comboBox , QOverload < int > : : of ( & QComboBox : : currentIndexChanged ) , this , & MainWindow : : on_comboBox_currentIndexChanged ) ;
2023-02-27 23:48:05 +01:00
connect ( loginD . loginBox , SIGNAL ( accepted ( ) ) , this , SLOT ( on_loginBox_accepted ( ) ) ) ;
2023-02-10 21:32:20 +01:00
// init of widgets
2023-02-10 23:27:44 +01:00
ui - > ktreewidgetsearchline - > setTreeWidget ( ui - > treeWidget ) ; // attach search widget to treewidget
ui - > ktreewidgetsearchline - > setCaseSensitivity ( Qt : : CaseInsensitive ) ; // and set it case insensitive
ui - > treeWidget - > setHeaderLabels ( { tr ( " Path " ) , tr ( " Type " ) , tr ( " Size " ) } ) ; // set header of columns of tree widget
2023-02-10 21:32:20 +01:00
2023-02-10 23:27:44 +01:00
// setting arrowcursor for treeWidget, listWidget and listDownload to arrow
2023-02-10 21:32:20 +01:00
ui - > treeWidget - > setCursor ( Qt : : ArrowCursor ) ;
ui - > listWidget - > setCursor ( Qt : : ArrowCursor ) ;
ui - > listDownload - > setCursor ( Qt : : ArrowCursor ) ;
// Hiding progress bar
ui - > progressBar - > hide ( ) ;
loadSettings ( ) ;
2023-02-22 00:48:16 +01:00
// if last server exists in settings
if ( this - > settings . contains ( " connexion/lastServer " ) )
{
// set window to precedent server/port configuration
ui - > portEdit - > setText ( this - > settings . value ( " connexion/port " ) . toString ( ) ) ;
ui - > khistorycombobox - > setCurrentText ( this - > settings . value ( " connexion/lastServer " ) . toString ( ) ) ;
} else
{
ui - > portEdit - > setText ( QString : : number ( this - > connexion . port ) ) ;
ui - > khistorycombobox - > clear ( ) ;
}
2023-02-10 21:32:20 +01:00
//setting configuration window
2023-02-10 23:27:44 +01:00
config . comboBox - > setCurrentIndex ( ui - > toolBar - > toolButtonStyle ( ) ) ; // setting combobox to saved settings
//setting unit of bandwidth limit
2023-02-10 21:32:20 +01:00
config . UnitCombobox - > addItems ( { tr ( " KB " ) , tr ( " MB " ) , tr ( " GB " ) , tr ( " TB " ) , tr ( " PB " ) } ) ;
2023-02-15 13:49:31 +01:00
initSystemTrayIcon ( ) ;
}
void MainWindow : : init ( )
{
QAbstractButton * reply ;
QMessageBox msgBox ;
2023-02-10 23:27:44 +01:00
//if exists list of donwloads in saved settings
2023-02-10 21:32:20 +01:00
if ( this - > settings . value ( " Downloads/rows " ) . toInt ( ) ! = 0 )
{
2023-02-10 23:27:44 +01:00
// asking if we load the list and continue downloading
2023-02-10 21:32:20 +01:00
msgBox . setWindowTitle ( " RsyncUI " ) ;
msgBox . setInformativeText ( tr ( " A list of interrupted downloads exists, do you want to continue downloading ? if not the list will be cleared " ) ) ;
QPushButton * yes = msgBox . addButton ( QMessageBox : : Yes ) ;
msgBox . addButton ( QMessageBox : : No ) ;
msgBox . setDefaultButton ( QMessageBox : : Yes ) ;
msgBox . exec ( ) ;
reply = msgBox . clickedButton ( ) ;
2023-02-10 23:27:44 +01:00
// if response is yes then loading list
2023-02-10 21:32:20 +01:00
if ( reply = = yes )
{
loadDownloadList ( ) ;
}
}
2023-02-10 23:27:44 +01:00
// load list of services
2023-02-10 21:32:20 +01:00
populateList ( ) ;
2023-02-12 00:37:50 +01:00
}
void MainWindow : : initSystemTrayIcon ( )
{
QMenu * trayIconMenu ;
QAction * quitAction ;
2023-02-16 21:28:58 +01:00
QIcon icon ;
2023-02-12 00:37:50 +01:00
2023-02-16 21:28:58 +01:00
icon . addFile ( this - > icon ) ;
2023-02-12 00:37:50 +01:00
this - > trayIcon = new QSystemTrayIcon ;
2023-02-16 21:28:58 +01:00
this - > trayIcon - > setIcon ( icon ) ;
2023-02-12 00:37:50 +01:00
quitAction = new QAction ( tr ( " &Quit " ) , this ) ;
connect ( quitAction , & QAction : : triggered , this , & MainWindow : : quitApp ) ;
trayIconMenu = new QMenu ( this ) ;
trayIconMenu - > addAction ( quitAction ) ;
trayIcon - > setContextMenu ( trayIconMenu ) ;
connect ( this - > trayIcon , SIGNAL ( activated ( QSystemTrayIcon : : ActivationReason ) ) , this , SLOT ( on_trayIcon_clicked ( QSystemTrayIcon : : ActivationReason ) ) ) ;
this - > trayIcon - > show ( ) ;
}
void MainWindow : : on_trayIcon_clicked ( QSystemTrayIcon : : ActivationReason reason )
{
if ( reason = = QSystemTrayIcon : : Trigger )
{
if ( this - > isHidden ( ) )
{
this - > show ( ) ;
} else
{
this - > hide ( ) ;
}
}
}
void MainWindow : : hideWindow ( )
{
this - > hide ( ) ;
}
void MainWindow : : showWindow ( )
{
this - > show ( ) ;
2023-02-10 21:32:20 +01:00
}
MainWindow : : ~ MainWindow ( )
{
delete ui ;
2023-02-12 00:37:50 +01:00
QCoreApplication : : quit ( ) ;
2023-02-10 21:32:20 +01:00
}
2023-02-12 00:37:50 +01:00
void MainWindow : : quitApp ( )
2023-02-10 21:32:20 +01:00
{
QMessageBox : : StandardButton reply ;
QMessageBox : : StandardButtons param ;
2023-02-10 23:27:44 +01:00
QString displayText ;
2023-02-10 21:32:20 +01:00
// saving settings
saveSettings ( ) ;
if ( ui - > listDownload - > count ( ) ! = 0 ) // some downloads waiting
{
// Asking for stopping or continuing
param = QMessageBox : : Yes | QMessageBox : : No ;
if ( config . autosaveCheckbox - > checkState ( ) ! = Qt : : Checked )
{
param | = QMessageBox : : Save ;
2023-02-10 23:27:44 +01:00
displayText = tr ( " Clicking Save button, You can save the list of downloads \n " ) ;
2023-02-10 21:32:20 +01:00
}
2023-02-15 13:49:31 +01:00
2023-02-10 21:32:20 +01:00
reply = QMessageBox : : question (
this ,
" RsyncUI " ,
2023-02-10 23:27:44 +01:00
tr ( " Exiting will stop downloading, and will clear the download queue. \n Do you want to exit ? " ) + displayText ,
2023-02-10 21:32:20 +01:00
param ,
QMessageBox : : No ) ;
2023-02-15 13:49:31 +01:00
this - > downloading . quit = true ;
2023-02-12 00:37:50 +01:00
if ( reply = = QMessageBox : : Yes )
2023-02-10 21:32:20 +01:00
{
2023-02-15 13:49:31 +01:00
if ( this - > downloading . process - > state ( ) ! = QProcess : : NotRunning )
{
// emission of signal to downloading thread and stopping
emit ( stopDownloading ( this - > downloading . process ) ) ;
}
} else if ( reply = = QMessageBox : : Save )
2023-02-10 21:32:20 +01:00
{
2023-02-15 13:49:31 +01:00
if ( config . autosaveCheckbox - > checkState ( ) = = Qt : : Unchecked )
{
//saveDownloadList();
emit ( stopDownloading ( this - > downloading . process ) ) ;
}
} else if ( reply = = QMessageBox : : No )
{
return ;
2023-02-10 21:32:20 +01:00
}
}
2023-02-12 00:37:50 +01:00
QCoreApplication : : quit ( ) ;
}
// Close window has been clicked
void MainWindow : : closeEvent ( QCloseEvent * event )
{
QMessageBox msgBox ;
QCheckBox * cb = new QCheckBox ( " Don't show this again ? " ) ;
if ( ! event - > spontaneous ( ) | | ! isVisible ( ) )
return ;
if ( trayIcon - > isVisible ( ) and this - > settings . value ( " CloseCheckbox " ) . toBool ( ) = = false )
{
msgBox . setWindowTitle ( " RsyncUI " ) ;
msgBox . setInformativeText ( tr ( " The program will keep running in the "
" system tray. To terminate the program, "
" choose <b>Quit</b> in the context menu "
" of the system tray entry. " ) ) ;
msgBox . addButton ( QMessageBox : : Ok ) ;
//msgBox.addButton(QMessageBox::No);
// msgBox.setDefaultButton(QMessageBox::Yes);
msgBox . setCheckBox ( cb ) ;
msgBox . exec ( ) ;
2023-02-12 19:11:06 +01:00
msgBox . clickedButton ( ) ;
2023-02-12 00:37:50 +01:00
// if response is yes then loading list
if ( cb - > isChecked ( ) )
{
this - > settings . setValue ( " CloseCheckbox " , true ) ;
}
hide ( ) ;
//event->accept();
event - > ignore ( ) ;
}
2023-02-10 21:32:20 +01:00
}
// Populate treeview with list of files
void MainWindow : : populateTree ( QTreeWidgetItem * parent )
{
QString path ;
// Clear treewidget
ui - > treeWidget - > clear ( ) ;
if ( ! this - > connexion . server . isEmpty ( ) and this - > connexion . port > 0 and this - > connexion . port < 65536 )
{
// setting cursor to "Wait"
QGuiApplication : : setOverrideCursor ( Qt : : WaitCursor ) ;
2023-02-10 23:27:44 +01:00
// validating server's address
2023-02-10 21:32:20 +01:00
if ( validateServer ( this - > connexion . server ) )
{
2023-02-27 23:48:05 +01:00
// server is validated, scanning directory
2023-02-10 21:32:20 +01:00
path = ui - > listWidget - > currentItem ( ) - > text ( ) . section ( ' \n ' , 0 , 0 ) + " / " ;
2023-03-01 14:12:38 +01:00
scanDir ( this - > connexion . server , this - > connexion . port , parent , path ) ;
2023-02-10 21:32:20 +01:00
}
// Restoring cursor
QGuiApplication : : restoreOverrideCursor ( ) ;
}
}
// Populate Listview with list of services
void MainWindow : : populateList ( )
{
QString server ;
int port ;
server = ui - > khistorycombobox - > currentText ( ) ;
port = ui - > portEdit - > text ( ) . toUInt ( ) ;
if ( ( server ! = this - > connexion . server ) or ( port ! = this - > connexion . port ) )
{
// clearing listwidget
ui - > listWidget - > clear ( ) ;
2023-02-10 23:27:44 +01:00
2023-02-10 21:32:20 +01:00
this - > connexion . server = server ;
this - > connexion . port = port ;
2023-02-10 23:27:44 +01:00
// setting cursor to "Wait"
2023-02-10 21:32:20 +01:00
QGuiApplication : : setOverrideCursor ( Qt : : WaitCursor ) ;
// verify if server is in history
this - > settings . beginGroup ( " connexion/server " ) ;
if ( this - > settings . contains ( server ) and this - > connexion . comboboxChanged )
{
// server is in history => setting port value
port = this - > settings . value ( server ) . toUInt ( ) ;
ui - > portEdit - > setText ( QString : : number ( port ) ) ;
this - > connexion . port = port ;
2023-02-10 23:27:44 +01:00
//display list of services
2023-02-10 21:32:20 +01:00
listServices ( ) ;
} else
{
if ( ! server . isEmpty ( ) and ( port > 0 and port < 65536 ) )
{
if ( validateServer ( server ) )
{
cout < < server . toStdString ( ) < < endl ;
2023-02-10 23:27:44 +01:00
2023-02-10 21:32:20 +01:00
// storing serverURL and port in settings
this - > settings . setValue ( server , port ) ;
this - > settings . sync ( ) ;
this - > downloading . server = server ;
// storing in history of combobox
ui - > khistorycombobox - > addToHistory ( server ) ;
// load and display rsync services of the rsync server
listServices ( ) ;
}
}
}
this - > settings . endGroup ( ) ;
2023-02-10 23:27:44 +01:00
QGuiApplication : : restoreOverrideCursor ( ) ; //setting cursor to default
2023-02-10 21:32:20 +01:00
}
}
//list services of the rsync server
void MainWindow : : listServices ( )
{
QString cmd ;
QStringList param ;
QString line ;
QString errorRsync ;
QStringList v ;
QString service ;
QProcess * myProcess ;
bool flag = false ;
cmd = " /usr/bin/rsync " ;
param < < " --contimeout=10 " < < " --port= " + QString : : number ( this - > connexion . port ) < < this - > connexion . server + " :: " ;
myProcess = new QProcess ( this ) ;
myProcess - > start ( cmd , param ) ;
2023-02-10 23:27:44 +01:00
// waiting for response of the server with a timeout of 10 seconds
2023-02-10 21:32:20 +01:00
while ( myProcess - > waitForReadyRead ( 10000 ) )
{
while ( ! flag )
{
line = QString : : fromUtf8 ( myProcess - > readLine ( ) ) ;
2023-02-10 23:27:44 +01:00
// line empty then buffer is empty so returning to wait new datas
2023-02-10 21:32:20 +01:00
if ( line . isEmpty ( ) )
{
flag = true ;
break ;
}
2023-02-10 23:27:44 +01:00
// extracting name and comment of the service
2023-02-10 21:32:20 +01:00
v = line . split ( " \t " ) ;
v [ 0 ] . replace ( " " , " " ) ;
v [ 1 ] . replace ( " \n " , " " ) ;
service = v [ 0 ] + " \n \t " + v [ 1 ] ;
2023-02-10 23:27:44 +01:00
// adding to list of services
2023-02-10 21:32:20 +01:00
ui - > listWidget - > addItem ( service ) ;
}
2023-02-10 23:27:44 +01:00
// buffer empty go to waiting new datas
2023-02-10 21:32:20 +01:00
flag = false ;
}
2023-02-10 23:27:44 +01:00
// verifying error code
2023-02-27 23:48:05 +01:00
testRsyncReturn ( this , myProcess ) ;
myProcess - > close ( ) ;
2023-02-10 21:32:20 +01:00
}
// connect to rsync server to get list of files
2023-03-01 14:12:38 +01:00
bool MainWindow : : scanDir ( QString server , int portN , QTreeWidgetItem * parent , QString path )
2023-02-10 21:32:20 +01:00
{
QString cmd ;
QStringList param ;
QString line ;
QString size ;
QString filename ;
QProcess * myProcess ;
bool isDir = false ;
bool flag = false ;
2023-02-27 23:48:05 +01:00
bool readOk = false ;
2023-02-15 13:49:31 +01:00
int nChild = 0 ;
2023-02-27 23:48:05 +01:00
QProcessEnvironment env = QProcessEnvironment : : systemEnvironment ( ) ;
2023-02-10 21:32:20 +01:00
2023-02-27 23:48:05 +01:00
myProcess = new QProcess ( this ) ;
2023-03-01 14:12:38 +01:00
2023-02-27 23:48:05 +01:00
if ( parent ! = nullptr )
2023-02-15 13:49:31 +01:00
{
nChild = parent - > childCount ( ) ;
}
if ( nChild = = 0 )
{
2023-03-01 14:12:38 +01:00
if ( ! this - > connexion . user . isEmpty ( ) )
{
server . prepend ( this - > connexion . user + " @ " ) ;
env . insert ( " RSYNC_PASSWORD " , this - > connexion . password ) ; // Add an environment variable
} else
{
server . prepend ( " anonymous@ " ) ;
env . insert ( " RSYNC_PASSWORD " , " anonymous " ) ; // Add an environment variable
}
myProcess - > setProcessEnvironment ( env ) ;
2023-02-15 13:49:31 +01:00
cmd = " rsync " ;
param < < " --contimeout=10 " < < " --port= " + QString : : number ( portN ) < < server + " :: " + path ;
2023-02-10 21:32:20 +01:00
2023-02-27 23:48:05 +01:00
2023-02-15 13:49:31 +01:00
myProcess - > start ( cmd , param ) ;
2023-02-10 21:32:20 +01:00
2023-02-27 23:48:05 +01:00
// waiting for response of the server with a timeout of 10 seconds
do
2023-02-10 21:32:20 +01:00
{
2023-03-01 14:12:38 +01:00
readOk = myProcess - > waitForReadyRead ( 10000 ) ;
2023-02-27 23:48:05 +01:00
if ( readOk )
2023-02-10 21:32:20 +01:00
{
2023-02-27 23:48:05 +01:00
while ( ! flag )
2023-02-10 21:32:20 +01:00
{
2023-02-27 23:48:05 +01:00
line = QString : : fromUtf8 ( myProcess - > readLine ( ) ) ;
// line empty then buffer is empty so returning to wait new datas
if ( line . isEmpty ( ) )
{
flag = true ;
break ;
}
// extracting name, size and is dir/file
line = line . simplified ( ) ;
size = line . section ( " " , 1 , 1 ) ;
filename = line . section ( " " , 4 ) ;
if ( filename ! = ' . ' )
{
if ( line [ 0 ] = = " d " )
{
isDir = true ;
} else
{
isDir = false ;
}
if ( parent ! = NULL )
{
//adding item to tree
addTreeChild ( parent , filename , size , isDir ) ;
} else
{
//adding item to tree (as directory)
addTreeRoot ( filename , size , isDir ) ;
}
}
2023-02-10 21:32:20 +01:00
}
2023-02-27 23:48:05 +01:00
flag = false ;
} else
{
if ( myProcess - > state ( ) = = QProcess : : Running )
2023-02-10 21:32:20 +01:00
{
2023-03-01 14:12:38 +01:00
if ( myProcess - > waitForFinished ( 10000 ) = = 0 )
2023-02-15 13:49:31 +01:00
{
2023-02-27 23:48:05 +01:00
QMessageBox : : warning (
this ,
" RsyncUI " ,
2023-03-01 14:12:38 +01:00
tr ( " The processus does'nt respond: " ) + myProcess - > errorString ( ) ) ;
2023-02-15 13:49:31 +01:00
}
2023-02-10 21:32:20 +01:00
}
}
2023-02-27 23:48:05 +01:00
} while ( readOk ) ;
2023-02-15 13:49:31 +01:00
// buffer empty go to waiting new datas
2023-02-27 23:48:05 +01:00
testRsyncReturn ( this , myProcess ) ;
myProcess - > close ( ) ;
2023-02-10 21:32:20 +01:00
}
2023-03-01 14:12:38 +01:00
return 0 ;
2023-02-10 21:32:20 +01:00
}
// Verify if server address is IP address
bool MainWindow : : isIpAddress ( QString server )
{
QStringList r ;
int elementN ;
bool ok ;
r = server . split ( ' . ' ) ;
if ( r . size ( ) = = 4 )
{
for ( auto element : r )
{
elementN = element . toInt ( & ok ) ;
if ( elementN < 0 or elementN > 255 or ok = = false )
{
return false ;
}
}
return true ;
} else
{
return false ;
}
}
// validate address server
bool MainWindow : : validateServer ( QString server )
{
QString cmd ;
QStringList param ;
QString line ;
QProcess * myProcess ;
bool flag = false ;
2023-02-10 23:27:44 +01:00
bool bflag = false ;
2023-02-10 21:32:20 +01:00
cmd = " dig " ;
param < < server ;
myProcess = new QProcess ( this ) ;
myProcess - > start ( cmd , param ) ;
2023-02-10 23:27:44 +01:00
// maiking a dig on the server's address
2023-02-10 21:32:20 +01:00
while ( myProcess - > waitForReadyRead ( ) )
{
2023-02-10 23:27:44 +01:00
while ( ! bflag )
2023-02-10 21:32:20 +01:00
{
2023-02-10 23:27:44 +01:00
line = QString : : fromUtf8 ( myProcess - > readAllStandardOutput ( ) ) ;
// line empty then buffer is empty so returning to wait new datas
if ( line . isEmpty ( ) )
{
bflag = true ;
break ;
} else if ( line . indexOf ( " ;; ANSWER SECTION: " ) ! = - 1 )
{
flag = true ;
}
2023-02-10 21:32:20 +01:00
}
2023-02-10 23:27:44 +01:00
bflag = false ;
2023-02-10 21:32:20 +01:00
}
//testRsyncReturn(myProcess);
if ( flag = = false )
{
2023-02-10 23:27:44 +01:00
//server's address is not valid testing if ip address is valid
2023-02-10 21:32:20 +01:00
flag = isIpAddress ( server ) ;
}
if ( flag = = false )
{
2023-02-10 23:27:44 +01:00
// server-s address not valid
2023-02-10 21:32:20 +01:00
QMessageBox : : warning (
this ,
" RsyncUI " ,
tr ( " server does not exists " )
) ;
}
2023-02-27 23:48:05 +01:00
myProcess - > close ( ) ;
2023-02-10 21:32:20 +01:00
return flag ;
}
// slot activated when combobox is changed
void MainWindow : : on_khistorycombobox_currentIndexChanged ( int i )
{
this - > connexion . comboboxChanged = true ;
populateList ( ) ;
}
// slot activated when button connection is clicked
void MainWindow : : on_connectButton_clicked ( )
{
populateList ( ) ;
}
// add a dir in treeview
QTreeWidgetItem * MainWindow : : addTreeRoot ( QString name , QString fileSize , bool isDir )
{
QTreeWidgetItem * treeItem = new QTreeWidgetItem ( ui - > treeWidget ) ;
if ( isDir = = true )
{
2023-02-10 23:27:44 +01:00
// item is a dir
2023-02-10 21:32:20 +01:00
treeItem - > setText ( 1 , tr ( " Dir " ) ) ;
} else
{
2023-02-10 23:27:44 +01:00
// item is a file
2023-02-10 21:32:20 +01:00
treeItem - > setText ( 1 , tr ( " File " ) ) ;
}
treeItem - > setText ( 0 , name ) ;
treeItem - > setText ( 2 , fileSize ) ;
return treeItem ;
}
// add a file in treeview
QTreeWidgetItem * MainWindow : : addTreeChild ( QTreeWidgetItem * parent , QString name , QString fileSize , bool isDir )
{
QTreeWidgetItem * treeItem = new QTreeWidgetItem ( ) ;
if ( isDir = = true )
{
2023-02-10 23:27:44 +01:00
// item is a dir
2023-02-10 21:32:20 +01:00
treeItem - > setText ( 1 , tr ( " Dir " ) ) ;
} else
{
2023-02-10 23:27:44 +01:00
// item is a file
2023-02-10 21:32:20 +01:00
treeItem - > setText ( 1 , ( " File " ) ) ;
}
treeItem - > setText ( 0 , name ) ;
treeItem - > setText ( 2 , fileSize ) ;
// QTreeWidgetItem::addChild(QTreeWidgetItem * child)
parent - > addChild ( treeItem ) ;
return treeItem ;
}
// Slot acivated when a service in the list is clicked
void MainWindow : : on_listWidget_clicked ( )
{
QString str ;
2023-02-27 23:48:05 +01:00
QStringList logins ;
2023-02-10 21:32:20 +01:00
2023-03-01 14:12:38 +01:00
this - > rescan = true ;
2023-02-27 23:48:05 +01:00
this - > connexion . user = nullptr ;
this - > connexion . password = nullptr ; this - > connexion . service = ui - > listWidget - > currentItem ( ) - > text ( ) . section ( " \n " , 0 , 0 ) ;
2023-02-10 21:32:20 +01:00
str = " Folder/ " + this - > connexion . server + " / " + this - > connexion . service ;
2023-02-10 23:27:44 +01:00
// if service exists in settings for this server
2023-02-10 21:32:20 +01:00
if ( this - > settings . contains ( str ) )
{
2023-02-10 23:27:44 +01:00
// setting savePath from settings
2023-02-10 21:32:20 +01:00
this - > downloading . savePath = this - > settings . value ( str ) . toString ( ) ;
}
2023-02-27 23:48:05 +01:00
this - > settings . beginGroup ( " Passwords/ " + this - > connexion . server + " / " + this - > connexion . service ) ;
logins = this - > settings . allKeys ( ) ;
//TODO choose login
if ( logins . count ( ) ! = 0 )
{
this - > connexion . user = logins [ 0 ] ;
this - > connexion . password = this - > settings . value ( logins [ 0 ] ) . toString ( ) ;
}
this - > settings . endGroup ( ) ;
2023-02-10 21:32:20 +01:00
populateTree ( NULL ) ;
}
2023-03-01 14:12:38 +01:00
// get password and user login
// if object = false ==> searching from connexion object
// else searching from downloading object
bool MainWindow : : getUserPassword ( bool object = false )
2023-02-27 23:48:05 +01:00
{
QStringList logins ;
bool returnValue ;
2023-03-01 14:12:38 +01:00
if ( object = = false )
{
this - > settings . beginGroup ( " Passwords/ " + this - > connexion . server + " / " + this - > connexion . service ) ;
} else
{
this - > settings . beginGroup ( " Passwords/ " + this - > downloading . server + " / " + this - > downloading . service ) ;
}
2023-02-27 23:48:05 +01:00
logins = this - > settings . allKeys ( ) ;
2023-03-01 14:12:38 +01:00
//TODO choose login in case of multiples logins
2023-02-27 23:48:05 +01:00
if ( logins . count ( ) ! = 0 )
{
this - > downloading . user = logins [ 0 ] ;
this - > downloading . password = this - > settings . value ( logins [ 0 ] ) . toString ( ) ;
returnValue = true ;
} else
{
this - > downloading . user = nullptr ;
this - > downloading . password = nullptr ;
returnValue = false ;
}
this - > settings . endGroup ( ) ;
return returnValue ;
}
2023-02-10 21:32:20 +01:00
//Slot activated when a file is clicked in the treeview
void MainWindow : : on_treeWidget_itemClicked ( QTreeWidgetItem * item , bool downloadDir )
{
QFuture < void > future ;
QFileDialog dialog ;
QTreeWidgetItem * itemR ;
QString path ;
QString str ;
2023-02-11 01:14:14 +01:00
QMessageBox : : StandardButton reply ;
2023-02-15 13:49:31 +01:00
int sizeFromRsync ;
2023-02-10 21:32:20 +01:00
itemR = item ;
2023-02-10 23:27:44 +01:00
// assembling path from treewidget
2023-02-10 21:32:20 +01:00
path = item - > text ( 0 ) ;
2023-02-27 23:48:05 +01:00
sizeFromRsync = item - > text ( 2 ) . remove ( ' , ' ) . toUInt ( ) ;
2023-02-11 01:14:14 +01:00
// exists saving path in settings ?
str = " Folder/ " + this - > connexion . server + " / " + this - > connexion . service ;
if ( ! this - > settings . contains ( str ) )
{
// saving path do not exists, asking for it
if ( ! on_DefaultSaveFolder_triggered ( ) )
{
cout < < " no directory selectioned, ignoring download request " ;
return ;
}
2023-02-11 13:40:46 +01:00
} else
{
this - > downloading . savePath = this - > settings . value ( str ) . toString ( ) ;
2023-02-11 01:14:14 +01:00
}
2023-02-10 21:32:20 +01:00
while ( itemR - > parent ( ) ! = NULL )
{
itemR = itemR - > parent ( ) ;
2023-02-10 23:27:44 +01:00
// concatening parent to path
path . prepend ( itemR - > text ( 0 ) + " / " ) ;
2023-02-10 21:32:20 +01:00
} ;
2023-02-27 23:48:05 +01:00
QFileInfo info ( this - > downloading . savePath + " / " + path ) ;
2023-02-10 21:32:20 +01:00
if ( item - > text ( 1 ) = = tr ( " File " ) or downloadDir = = true )
{
// Item is a file
2023-02-11 13:40:46 +01:00
// searching if file exists in savepath
if ( QFile : : exists ( this - > downloading . savePath + " / " + path ) )
{
2023-02-27 23:48:05 +01:00
if ( info . size ( ) < sizeFromRsync )
2023-02-11 13:40:46 +01:00
{
2023-02-15 13:49:31 +01:00
reply = QMessageBox : : question (
this ,
" RsyncUI " ,
tr ( " File is partially downloaded. Do you want to resume download ? if no, the file will be deleted from destination directory " ) ,
QMessageBox : : Yes | QMessageBox : : No | QMessageBox : : Cancel ,
QMessageBox : : Cancel ) ;
if ( reply = = QMessageBox : : Cancel )
{
return ;
} else if ( reply = = QMessageBox : : No )
{
QFile : : remove ( this - > downloading . savePath + " / " + path ) ;
return ;
}
2023-02-11 13:40:46 +01:00
} else
{
2023-02-15 13:49:31 +01:00
reply = QMessageBox : : question (
this ,
" RsyncUI " ,
tr ( " File is already downloaded. Do you want to reload it ? The old file will be deleted " ) ,
QMessageBox : : Yes | QMessageBox : : No ,
QMessageBox : : No ) ;
if ( reply = = QMessageBox : : No )
{
return ;
} else
{
QFile : : remove ( this - > downloading . savePath + " / " + path ) ;
}
2023-02-11 13:40:46 +01:00
}
}
2023-02-10 21:32:20 +01:00
if ( ui - > listDownload - > findItems ( path , Qt : : MatchStartsWith ) . empty ( ) )
{
// is there a downloading process ?
if ( this - > downloading . process = = nullptr )
{
// no downloading process launching it
this - > downloading . path = path ;
this - > downloading . server = this - > connexion . server ;
2023-02-22 00:48:16 +01:00
this - > downloading . port = this - > connexion . port ;
2023-02-10 21:32:20 +01:00
this - > downloading . service = this - > connexion . service ;
startDownloading ( ) ;
2023-02-12 00:37:50 +01:00
// wait 1 second to process start
2023-02-10 21:32:20 +01:00
//sleep(1);
}
// Adding download in download list
str = path + " => " + this - > connexion . server + " / " + this - > connexion . service ;
ui - > listDownload - > addItem ( str ) ;
2023-02-11 13:40:46 +01:00
} else
{
QMessageBox : : warning (
this ,
" RsyncUI " ,
tr ( " File is already downloading " )
) ;
2023-02-10 21:32:20 +01:00
}
} else
{
//Item is a Directory
scanDir ( this - > connexion . server , this - > connexion . port , item , this - > connexion . service + " / " + path + " / " ) ;
item - > setExpanded ( true ) ;
}
if ( config . autosaveCheckbox - > checkState ( ) = = Qt : : Checked )
{
saveDownloadList ( ) ;
}
}
// Launch the thread which download the file
void MainWindow : : startDownloading ( )
{
2023-02-27 23:48:05 +01:00
2023-02-10 21:32:20 +01:00
ui - > progressBar - > setValue ( 0 ) ;
ui - > progressBar - > show ( ) ;
2023-03-01 14:12:38 +01:00
getUserPassword ( false ) ;
2023-02-10 21:32:20 +01:00
//QtConcurrent::run(&this->downloadO, &downloadFile::download, this);
2023-02-15 13:49:31 +01:00
this - > download ( ) ;
2023-02-12 19:11:06 +01:00
this - > trayIcon - > showMessage ( " RsyncUI " , tr ( " Starting downloading \n " ) + this - > downloading . path , QSystemTrayIcon : : Information ) ;
2023-02-10 21:32:20 +01:00
}
// Slot stopping download
void MainWindow : : stoppingDownload ( )
{
emit ( stopDownloading ( this - > downloading . process ) ) ;
}
// when download is finished, launch download of next file in queue
void MainWindow : : downloadFinished ( int exitCode , QProcess : : ExitStatus exitStatus )
{
QString path ;
QString str ;
2023-02-10 23:27:44 +01:00
int pos ;
2023-02-12 19:11:06 +01:00
QString aborted = tr ( " finished " ) ;
2023-02-10 21:32:20 +01:00
2023-02-10 23:27:44 +01:00
// test if process crashed
2023-02-10 21:32:20 +01:00
if ( exitStatus = = QProcess : : CrashExit )
{
QMessageBox : : warning (
NULL ,
" RsyncUI " ,
tr ( " Rsync process crashed " ) ) ;
}
2023-02-10 23:27:44 +01:00
//test result code of command (if 20 then command stopped by user)
2023-02-10 21:32:20 +01:00
if ( exitCode ! = 0 and exitCode ! = 20 )
{
2023-02-10 23:27:44 +01:00
// displaying warning with exit code
2023-02-10 21:32:20 +01:00
QMessageBox : : warning (
NULL ,
" RsyncUI " ,
rsyncErrorStrings [ exitCode ] ) ;
2023-02-12 19:11:06 +01:00
} else if ( exitCode = = 20 )
{
aborted = tr ( " stopped by user " ) ;
2023-02-27 23:48:05 +01:00
} else if ( exitCode = = 5 ) // password asked
{
loginDialog . show ( ) ;
2023-02-10 21:32:20 +01:00
}
2023-02-12 19:11:06 +01:00
this - > trayIcon - > showMessage ( " RsyncUI " , tr ( " Download " ) + aborted + " \n " + this - > downloading . path , QSystemTrayIcon : : Information ) ;
2023-02-10 23:27:44 +01:00
// disconnecting signals to slots
2023-02-10 21:32:20 +01:00
disconnect ( this - > downloading . process , 0 , 0 , 0 ) ;
2023-02-10 23:27:44 +01:00
// reset variables and window
2023-02-27 23:48:05 +01:00
this - > downloading . process - > close ( ) ;
2023-02-10 21:32:20 +01:00
ui - > progressBar - > hide ( ) ;
delete ui - > listDownload - > takeItem ( 0 ) ;
this - > downloading . clear ( ) ;
2023-02-10 23:27:44 +01:00
// Some downloads staying in queue
2023-02-10 21:32:20 +01:00
if ( ui - > listDownload - > count ( ) ! = 0 )
{
2023-02-10 23:27:44 +01:00
// initializing download
2023-02-10 21:32:20 +01:00
path = ui - > listDownload - > item ( 0 ) - > text ( ) ;
pos = path . lastIndexOf ( " / " ) ;
this - > downloading . service = path . midRef ( pos + 1 ) . toString ( ) ;
path . resize ( pos ) ;
pos = path . lastIndexOf ( " => " ) ;
this - > downloading . server = path . midRef ( pos + 4 ) . toString ( ) ;
path . resize ( pos ) ;
this - > downloading . path = path ;
2023-03-01 14:12:38 +01:00
getUserPassword ( true ) ;
2023-02-10 23:27:44 +01:00
2023-02-11 13:40:46 +01:00
// savepath exists in settings ?
2023-02-10 21:32:20 +01:00
str = " Folder/ " + this - > downloading . server + " / " + this - > downloading . service ;
if ( this - > settings . contains ( str ) )
{
2023-02-10 23:27:44 +01:00
// setting savepath from saved settings
2023-02-10 21:32:20 +01:00
this - > downloading . savePath = this - > settings . value ( str ) . toString ( ) ;
2023-02-10 23:27:44 +01:00
startDownloading ( ) ;
2023-02-10 21:32:20 +01:00
} else
{
2023-02-10 23:27:44 +01:00
// no save path
2023-02-10 21:32:20 +01:00
if ( ! on_DefaultSaveFolder_triggered ( ) )
{
cout < < " Error no save path so deleting download " ;
//downloadFinished();
return ;
}
}
}
2023-02-15 13:49:31 +01:00
if ( config . autosaveCheckbox - > checkState ( ) = = Qt : : Checked and this - > downloading . quit = = false )
{
saveDownloadList ( ) ;
}
2023-02-10 21:32:20 +01:00
}
// Slot activated when a line is clicked in queue list
void MainWindow : : on_listDownload_itemClicked ( QListWidgetItem * item )
{
QMessageBox : : StandardButton reply ;
if ( item - > listWidget ( ) - > row ( item ) = = 0 )
{
2023-02-10 23:27:44 +01:00
// first line clicked on download list
reply = QMessageBox : : question (
2023-02-10 21:32:20 +01:00
this ,
" RsyncUI " ,
tr ( " Do you want to stop downloading and delete this file from download queue ? " ) ,
QMessageBox : : Yes | QMessageBox : : No ,
QMessageBox : : No ) ;
if ( reply = = QMessageBox : : Yes )
{
2023-02-10 23:27:44 +01:00
// stopping download
2023-02-10 21:32:20 +01:00
emit ( stopDownloading ( this - > downloading . process ) ) ;
}
} else
{
2023-02-10 23:27:44 +01:00
// not first line on download list
2023-02-10 21:32:20 +01:00
reply = QMessageBox : : question (
this ,
" RsyncUI " ,
tr ( " Do you want to delete this file from download queue ? " ) ,
QMessageBox : : Yes | QMessageBox : : No ,
QMessageBox : : No ) ;
if ( reply = = QMessageBox : : Yes )
{
2023-02-10 23:27:44 +01:00
// removing line from download list
2023-02-10 21:32:20 +01:00
ui - > listDownload - > removeItemWidget ( item ) ;
delete item ;
2023-02-15 13:49:31 +01:00
2023-02-10 21:32:20 +01:00
}
}
2023-02-15 13:49:31 +01:00
if ( config . autosaveCheckbox - > checkState ( ) = = Qt : : Checked )
{
// autosave acivated,so saving download list
saveDownloadList ( ) ;
}
2023-02-10 21:32:20 +01:00
}
// load settings
void MainWindow : : loadSettings ( )
{
// restoring geometry and state of window and widgets
this - > restoreGeometry ( this - > settings . value ( " window/geometry " ) . toByteArray ( ) ) ;
this - > restoreState ( this - > settings . value ( " window/state " ) . toByteArray ( ) ) ;
ui - > treeWidget - > header ( ) - > restoreState ( this - > settings . value ( " treeWidget/state " ) . toByteArray ( ) ) ;
ui - > splitter - > restoreState ( this - > settings . value ( " splitter/state " ) . toByteArray ( ) ) ;
ui - > splitter_2 - > restoreState ( this - > settings . value ( " splitter2/state " ) . toByteArray ( ) ) ;
ui - > toolBar - > setToolButtonStyle ( ( Qt : : ToolButtonStyle ) this - > settings . value ( " toolbar/state " ) . toInt ( ) ) ;
if ( this - > settings . value ( " Autosave " ) . toInt ( ) = = Qt : : Checked )
{
this - > config . autosaveCheckbox - > setChecked ( true ) ;
}
// loading connexion settings
// loading servers history
this - > settings . beginGroup ( " connexion/server " ) ;
QStringList servers = this - > settings . allKeys ( ) ;
this - > settings . endGroup ( ) ;
for ( const QString & server : servers )
{
ui - > khistorycombobox - > addToHistory ( server ) ;
}
// loading save path
this - > downloading . savePath = this - > settings . value ( " Folder " ) . toString ( ) ;
// loading bandwidth limit
this - > connexion . bandwidthLimit = this - > settings . value ( " bandwidthlimit " ) . toUInt ( ) ;
this - > connexion . bandwidthLimitUnit = this - > settings . value ( " bandwidthlimitunit " ) . toInt ( ) ;
}
// save settings
void MainWindow : : saveSettings ( )
{
this - > settings . setValue ( " window/geometry " , saveGeometry ( ) ) ;
this - > settings . setValue ( " window/state " , saveState ( ) ) ;
this - > settings . setValue ( " treeWidget/state " , ui - > treeWidget - > header ( ) - > saveState ( ) ) ;
this - > settings . setValue ( " splitter/state " , ui - > splitter - > saveState ( ) ) ;
this - > settings . setValue ( " splitter2/state " , ui - > splitter_2 - > saveState ( ) ) ;
this - > settings . setValue ( " connexion/lastServer " , this - > connexion . server ) ;
this - > settings . setValue ( " connexion/lastPort " , QString : : number ( this - > connexion . port ) ) ;
this - > settings . setValue ( " toolbar/state " , ui - > toolBar - > toolButtonStyle ( ) ) ;
this - > settings . setValue ( " Autosave " , this - > config . autosaveCheckbox - > checkState ( ) ) ;
this - > settings . sync ( ) ;
}
// About
void MainWindow : : on_actionAbout_triggered ( )
{
2023-02-13 16:54:56 +01:00
aboutDialog . show ( ) ;
2023-02-10 21:32:20 +01:00
}
// About QT
void MainWindow : : on_actionAbout_Qt_triggered ( )
{
QMessageBox : : aboutQt ( this ) ;
}
// Activated when menu "change folder" is clicked
bool MainWindow : : on_DefaultSaveFolder_triggered ( )
{
QFileDialog dialog ;
QString folder ;
QString path ;
2023-02-10 23:27:44 +01:00
// if service not selected display a message
2023-02-10 21:32:20 +01:00
if ( this - > connexion . service . isEmpty ( ) )
{
2023-02-10 23:27:44 +01:00
QMessageBox : : warning (
NULL ,
" RsyncUI " ,
tr ( " Since the save path is linked to service, you need to select a service before you can select a folder " ) ) ;
return false ;
2023-02-10 21:32:20 +01:00
}
2023-02-10 23:27:44 +01:00
// Asking for directory to save files
2023-02-10 21:32:20 +01:00
path = dialog . getExistingDirectory ( this , tr ( " Choose folder where to save file " ) , QDir : : homePath ( ) , QFileDialog : : ShowDirsOnly | QFileDialog : : DontResolveSymlinks ) ;
if ( ! path . isEmpty ( ) )
{
this - > downloading . savePath = path ;
if ( ! this - > connexion . service . isEmpty ( ) and ! this - > connexion . server . isEmpty ( ) )
{
2023-02-10 23:27:44 +01:00
// saving save path in settings
2023-02-10 21:32:20 +01:00
folder = " Folder/ " + this - > connexion . server + " / " + this - > connexion . service ;
this - > settings . setValue ( folder , this - > downloading . savePath ) ;
this - > settings . sync ( ) ;
}
} else
{
return false ;
}
return true ;
}
// Activated when menu "settings" is clicked
void MainWindow : : on_action_Settings_triggered ( )
{
config . UnitCombobox - > setCurrentIndex ( this - > connexion . bandwidthLimitUnit ) ;
config . spinBox - > setValue ( this - > connexion . bandwidthLimit ) ;
Configuration . show ( ) ;
}
// Acivated when "Ok" is clicked in Configuration window
void MainWindow : : on_buttonBox_accepted ( )
{
QString unit ;
QString bw ;
bw = config . spinBox - > text ( ) ;
if ( bw . toInt ( ) = = 0 )
{
2023-02-10 23:27:44 +01:00
// bandwidth = 0
2023-02-10 21:32:20 +01:00
this - > connexion . bandwidthLimit = 0 ;
this - > connexion . bandwidthLimitUnit = 0 ;
} else
{
this - > connexion . bandwidthLimit = config . spinBox - > value ( ) ;
this - > connexion . bandwidthLimitUnit = config . UnitCombobox - > currentIndex ( ) ;
}
this - > settings . setValue ( " bandwidthlimit " , this - > connexion . bandwidthLimit ) ;
this - > settings . setValue ( " bandwidthlimitunit " , this - > connexion . bandwidthLimitUnit ) ;
this - > settings . setValue ( " Autosave " , this - > config . autosaveCheckbox - > checkState ( ) ) ;
this - > settings . sync ( ) ;
Configuration . hide ( ) ;
}
// Saving download list
void MainWindow : : saveDownloadList ( )
{
int nRows ;
2023-02-10 23:27:44 +01:00
// remove list of downloads
2023-02-10 21:32:20 +01:00
this - > settings . remove ( " Downloads/ " ) ;
2023-02-10 23:27:44 +01:00
// Saving list of current downloads
2023-02-10 21:32:20 +01:00
nRows = ui - > listDownload - > count ( ) ;
this - > settings . beginGroup ( " Downloads " ) ;
this - > settings . setValue ( " rows " , nRows ) ;
for ( int i = 0 ; i < nRows ; i + + )
{
this - > settings . setValue ( QString : : number ( i ) , ui - > listDownload - > item ( i ) - > text ( ) ) ;
}
this - > settings . endGroup ( ) ;
this - > settings . sync ( ) ;
}
2023-02-10 23:27:44 +01:00
// Loading download list
2023-02-10 21:32:20 +01:00
void MainWindow : : loadDownloadList ( )
{
QString path ;
QString str ;
int pos ;
2023-02-10 23:27:44 +01:00
this - > settings . sync ( ) ;
2023-02-10 21:32:20 +01:00
this - > settings . beginGroup ( " Downloads " ) ;
int size = this - > settings . value ( " rows " ) . toInt ( ) ;
for ( int i = 0 ; i < size ; + + i )
{
ui - > listDownload - > addItem ( this - > settings . value ( QString : : number ( i ) ) . toString ( ) ) ;
}
this - > settings . endGroup ( ) ;
path = ui - > listDownload - > item ( 0 ) - > text ( ) ;
pos = path . lastIndexOf ( " / " ) ;
this - > downloading . service = path . midRef ( pos + 1 ) . toString ( ) ;
path . resize ( pos ) ;
pos = path . lastIndexOf ( " => " ) ;
this - > downloading . server = path . midRef ( pos + 4 ) . toString ( ) ;
2023-02-22 00:48:16 +01:00
this - > downloading . port = this - > settings . value ( " connexion/server/ " + this - > downloading . server ) . toInt ( ) ;
2023-02-10 21:32:20 +01:00
path . resize ( pos ) ;
this - > downloading . path = path ;
str = " Folder/ " + this - > downloading . server + " / " + this - > downloading . service ;
if ( this - > settings . contains ( str ) )
{
this - > downloading . savePath = this - > settings . value ( str ) . toString ( ) ;
}
startDownloading ( ) ;
}
2023-02-10 23:27:44 +01:00
// clear object downloading
2023-02-10 21:32:20 +01:00
void Downloading : : clear ( )
{
this - > path . clear ( ) ;
this - > server . clear ( ) ;
this - > savePath . clear ( ) ;
this - > service . clear ( ) ;
2023-02-27 23:48:05 +01:00
this - > user . clear ( ) ;
this - > password . clear ( ) ;
this - > port = 0 ;
this - > process = nullptr ;
this - > quit = false ;
2023-02-10 21:32:20 +01:00
}
2023-02-10 23:27:44 +01:00
// Context menu of file list clicked
2023-02-10 21:32:20 +01:00
void MainWindow : : on_actionDownload_triggered ( )
{
// action made in qt-designer and added in init function.
QTreeWidgetItem * item ;
item = ui - > treeWidget - > currentItem ( ) ;
on_treeWidget_itemClicked ( item , true ) ;
}
/*void MainWindow::downloadingErrorSlot(QString errorString)
{
QMessageBox : : warning (
this ,
" RsyncUI " ,
errorString ,
QMessageBox : : Ok ,
QMessageBox : : Ok ) ;
}
*/
2023-02-13 16:54:56 +01:00
// Change toolbar style
2023-02-10 21:32:20 +01:00
void MainWindow : : on_comboBox_currentIndexChanged ( int index )
{
ui - > toolBar - > setToolButtonStyle ( ( Qt : : ToolButtonStyle ) index ) ;
}
2023-02-12 00:37:50 +01:00
void MainWindow : : on_actionExit_triggered ( )
{
quitApp ( ) ;
}
2023-02-22 00:48:16 +01:00
2023-02-27 23:48:05 +01:00
void MainWindow : : on_loginBox_accepted ( )
{
if ( ! loginD . loginEdit - > text ( ) . isEmpty ( ) )
{
this - > connexion . user = loginD . loginEdit - > text ( ) ;
if ( ! loginD . passwordEdit - > text ( ) . isEmpty ( ) )
{
this - > connexion . password = loginD . passwordEdit - > text ( ) ;
this - > settings . setValue ( " Passwords/ " + this - > connexion . server + " / " + this - > connexion . service + " / " + this - > connexion . user , this - > connexion . password ) ;
this - > settings . sync ( ) ;
2023-03-01 14:12:38 +01:00
if ( this - > rescan = = true )
{
this - > rescan = false ;
populateTree ( NULL ) ;
}
2023-02-27 23:48:05 +01:00
}
}
}
2023-02-22 00:48:16 +01:00
void MainWindow : : setDlSpeed ( QString speed )
{
speed . squeeze ( ) ;
}
2023-02-27 23:48:05 +01:00