/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2011 David Rosca * * 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 . * ============================================================ */ #include "autofillmanager.h" #include "ui_autofillmanager.h" AutoFillManager::AutoFillManager(QWidget* parent) : QWidget(parent) , ui(new Ui::AutoFillManager) , m_passwordsShown(false) { 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())); connect(ui->showPasswords, SIGNAL(clicked()), this, SLOT(showPasswords())); connect(ui->removeExcept, SIGNAL(clicked()), this, SLOT(removeExcept())); connect(ui->removeAllExcept, SIGNAL(clicked()), this, SLOT(removeAllExcept())); QTimer::singleShot(0, this, SLOT(loadPasswords())); } void AutoFillManager::loadPasswords() { QSqlQuery query; query.exec("SELECT server, username, password, id FROM autofill"); ui->treePass->clear(); while (query.next()) { QTreeWidgetItem* item = new QTreeWidgetItem(ui->treePass); item->setText(0, query.value(0).toString()); item->setText(1, query.value(1).toString()); item->setText(2, "*****"); item->setWhatsThis(0, query.value(3).toString()); item->setWhatsThis(1, query.value(2).toString()); ui->treePass->addTopLevelItem(item); } query.exec("SELECT server, id FROM autofill_exceptions"); ui->treeExcept->clear(); while (query.next()) { QTreeWidgetItem* item = new QTreeWidgetItem(ui->treeExcept); item->setText(0, query.value(0).toString()); item->setWhatsThis(0, query.value(1).toString()); ui->treeExcept->addTopLevelItem(item); } } void AutoFillManager::showPasswords() { if (m_passwordsShown) { return; } m_passwordsShown = true; int result = QMessageBox::question(this, tr("Show Passwords"), tr("Are you sure that you want to show all passwords?"), QMessageBox::Yes | QMessageBox::No, QMessageBox::No); if (result != QMessageBox::Yes) { return; } for (int i = 0; i < ui->treePass->topLevelItemCount(); i++) { QTreeWidgetItem* item = ui->treePass->topLevelItem(i); if (!item) { continue; } item->setText(2, item->whatsThis(1)); } ui->showPasswords->hide(); delete ui->showPasswordsLayout; } void AutoFillManager::removePass() { QTreeWidgetItem* curItem = ui->treePass->currentItem(); if (!curItem) { return; } QString id = curItem->whatsThis(0); QSqlQuery query; query.exec("DELETE FROM autofill WHERE id=" + id); delete curItem; } void AutoFillManager::removeAllPass() { QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"), tr("Are you sure to delete all passwords on your computer?"), QMessageBox::Yes | QMessageBox::No); if (button != QMessageBox::Yes) { return; } QSqlQuery query; query.exec("DELETE FROM autofill"); ui->treePass->clear(); } void AutoFillManager::editPass() { QTreeWidgetItem* curItem = ui->treePass->currentItem(); if (!curItem) { return; } bool ok; QString text = QInputDialog::getText(this, tr("Edit password"), tr("Change password:"), QLineEdit::Normal, curItem->whatsThis(1), &ok); if (ok && !text.isEmpty()) { QSqlQuery query; query.prepare("SELECT data, password FROM autofill WHERE id=?"); query.addBindValue(curItem->whatsThis(0)); query.exec(); query.next(); QString data = query.value(0).toString(); QString oldPass = "=" + query.value(1).toString(); data.replace(oldPass, "=" + text); 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(); if (m_passwordsShown) { curItem->setText(1, text); } curItem->setWhatsThis(1, text); } } void AutoFillManager::removeExcept() { QTreeWidgetItem* curItem = ui->treeExcept->currentItem(); if (!curItem) { return; } QString id = curItem->whatsThis(0); QSqlQuery query; query.exec("DELETE FROM autofill_exceptions WHERE id=" + id); delete curItem; } void AutoFillManager::removeAllExcept() { QSqlQuery query; query.exec("DELETE FROM autofill_exceptions"); ui->treeExcept->clear(); } void AutoFillManager::showExceptions() { ui->tabWidget->setCurrentIndex(1); } AutoFillManager::~AutoFillManager() { delete ui; }