added storing password in a secure way
This commit is contained in:
parent
bc90ce2269
commit
fada0ebeb0
@ -6,11 +6,14 @@ QT += KConfigCore KConfigGui
|
|||||||
QT += KCoreAddons
|
QT += KCoreAddons
|
||||||
QT += KDBusAddons
|
QT += KDBusAddons
|
||||||
|
|
||||||
#LIBS += -lKF5WindowSystem
|
LIBS += -lqt5keychain
|
||||||
|
|
||||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||||
|
|
||||||
CONFIG += c++11
|
CONFIG += c++11
|
||||||
|
|
||||||
|
DEFINES += QTKEYCHAIN_NO_EXPORT
|
||||||
|
|
||||||
# You can make your code fail to compile if it uses deprecated APIs.
|
# You can make your code fail to compile if it uses deprecated APIs.
|
||||||
# In order to do so, uncomment the following line.
|
# In order to do so, uncomment the following line.
|
||||||
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||||||
@ -37,7 +40,8 @@ TRANSLATIONS += \
|
|||||||
RsyncUI_fr_FR.ts
|
RsyncUI_fr_FR.ts
|
||||||
|
|
||||||
INCLUDEPATH += \
|
INCLUDEPATH += \
|
||||||
/usr/include/KF5
|
/usr/include/KF5 \
|
||||||
|
/usr/include/qt5keychain/
|
||||||
|
|
||||||
# Default rules for deployment.
|
# Default rules for deployment.
|
||||||
qnx: target.path = /tmp/$${TARGET}/bin
|
qnx: target.path = /tmp/$${TARGET}/bin
|
||||||
@ -63,3 +67,4 @@ desktopfile.path = /usr/share/applications
|
|||||||
desktopfile.files = RsyncUI.desktop
|
desktopfile.files = RsyncUI.desktop
|
||||||
icon.path = /usr/share/icons/
|
icon.path = /usr/share/icons/
|
||||||
icon.files = RsyncUI.png
|
icon.files = RsyncUI.png
|
||||||
|
-lqt5keychain
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE QtCreatorProject>
|
<!DOCTYPE QtCreatorProject>
|
||||||
<!-- Written by QtCreator 4.14.2, 2023-03-08T15:56:52. -->
|
<!-- Written by QtCreator 4.14.2, 2023-03-09T18:12:22. -->
|
||||||
<qtcreator>
|
<qtcreator>
|
||||||
<data>
|
<data>
|
||||||
<variable>EnvironmentId</variable>
|
<variable>EnvironmentId</variable>
|
||||||
|
3
main.cpp
3
main.cpp
@ -21,6 +21,9 @@ int main(int argc, char *argv[])
|
|||||||
a.installTranslator(&myappTranslator);
|
a.installTranslator(&myappTranslator);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const QString appName = "RsyncUI";
|
||||||
|
|
||||||
|
//Password passwdJob;
|
||||||
MainWindow w;
|
MainWindow w;
|
||||||
w.show();
|
w.show();
|
||||||
w.init();
|
w.init();
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
bool display = false;
|
bool display = false;
|
||||||
//extern QDialog Configuration;
|
|
||||||
extern Ui::Configuration config;
|
extern Ui::Configuration config;
|
||||||
extern bool testRsyncReturn(QProcess *);
|
extern bool testRsyncReturn(QProcess *);
|
||||||
|
extern QApplication a;
|
||||||
|
|
||||||
QMap<int, QString> rsyncErrorStrings {
|
QMap<int, QString> rsyncErrorStrings {
|
||||||
{0, QTranslator::tr("Success. The rsync command completed successfully without any errors.")},
|
{0, QTranslator::tr("Success. The rsync command completed successfully without any errors.")},
|
||||||
@ -38,9 +38,10 @@ MainWindow::MainWindow(QWidget *parent)
|
|||||||
QCoreApplication::setOrganizationName("RsyncUI");
|
QCoreApplication::setOrganizationName("RsyncUI");
|
||||||
QCoreApplication::setApplicationName("RsyncUI");
|
QCoreApplication::setApplicationName("RsyncUI");
|
||||||
|
|
||||||
|
this->setWindowTitle(a.applicationName());
|
||||||
|
|
||||||
// context menu for treewidget (list of files)
|
// context menu for treewidget (list of files)
|
||||||
ui->treeWidget->addAction(ui->actionDownload);
|
ui->treeWidget->addAction(ui->actionDownload);
|
||||||
|
|
||||||
// init configuration window
|
// init configuration window
|
||||||
config.setupUi(&Configuration);
|
config.setupUi(&Configuration);
|
||||||
|
|
||||||
@ -64,8 +65,6 @@ MainWindow::MainWindow(QWidget *parent)
|
|||||||
connect(this, &MainWindow::stopDownloading, this, &MainWindow::cancelled);
|
connect(this, &MainWindow::stopDownloading, this, &MainWindow::cancelled);
|
||||||
connect(config.buttonBox, SIGNAL(accepted()), this, SLOT(on_buttonBox_accepted()));
|
connect(config.buttonBox, SIGNAL(accepted()), this, SLOT(on_buttonBox_accepted()));
|
||||||
connect(config.comboBox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &MainWindow::on_comboBox_currentIndexChanged);
|
connect(config.comboBox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &MainWindow::on_comboBox_currentIndexChanged);
|
||||||
// connect(loginD.loginBox, SIGNAL(accepted()), this, SLOT(on_loginBox_accepted()));
|
|
||||||
// connect(this, SIGNAL(passwordReady()), this, SLOT(waitPasswword()));
|
|
||||||
|
|
||||||
loadSettings();
|
loadSettings();
|
||||||
|
|
||||||
@ -116,7 +115,7 @@ void MainWindow::init()
|
|||||||
if (this->settings.value("Downloads/rows").toInt() != 0)
|
if (this->settings.value("Downloads/rows").toInt() != 0)
|
||||||
{
|
{
|
||||||
// asking if we load the list and continue downloading
|
// asking if we load the list and continue downloading
|
||||||
msgBox.setWindowTitle("RsyncUI");
|
msgBox.setWindowTitle(a.applicationName());
|
||||||
msgBox.setInformativeText(tr("A list of interrupted downloads exists, do you want to continue downloading ? if not the list will be cleared" ));
|
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);
|
QPushButton *yes = msgBox.addButton(QMessageBox::Yes);
|
||||||
@ -133,7 +132,7 @@ void MainWindow::init()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// load list of services
|
// load list of services
|
||||||
populateList();
|
populateList(ui->khistorycombobox->currentIndex());
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::initSystemTrayIcon()
|
void MainWindow::initSystemTrayIcon()
|
||||||
@ -208,7 +207,7 @@ void MainWindow::quitApp()
|
|||||||
|
|
||||||
reply = QMessageBox::question(
|
reply = QMessageBox::question(
|
||||||
this,
|
this,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
tr("Exiting will stop downloading, and will clear the download queue.\nDo you want to exit ?") + displayText,
|
tr("Exiting will stop downloading, and will clear the download queue.\nDo you want to exit ?") + displayText,
|
||||||
param,
|
param,
|
||||||
QMessageBox::No);
|
QMessageBox::No);
|
||||||
@ -246,7 +245,7 @@ void MainWindow::closeEvent (QCloseEvent *event)
|
|||||||
return;
|
return;
|
||||||
if (trayIcon->isVisible() and this->settings.value("CloseCheckbox").toBool() == false)
|
if (trayIcon->isVisible() and this->settings.value("CloseCheckbox").toBool() == false)
|
||||||
{
|
{
|
||||||
msgBox.setWindowTitle("RsyncUI");
|
msgBox.setWindowTitle(a.applicationName());
|
||||||
msgBox.setInformativeText(tr("The program will keep running in the "
|
msgBox.setInformativeText(tr("The program will keep running in the "
|
||||||
"system tray. To terminate the program, "
|
"system tray. To terminate the program, "
|
||||||
"choose <b>Quit</b> in the context menu "
|
"choose <b>Quit</b> in the context menu "
|
||||||
@ -297,7 +296,7 @@ void MainWindow::populateTree()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Populate Listview with list of services
|
// Populate Listview with list of services
|
||||||
void MainWindow::populateList()
|
void MainWindow::populateList(int item)
|
||||||
{
|
{
|
||||||
QString server;
|
QString server;
|
||||||
QString service;
|
QString service;
|
||||||
@ -305,7 +304,7 @@ void MainWindow::populateList()
|
|||||||
int port;
|
int port;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
server = ui->khistorycombobox->currentText();
|
server = ui->khistorycombobox->itemText(item);
|
||||||
port = ui->portEdit->text().toUInt();
|
port = ui->portEdit->text().toUInt();
|
||||||
if ((server != this->connexion.server) or (port != this->connexion.port))
|
if ((server != this->connexion.server) or (port != this->connexion.port))
|
||||||
{
|
{
|
||||||
@ -560,7 +559,8 @@ bool MainWindow::scanDir(QString server, int portN, QTreeWidgetItem *parent, QSt
|
|||||||
addTreeItem(filename, size, fullsize, fileType, date, isDir, parent);
|
addTreeItem(filename, size, fullsize, fileType, date, isDir, parent);
|
||||||
if (passwdOk == false and !this->connexion.password.isEmpty())
|
if (passwdOk == false and !this->connexion.password.isEmpty())
|
||||||
{
|
{
|
||||||
this->settings.setValue("Passwords/" + this->connexion.server + "/" + this->connexion.service + "/" + this->connexion.user, this->connexion.password);
|
this->settings.setValue("Passwords/" + this->connexion.server + "/" + this->connexion.service + "/", this->connexion.user);
|
||||||
|
setPassword(this->connexion.user, this->connexion.password);
|
||||||
this->settings.sync();
|
this->settings.sync();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -574,7 +574,7 @@ bool MainWindow::scanDir(QString server, int portN, QTreeWidgetItem *parent, QSt
|
|||||||
{
|
{
|
||||||
QMessageBox::warning(
|
QMessageBox::warning(
|
||||||
this,
|
this,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
tr("The processus does'nt respond: ") + myProcess->errorString());
|
tr("The processus does'nt respond: ") + myProcess->errorString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -660,7 +660,7 @@ bool MainWindow::validateServer(QString server)
|
|||||||
// server-s address not valid
|
// server-s address not valid
|
||||||
QMessageBox::warning(
|
QMessageBox::warning(
|
||||||
this,
|
this,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
tr("server does not exists" )
|
tr("server does not exists" )
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -669,16 +669,16 @@ bool MainWindow::validateServer(QString server)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// slot activated when combobox is changed
|
// slot activated when combobox is changed
|
||||||
void MainWindow::on_khistorycombobox_currentIndexChanged(int i)
|
void MainWindow::on_khistorycombobox_currentIndexChanged(int item)
|
||||||
{
|
{
|
||||||
this->connexion.comboboxChanged = true;
|
this->connexion.comboboxChanged = true;
|
||||||
populateList();
|
populateList(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
// slot activated when button connection is clicked
|
// slot activated when button connection is clicked
|
||||||
void MainWindow::on_connectButton_clicked()
|
void MainWindow::on_connectButton_clicked()
|
||||||
{
|
{
|
||||||
populateList();
|
populateList(ui->khistorycombobox->currentIndex());
|
||||||
}
|
}
|
||||||
|
|
||||||
// add parent in treeview
|
// add parent in treeview
|
||||||
@ -785,7 +785,7 @@ bool MainWindow::getUserPassword(Connexion * object)
|
|||||||
if (!logins.contains(login))
|
if (!logins.contains(login))
|
||||||
{
|
{
|
||||||
password = QInputDialog::getText(this,
|
password = QInputDialog::getText(this,
|
||||||
tr("RsyncUI Request"),
|
a.applicationName() + tr(" Request"),
|
||||||
tr("Enter password"), QLineEdit::Password,
|
tr("Enter password"), QLineEdit::Password,
|
||||||
"", &ok, Qt::Popup,
|
"", &ok, Qt::Popup,
|
||||||
Qt::ImhNoPredictiveText);
|
Qt::ImhNoPredictiveText);
|
||||||
@ -795,7 +795,7 @@ bool MainWindow::getUserPassword(Connexion * object)
|
|||||||
}
|
}
|
||||||
}else
|
}else
|
||||||
{
|
{
|
||||||
password = this->settings.value(login).toString();
|
password = getPassword(login);
|
||||||
}
|
}
|
||||||
object->user = login;
|
object->user = login;
|
||||||
object->password = password;
|
object->password = password;
|
||||||
@ -803,7 +803,7 @@ bool MainWindow::getUserPassword(Connexion * object)
|
|||||||
}else
|
}else
|
||||||
{
|
{
|
||||||
object->user = logins.at(0);
|
object->user = logins.at(0);
|
||||||
object->password = this->settings.value(object->user).toString();
|
object->password = getPassword(object->user);
|
||||||
returnValue = true;
|
returnValue = true;
|
||||||
}
|
}
|
||||||
this->settings.endGroup();
|
this->settings.endGroup();
|
||||||
@ -862,7 +862,7 @@ void MainWindow::on_treeWidget_itemClicked(QTreeWidgetItem *item, bool downloadD
|
|||||||
{
|
{
|
||||||
reply = QMessageBox::question(
|
reply = QMessageBox::question(
|
||||||
this,
|
this,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
tr("File is partially downloaded. Do you want to resume download ? if no, the file will be deleted from destination directory"),
|
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::Yes|QMessageBox::No|QMessageBox::Cancel,
|
||||||
QMessageBox::Cancel);
|
QMessageBox::Cancel);
|
||||||
@ -879,7 +879,7 @@ void MainWindow::on_treeWidget_itemClicked(QTreeWidgetItem *item, bool downloadD
|
|||||||
{
|
{
|
||||||
reply = QMessageBox::question(
|
reply = QMessageBox::question(
|
||||||
this,
|
this,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
tr("File is already downloaded. Do you want to reload it ? The old file will be deleted"),
|
tr("File is already downloaded. Do you want to reload it ? The old file will be deleted"),
|
||||||
QMessageBox::Yes|QMessageBox::No,
|
QMessageBox::Yes|QMessageBox::No,
|
||||||
QMessageBox::No);
|
QMessageBox::No);
|
||||||
@ -916,7 +916,7 @@ void MainWindow::on_treeWidget_itemClicked(QTreeWidgetItem *item, bool downloadD
|
|||||||
{
|
{
|
||||||
QMessageBox::warning(
|
QMessageBox::warning(
|
||||||
this,
|
this,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
tr("File is already downloading" )
|
tr("File is already downloading" )
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -942,7 +942,7 @@ void MainWindow::startDownloading()
|
|||||||
|
|
||||||
//QtConcurrent::run(&this->downloadO, &downloadFile::download, this);
|
//QtConcurrent::run(&this->downloadO, &downloadFile::download, this);
|
||||||
this->download();
|
this->download();
|
||||||
this->trayIcon->showMessage("RsyncUI", tr("Starting downloading\n") + this->downloading.path, QSystemTrayIcon::Information);
|
this->trayIcon->showMessage(a.applicationName(), tr("Starting downloading\n") + this->downloading.path, QSystemTrayIcon::Information);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Slot stopping download
|
// Slot stopping download
|
||||||
@ -966,7 +966,7 @@ void MainWindow::downloadFinished(int exitCode, QProcess::ExitStatus exitStatus)
|
|||||||
{
|
{
|
||||||
QMessageBox::warning(
|
QMessageBox::warning(
|
||||||
NULL,
|
NULL,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
tr("Rsync process crashed"));
|
tr("Rsync process crashed"));
|
||||||
}
|
}
|
||||||
//test result code of command (if 20 then command stopped by user)
|
//test result code of command (if 20 then command stopped by user)
|
||||||
@ -984,7 +984,7 @@ void MainWindow::downloadFinished(int exitCode, QProcess::ExitStatus exitStatus)
|
|||||||
// displaying warning with exit code
|
// displaying warning with exit code
|
||||||
reply = QMessageBox::warning(
|
reply = QMessageBox::warning(
|
||||||
this,
|
this,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
rsyncErrorStrings[exitCode] + tr("\nDo you want to retry?"),
|
rsyncErrorStrings[exitCode] + tr("\nDo you want to retry?"),
|
||||||
QMessageBox::Yes|QMessageBox::No,
|
QMessageBox::Yes|QMessageBox::No,
|
||||||
QMessageBox::Yes);
|
QMessageBox::Yes);
|
||||||
@ -994,7 +994,7 @@ void MainWindow::downloadFinished(int exitCode, QProcess::ExitStatus exitStatus)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this->trayIcon->showMessage("RsyncUI", tr("Download ") + aborted + "\n" + this->downloading.path, QSystemTrayIcon::Information);
|
this->trayIcon->showMessage(a.applicationName(), tr("Download ") + aborted + "\n" + this->downloading.path, QSystemTrayIcon::Information);
|
||||||
|
|
||||||
// disconnecting signals to slots
|
// disconnecting signals to slots
|
||||||
disconnect(this->downloading.process, 0, 0, 0);
|
disconnect(this->downloading.process, 0, 0, 0);
|
||||||
@ -1031,14 +1031,14 @@ void MainWindow::downloadFinished(int exitCode, QProcess::ExitStatus exitStatus)
|
|||||||
{
|
{
|
||||||
// setting savepath from saved settings
|
// setting savepath from saved settings
|
||||||
this->downloading.savePath = this->settings.value(str).toString();
|
this->downloading.savePath = this->settings.value(str).toString();
|
||||||
|
sleep(2);
|
||||||
startDownloading();
|
startDownloading();
|
||||||
}else
|
}else
|
||||||
{
|
{
|
||||||
// no save path
|
// no save path
|
||||||
if(!on_DefaultSaveFolder_triggered())
|
if(!on_DefaultSaveFolder_triggered())
|
||||||
{
|
{
|
||||||
cout << "Error no save path so deleting download";
|
cout << "Error no save path so removing download";
|
||||||
//downloadFinished();
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1060,7 +1060,7 @@ void MainWindow::on_listDownload_itemClicked(QListWidgetItem *item)
|
|||||||
// first line clicked on download list
|
// first line clicked on download list
|
||||||
reply = QMessageBox::question(
|
reply = QMessageBox::question(
|
||||||
this,
|
this,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
tr("Do you want to stop downloading and delete this file from download queue ?"),
|
tr("Do you want to stop downloading and delete this file from download queue ?"),
|
||||||
QMessageBox::Yes|QMessageBox::No,
|
QMessageBox::Yes|QMessageBox::No,
|
||||||
QMessageBox::No);
|
QMessageBox::No);
|
||||||
@ -1074,7 +1074,7 @@ void MainWindow::on_listDownload_itemClicked(QListWidgetItem *item)
|
|||||||
// not first line on download list
|
// not first line on download list
|
||||||
reply = QMessageBox::question(
|
reply = QMessageBox::question(
|
||||||
this,
|
this,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
tr("Do you want to delete this file from download queue ?"),
|
tr("Do you want to delete this file from download queue ?"),
|
||||||
QMessageBox::Yes|QMessageBox::No,
|
QMessageBox::Yes|QMessageBox::No,
|
||||||
QMessageBox::No);
|
QMessageBox::No);
|
||||||
@ -1164,7 +1164,7 @@ bool MainWindow::on_DefaultSaveFolder_triggered()
|
|||||||
{
|
{
|
||||||
QMessageBox::warning(
|
QMessageBox::warning(
|
||||||
NULL,
|
NULL,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
tr("Since the save path is linked to service, you need to select a service before you can select a folder"));
|
tr("Since the save path is linked to service, you need to select a service before you can select a folder"));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -1302,7 +1302,7 @@ void MainWindow::on_actionDownload_triggered()
|
|||||||
{
|
{
|
||||||
QMessageBox::warning(
|
QMessageBox::warning(
|
||||||
this,
|
this,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
errorString,
|
errorString,
|
||||||
QMessageBox::Ok,
|
QMessageBox::Ok,
|
||||||
QMessageBox::Ok);
|
QMessageBox::Ok);
|
||||||
@ -1320,34 +1320,6 @@ void MainWindow::on_actionExit_triggered()
|
|||||||
quitApp();
|
quitApp();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_loginBox_accepted()
|
|
||||||
{
|
|
||||||
/*Connexion * conn = this->passwordConnexion;
|
|
||||||
|
|
||||||
if (!loginD.loginEdit->currentText().isEmpty())
|
|
||||||
{
|
|
||||||
QString path;
|
|
||||||
conn->user = loginD.loginEdit->currentText();
|
|
||||||
path = "Passwords/" + conn->server + "/" + conn->service + "/" + conn->user;
|
|
||||||
|
|
||||||
if (!loginD.passwordEdit->text().isEmpty())
|
|
||||||
{
|
|
||||||
conn->password = loginD.passwordEdit->text();
|
|
||||||
this->settings.setValue("Passwords/" + conn->server + "/" + conn->service + "/" + conn->user, conn->password);
|
|
||||||
this->settings.sync();
|
|
||||||
if (this->rescan == true)
|
|
||||||
{
|
|
||||||
this->rescan = false;
|
|
||||||
populateTree();
|
|
||||||
}
|
|
||||||
}else if (this->settings.contains(path))
|
|
||||||
{
|
|
||||||
conn->password = this->settings.value(path).toString();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
emit passwordReady();*/
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWindow::setDlSpeed(QString speed)
|
void MainWindow::setDlSpeed(QString speed)
|
||||||
{
|
{
|
||||||
speed.squeeze();
|
speed.squeeze();
|
||||||
@ -1358,7 +1330,7 @@ void MainWindow::on_actionHiddenService_triggered()
|
|||||||
QInputDialog hiddenFolderDialog;
|
QInputDialog hiddenFolderDialog;
|
||||||
|
|
||||||
bool ok;
|
bool ok;
|
||||||
QString text = QInputDialog::getText(this, tr("RsyncUI Request"),
|
QString text = QInputDialog::getText(this, a.applicationName() + tr(" Request"),
|
||||||
tr("Hidden service name"), QLineEdit::Normal,
|
tr("Hidden service name"), QLineEdit::Normal,
|
||||||
"test", &ok);
|
"test", &ok);
|
||||||
if (ok && !text.isEmpty())
|
if (ok && !text.isEmpty())
|
||||||
|
12
mainwindow.h
12
mainwindow.h
@ -7,6 +7,7 @@
|
|||||||
#include "ui_about.h"
|
#include "ui_about.h"
|
||||||
#include "downloadfile.h"
|
#include "downloadfile.h"
|
||||||
#include "tools.h"
|
#include "tools.h"
|
||||||
|
#include "password.h"
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <QTreeWidgetItem>
|
#include <QTreeWidgetItem>
|
||||||
@ -89,7 +90,6 @@ class Downloading
|
|||||||
class About
|
class About
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
QString title = "RsyncUI";
|
|
||||||
QString version = "2.9.2";
|
QString version = "2.9.2";
|
||||||
QString author = "Daniel TARTAVEL-JEANNOT";
|
QString author = "Daniel TARTAVEL-JEANNOT";
|
||||||
QString licence = "GPL_V3";
|
QString licence = "GPL_V3";
|
||||||
@ -106,6 +106,7 @@ class MainWindow : public QMainWindow
|
|||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
MainWindow(QWidget *parent = nullptr);
|
MainWindow(QWidget *parent = nullptr);
|
||||||
~MainWindow();
|
~MainWindow();
|
||||||
|
// passwdManager;
|
||||||
QProgressDialog *progress;
|
QProgressDialog *progress;
|
||||||
Connexion connexion;
|
Connexion connexion;
|
||||||
Connexion downloading;
|
Connexion downloading;
|
||||||
@ -119,7 +120,6 @@ class MainWindow : public QMainWindow
|
|||||||
QSystemTrayIcon * trayIcon;
|
QSystemTrayIcon * trayIcon;
|
||||||
QString icon = "/usr/share/icons/RsyncUI.png";
|
QString icon = "/usr/share/icons/RsyncUI.png";
|
||||||
bool rescan = false;
|
bool rescan = false;
|
||||||
bool passwordReturned;
|
|
||||||
|
|
||||||
QList<QString> UnitText {
|
QList<QString> UnitText {
|
||||||
tr("B"),
|
tr("B"),
|
||||||
@ -149,7 +149,7 @@ class MainWindow : public QMainWindow
|
|||||||
|
|
||||||
void displayTree();
|
void displayTree();
|
||||||
void populateTree();
|
void populateTree();
|
||||||
void populateList();
|
void populateList(int);
|
||||||
void listServices();
|
void listServices();
|
||||||
bool validateServer(QString server);
|
bool validateServer(QString server);
|
||||||
bool isIpAddress(QString server);
|
bool isIpAddress(QString server);
|
||||||
@ -169,6 +169,8 @@ class MainWindow : public QMainWindow
|
|||||||
bool getUserPassword(Connexion *);
|
bool getUserPassword(Connexion *);
|
||||||
void preparePopulateTree();
|
void preparePopulateTree();
|
||||||
bool testServicePresence(QString, bool=false);
|
bool testServicePresence(QString, bool=false);
|
||||||
|
void passwordStore (QString account, QString password);
|
||||||
|
QString passwordGet (QString account);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
|
||||||
@ -214,11 +216,9 @@ class MainWindow : public QMainWindow
|
|||||||
|
|
||||||
void setDlSpeed(QString speed);
|
void setDlSpeed(QString speed);
|
||||||
|
|
||||||
void on_loginBox_accepted();
|
|
||||||
|
|
||||||
void on_actionHiddenService_triggered();
|
void on_actionHiddenService_triggered();
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void stopDownloading(QProcess *);
|
void stopDownloading(QProcess *);
|
||||||
void progressSignal(int);
|
void progressSignal(int);
|
||||||
void speed(QString);
|
void speed(QString);
|
||||||
|
82
password.cpp
82
password.cpp
@ -2,58 +2,54 @@
|
|||||||
#include "password.h"
|
#include "password.h"
|
||||||
#include <qt5keychain/keychain.h>
|
#include <qt5keychain/keychain.h>
|
||||||
#include <qt5keychain/qkeychain_export.h>
|
#include <qt5keychain/qkeychain_export.h>
|
||||||
|
#include <QSettings>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
extern QApplication a;
|
||||||
|
|
||||||
/*Password::Password()
|
QString appName = "RsyncUI";
|
||||||
|
|
||||||
|
static QSettings sett{appName, appName};
|
||||||
|
|
||||||
|
void setPassword(QString account, QString pass)
|
||||||
{
|
{
|
||||||
this->passwdJob->setObjectName(this->appName);
|
QKeychain::WritePasswordJob write(appName);
|
||||||
this->passwdJob->setAutoDelete(false);
|
write.setSettings(&sett);
|
||||||
this->passwdJob->connect(this->passwdJob, SIGNAL(finished(QKeychain::Job*)), this, SLOT(finished(QKeychain::Job*)));
|
// write.setAutoDelete(false);
|
||||||
//this->readPass->connect(this->readPass, SIGNAL(finished()))
|
write.setKey(account);
|
||||||
|
write.setTextData(pass);
|
||||||
|
|
||||||
|
QEventLoop loop;
|
||||||
|
write.connect(&write, &QKeychain::WritePasswordJob::finished, &loop, &QEventLoop::quit);
|
||||||
|
|
||||||
|
write.start();
|
||||||
|
loop.exec();
|
||||||
|
|
||||||
|
if(write.error())
|
||||||
|
cout << "Error writing key1. Error: " << write.errorString().toStdString();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Password::store (QString account, QString password)
|
QString getPassword(const QString& name)
|
||||||
{
|
{
|
||||||
this->passwdJob->setKey(account);
|
QKeychain::ReadPasswordJob readPass(appName);
|
||||||
this->passwdJob->setTextData(password);
|
readPass.setSettings(&sett);
|
||||||
this->passwdJob->start();
|
// readPass.setAutoDelete(false);
|
||||||
}
|
readPass.setKey(name);
|
||||||
|
|
||||||
QString Password::read(QString account)
|
QEventLoop loop;
|
||||||
{
|
readPass.connect(&readPass, &QKeychain::ReadPasswordJob::finished, &loop, &QEventLoop::quit);
|
||||||
this->readPass->setObjectName("");
|
|
||||||
this->readPass->setKey(account);
|
|
||||||
this->readPass->start();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Password::remove(QString)
|
readPass.start();
|
||||||
{
|
loop.exec();
|
||||||
|
|
||||||
|
if(readPass.error())
|
||||||
}
|
{
|
||||||
|
qDebug()<<"KeyHandler~Error reading decrypt Pass. Error: " + readPass.errorString();
|
||||||
void Password::finished(QKeychain::Job * passwdJob)
|
return "";
|
||||||
{
|
}
|
||||||
if(passwdJob->error()) {
|
else
|
||||||
QMessageBox::warning(
|
{
|
||||||
NULL,
|
QString data = readPass.textData();
|
||||||
"RsyncUI",
|
return data;
|
||||||
QString(this->mw->tr("Error: Unable to save password!")) + QString(passwdJob->error()));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Password::readReturn()
|
|
||||||
{
|
|
||||||
if(this->readPass->error())
|
|
||||||
{
|
|
||||||
QMessageBox::warning(
|
|
||||||
NULL,
|
|
||||||
"RsyncUI",
|
|
||||||
QString(this->mw->tr("Error: Unable to read password!")) + QString(readPass->error()));
|
|
||||||
}else
|
|
||||||
{
|
|
||||||
this->password = readPass->textData();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
14
password.h
14
password.h
@ -5,7 +5,12 @@
|
|||||||
#include <qt5keychain/keychain.h>
|
#include <qt5keychain/keychain.h>
|
||||||
#include <qt5keychain/qkeychain_export.h>
|
#include <qt5keychain/qkeychain_export.h>
|
||||||
|
|
||||||
class Password : QObject
|
extern QApplication a;
|
||||||
|
|
||||||
|
void setPassword(QString account, QString pass);
|
||||||
|
QString getPassword(const QString& name);
|
||||||
|
|
||||||
|
/*class Password : QObject
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
QString appName;
|
QString appName;
|
||||||
@ -13,6 +18,7 @@ class Password : QObject
|
|||||||
QKeychain::ReadPasswordJob * readPass;
|
QKeychain::ReadPasswordJob * readPass;
|
||||||
MainWindow * mw;
|
MainWindow * mw;
|
||||||
QString password;
|
QString password;
|
||||||
|
QSettings passwdSettings{a.applicationName(),a.applicationName()};
|
||||||
|
|
||||||
Password();
|
Password();
|
||||||
~Password();
|
~Password();
|
||||||
@ -22,8 +28,8 @@ class Password : QObject
|
|||||||
bool remove(QString);
|
bool remove(QString);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void finished(QKeychain::Job*);
|
void storeFinished();
|
||||||
void readReturn();
|
void readFinished();
|
||||||
};
|
};*/
|
||||||
|
|
||||||
#endif // PASSWORD_H
|
#endif // PASSWORD_H
|
||||||
|
@ -6,6 +6,7 @@ using namespace std;
|
|||||||
#define WRITE 1
|
#define WRITE 1
|
||||||
|
|
||||||
extern QMap<int, QString> rsyncErrorStrings;
|
extern QMap<int, QString> rsyncErrorStrings;
|
||||||
|
extern QApplication a;
|
||||||
|
|
||||||
//Take a string and explode it in array
|
//Take a string and explode it in array
|
||||||
// s => string to explode
|
// s => string to explode
|
||||||
@ -51,7 +52,7 @@ bool testRsyncReturn(MainWindow * w, QProcess * myProcess)
|
|||||||
{
|
{
|
||||||
QMessageBox::warning(
|
QMessageBox::warning(
|
||||||
w,
|
w,
|
||||||
"RsyncUI",
|
a.applicationName(),
|
||||||
myProcess->errorString(),
|
myProcess->errorString(),
|
||||||
QMessageBox::Ok,
|
QMessageBox::Ok,
|
||||||
QMessageBox::Ok);
|
QMessageBox::Ok);
|
||||||
|
Loading…
Reference in New Issue
Block a user