2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01:00
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-03-02 16:57:41 +01:00
|
|
|
#include "autofillmanager.h"
|
2012-02-06 20:10:50 +01:00
|
|
|
#include "autofillmodel.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
#include "ui_autofillmanager.h"
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QMenu>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QSqlQuery>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QInputDialog>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QFileDialog>
|
|
|
|
|
2011-10-26 19:23:50 +02:00
|
|
|
AutoFillManager::AutoFillManager(QWidget* parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
, ui(new Ui::AutoFillManager)
|
|
|
|
, m_passwordsShown(false)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
|
|
connect(ui->removePass, SIGNAL(clicked()), this, SLOT(removePass()));
|
|
|
|
connect(ui->removeAllPass, SIGNAL(clicked()), this, SLOT(removeAllPass()));
|
|
|
|
connect(ui->editPass, SIGNAL(clicked()), this, SLOT(editPass()));
|
2011-10-26 19:23:50 +02:00
|
|
|
connect(ui->showPasswords, SIGNAL(clicked()), this, SLOT(showPasswords()));
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
connect(ui->removeExcept, SIGNAL(clicked()), this, SLOT(removeExcept()));
|
|
|
|
connect(ui->removeAllExcept, SIGNAL(clicked()), this, SLOT(removeAllExcept()));
|
|
|
|
|
2012-02-06 20:10:50 +01:00
|
|
|
QMenu* menu = new QMenu(this);
|
|
|
|
menu->addAction(tr("Import Passwords from File..."), this, SLOT(importPasswords()));
|
|
|
|
menu->addAction(tr("Export Passwords to File..."), this, SLOT(exportPasswords()));
|
|
|
|
ui->importExport->setMenu(menu);
|
|
|
|
ui->importExport->setPopupMode(QToolButton::InstantPopup);
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
QTimer::singleShot(0, this, SLOT(loadPasswords()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutoFillManager::loadPasswords()
|
|
|
|
{
|
|
|
|
QSqlQuery query;
|
2011-11-20 17:09:10 +01:00
|
|
|
query.exec("SELECT server, username, password, id FROM autofill");
|
2011-03-02 16:57:41 +01:00
|
|
|
ui->treePass->clear();
|
2011-11-06 17:01:23 +01:00
|
|
|
while (query.next()) {
|
2011-03-02 16:57:41 +01:00
|
|
|
QTreeWidgetItem* item = new QTreeWidgetItem(ui->treePass);
|
|
|
|
item->setText(0, query.value(0).toString());
|
2011-11-20 17:09:10 +01:00
|
|
|
item->setText(1, query.value(1).toString());
|
|
|
|
item->setText(2, "*****");
|
|
|
|
item->setWhatsThis(0, query.value(3).toString());
|
|
|
|
item->setWhatsThis(1, query.value(2).toString());
|
2011-03-02 16:57:41 +01:00
|
|
|
ui->treePass->addTopLevelItem(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
query.exec("SELECT server, id FROM autofill_exceptions");
|
|
|
|
ui->treeExcept->clear();
|
2011-11-06 17:01:23 +01:00
|
|
|
while (query.next()) {
|
2011-03-02 16:57:41 +01:00
|
|
|
QTreeWidgetItem* item = new QTreeWidgetItem(ui->treeExcept);
|
|
|
|
item->setText(0, query.value(0).toString());
|
|
|
|
item->setWhatsThis(0, query.value(1).toString());
|
|
|
|
ui->treeExcept->addTopLevelItem(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 19:23:50 +02:00
|
|
|
void AutoFillManager::showPasswords()
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (m_passwordsShown) {
|
2011-11-21 18:24:56 +01:00
|
|
|
for (int i = 0; i < ui->treePass->topLevelItemCount(); i++) {
|
|
|
|
QTreeWidgetItem* item = ui->treePass->topLevelItem(i);
|
|
|
|
if (!item) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
item->setText(2, "*****");
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->showPasswords->setText(tr("Show Passwords"));
|
|
|
|
m_passwordsShown = false;
|
|
|
|
|
2011-10-26 19:23:50 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-11-21 18:24:56 +01:00
|
|
|
|
2011-10-26 19:23:50 +02:00
|
|
|
m_passwordsShown = true;
|
|
|
|
|
|
|
|
int result = QMessageBox::question(this, tr("Show Passwords"), tr("Are you sure that you want to show all passwords?"),
|
2011-11-06 17:01:23 +01:00
|
|
|
QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
|
|
|
|
if (result != QMessageBox::Yes) {
|
2011-10-26 19:23:50 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-26 19:23:50 +02:00
|
|
|
|
|
|
|
for (int i = 0; i < ui->treePass->topLevelItemCount(); i++) {
|
|
|
|
QTreeWidgetItem* item = ui->treePass->topLevelItem(i);
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!item) {
|
2011-10-26 19:23:50 +02:00
|
|
|
continue;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-11-20 17:09:10 +01:00
|
|
|
item->setText(2, item->whatsThis(1));
|
2011-10-26 19:23:50 +02:00
|
|
|
}
|
|
|
|
|
2011-11-21 18:24:56 +01:00
|
|
|
ui->showPasswords->setText(tr("Hide Passwords"));
|
2011-10-26 19:23:50 +02:00
|
|
|
}
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
void AutoFillManager::removePass()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem* curItem = ui->treePass->currentItem();
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!curItem) {
|
2011-03-02 16:57:41 +01:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-26 19:23:50 +02:00
|
|
|
QString id = curItem->whatsThis(0);
|
2011-03-02 16:57:41 +01:00
|
|
|
QSqlQuery query;
|
2011-11-06 17:01:23 +01:00
|
|
|
query.exec("DELETE FROM autofill WHERE id=" + id);
|
2011-10-26 19:23:50 +02:00
|
|
|
|
|
|
|
delete curItem;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AutoFillManager::removeAllPass()
|
|
|
|
{
|
|
|
|
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
2011-11-06 17:01:23 +01:00
|
|
|
tr("Are you sure to delete all passwords on your computer?"), QMessageBox::Yes | QMessageBox::No);
|
|
|
|
if (button != QMessageBox::Yes) {
|
2011-03-02 16:57:41 +01:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
QSqlQuery query;
|
|
|
|
query.exec("DELETE FROM autofill");
|
2011-10-26 19:23:50 +02:00
|
|
|
|
|
|
|
ui->treePass->clear();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AutoFillManager::editPass()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem* curItem = ui->treePass->currentItem();
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!curItem) {
|
2011-03-02 16:57:41 +01:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
bool ok;
|
2011-10-26 19:23:50 +02:00
|
|
|
QString text = QInputDialog::getText(this, tr("Edit password"), tr("Change password:"), QLineEdit::Normal, curItem->whatsThis(1), &ok);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
if (ok && !text.isEmpty()) {
|
|
|
|
QSqlQuery query;
|
2011-10-26 19:23:50 +02:00
|
|
|
query.prepare("SELECT data, password FROM autofill WHERE id=?");
|
|
|
|
query.addBindValue(curItem->whatsThis(0));
|
|
|
|
query.exec();
|
|
|
|
query.next();
|
|
|
|
|
2011-11-26 16:54:44 +01:00
|
|
|
QByteArray data = query.value(0).toByteArray();
|
|
|
|
QByteArray oldPass = "=" + QUrl::toPercentEncoding(query.value(1).toByteArray());
|
2011-12-04 16:54:57 +01:00
|
|
|
data.replace(oldPass, "=" + QUrl::toPercentEncoding(text.toUtf8()));
|
2011-10-26 19:23:50 +02:00
|
|
|
|
|
|
|
query.prepare("UPDATE autofill SET data=?, password=? WHERE id=?");
|
|
|
|
query.bindValue(0, data);
|
|
|
|
query.bindValue(1, text);
|
|
|
|
query.bindValue(2, curItem->whatsThis(0));
|
|
|
|
query.exec();
|
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
if (m_passwordsShown) {
|
2011-10-26 19:23:50 +02:00
|
|
|
curItem->setText(1, text);
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-26 19:23:50 +02:00
|
|
|
curItem->setWhatsThis(1, text);
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutoFillManager::removeExcept()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem* curItem = ui->treeExcept->currentItem();
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!curItem) {
|
2011-03-02 16:57:41 +01:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
QString id = curItem->whatsThis(0);
|
|
|
|
QSqlQuery query;
|
2011-11-06 17:01:23 +01:00
|
|
|
query.exec("DELETE FROM autofill_exceptions WHERE id=" + id);
|
2011-10-26 19:23:50 +02:00
|
|
|
|
|
|
|
delete curItem;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AutoFillManager::removeAllExcept()
|
|
|
|
{
|
|
|
|
QSqlQuery query;
|
|
|
|
query.exec("DELETE FROM autofill_exceptions");
|
2011-10-26 19:23:50 +02:00
|
|
|
|
|
|
|
ui->treeExcept->clear();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AutoFillManager::showExceptions()
|
|
|
|
{
|
|
|
|
ui->tabWidget->setCurrentIndex(1);
|
|
|
|
}
|
|
|
|
|
2012-02-06 20:10:50 +01:00
|
|
|
void AutoFillManager::importPasswords()
|
|
|
|
{
|
|
|
|
const QString &fileName = QFileDialog::getOpenFileName(this, tr("Choose file..."), QDir::homePath() + "/passwords.xml", "*.xml");
|
|
|
|
if (fileName.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFile file(fileName);
|
|
|
|
if (!file.open(QFile::ReadOnly)) {
|
|
|
|
ui->importExportLabel->setText(tr("Cannot read file!"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool status = AutoFillModel::importPasswords(file.readAll());
|
|
|
|
file.close();
|
|
|
|
|
2012-02-06 21:53:31 +01:00
|
|
|
ui->importExportLabel->setText(status ? tr("Successfully imported") : tr("Error while importing!"));
|
2012-02-06 20:10:50 +01:00
|
|
|
loadPasswords();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutoFillManager::exportPasswords()
|
|
|
|
{
|
|
|
|
const QString &fileName = QFileDialog::getSaveFileName(this, tr("Choose file..."), QDir::homePath() + "/passwords.xml", "*.xml");
|
|
|
|
if (fileName.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFile file(fileName);
|
|
|
|
if (!file.open(QFile::WriteOnly)) {
|
|
|
|
ui->importExportLabel->setText(tr("Cannot write to file!"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
file.write(AutoFillModel::exportPasswords());
|
|
|
|
file.close();
|
|
|
|
|
2012-02-06 21:53:31 +01:00
|
|
|
ui->importExportLabel->setText(tr("Successfully exported"));
|
2012-02-06 20:10:50 +01:00
|
|
|
}
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
AutoFillManager::~AutoFillManager()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|