2017-08-17 15:02:21 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Felix Geyer <debfx@fobos.de>
|
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
|
|
|
*
|
|
|
|
* 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 2 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "DetailsWidget.h"
|
|
|
|
#include "ui_DetailsWidget.h"
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
#include "core/Config.h"
|
|
|
|
#include "core/FilePath.h"
|
|
|
|
#include "core/TimeInfo.h"
|
2017-08-30 18:52:05 -04:00
|
|
|
#include "gui/Clipboard.h"
|
2017-08-17 15:02:21 -04:00
|
|
|
|
|
|
|
DetailsWidget::DetailsWidget(QWidget* parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
, m_ui(new Ui::DetailsWidget())
|
|
|
|
, m_currentEntry(nullptr)
|
|
|
|
, m_currentGroup(nullptr)
|
|
|
|
{
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
|
|
|
connect(parent, SIGNAL(pressedEntry(Entry*)), SLOT(getSelectedEntry(Entry*)));
|
|
|
|
connect(parent, SIGNAL(pressedGroup(Group*)), SLOT(getSelectedGroup(Group*)));
|
|
|
|
|
|
|
|
m_ui->totpButton->setIcon(filePath()->icon("actions", "chronometer"));
|
|
|
|
m_ui->closeButton->setIcon(filePath()->icon("actions", "dialog-close"));
|
|
|
|
|
|
|
|
connect(m_ui->totpButton, SIGNAL(toggled(bool)), SLOT(showTotp(bool)));
|
|
|
|
connect(m_ui->closeButton, SIGNAL(toggled(bool)), SLOT(hideDetails()));
|
|
|
|
|
|
|
|
this->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
DetailsWidget::~DetailsWidget()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void DetailsWidget::getSelectedEntry(Entry* selectedEntry)
|
|
|
|
{
|
|
|
|
m_currentEntry = selectedEntry;
|
|
|
|
|
|
|
|
if (!config()->get("GUI/HideDetailsView").toBool()) {
|
|
|
|
this->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_ui->stackedWidget->setCurrentIndex(EntryPreview);
|
|
|
|
|
|
|
|
m_ui->totpButton->hide();
|
|
|
|
m_ui->totpWidget->hide();
|
|
|
|
m_ui->totpButton->setChecked(false);
|
|
|
|
|
|
|
|
m_ui->entryIcon->setPixmap(m_currentEntry->iconPixmap());
|
|
|
|
|
|
|
|
QString title = " / ";
|
2017-08-30 18:52:05 -04:00
|
|
|
|
|
|
|
Group* entry_group = m_currentEntry->group();
|
|
|
|
if (entry_group) {
|
|
|
|
QStringList hierarchy = entry_group->hierarchy();
|
|
|
|
|
|
|
|
for (QString parent : hierarchy) {
|
|
|
|
title.append(parent);
|
|
|
|
title.append(" / ");
|
|
|
|
}
|
2017-08-17 15:02:21 -04:00
|
|
|
}
|
2017-08-30 18:52:05 -04:00
|
|
|
title.append(m_currentEntry->resolveMultiplePlaceholders(m_currentEntry->title()));
|
2017-08-17 15:02:21 -04:00
|
|
|
m_ui->titleLabel->setText(title);
|
|
|
|
|
2017-08-30 18:52:05 -04:00
|
|
|
m_ui->usernameLabel->setText(m_currentEntry->resolveMultiplePlaceholders(m_currentEntry->username()));
|
|
|
|
if (entry_group) {
|
|
|
|
m_ui->groupLabel->setText(entry_group->name());
|
|
|
|
}
|
|
|
|
m_ui->notesEdit->setText(m_currentEntry->resolveMultiplePlaceholders(m_currentEntry->notes()));
|
2017-08-17 15:02:21 -04:00
|
|
|
|
|
|
|
if (!config()->get("security/hidepassworddetails").toBool()) {
|
2017-08-30 18:52:05 -04:00
|
|
|
m_ui->passwordLabel->setText(shortPassword(m_currentEntry->resolveMultiplePlaceholders(m_currentEntry->password())));
|
|
|
|
m_ui->passwordLabel->setToolTip(m_currentEntry->resolveMultiplePlaceholders(m_currentEntry->password()));
|
2017-08-17 15:02:21 -04:00
|
|
|
} else {
|
2017-08-30 18:52:05 -04:00
|
|
|
m_ui->passwordLabel->setText("****");
|
2017-08-17 15:02:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QString url = m_currentEntry->webUrl();
|
|
|
|
if (url != "") {
|
|
|
|
url = QString("<a href=\"%1\">%2</a>").arg(url).arg(shortUrl(url));
|
|
|
|
m_ui->urlLabel->setOpenExternalLinks(true);
|
|
|
|
} else {
|
|
|
|
url = shortUrl(m_currentEntry->resolveMultiplePlaceholders(m_currentEntry->url()));
|
|
|
|
m_ui->urlLabel->setOpenExternalLinks(false);
|
|
|
|
}
|
|
|
|
m_ui->urlLabel->setText(url);
|
|
|
|
|
|
|
|
TimeInfo entryTime = m_currentEntry->timeInfo();
|
|
|
|
if (entryTime.expires()) {
|
|
|
|
m_ui->expirationLabel->setText(entryTime.expiryTime().toString(Qt::DefaultLocaleShortDate));
|
|
|
|
} else {
|
|
|
|
m_ui->expirationLabel->setText(tr("Never"));
|
|
|
|
}
|
|
|
|
|
|
|
|
m_ui->creationLabel->setText(entryTime.creationTime().toString(Qt::DefaultLocaleShortDate));
|
|
|
|
m_ui->modifyLabel->setText(entryTime.lastModificationTime().toString(Qt::DefaultLocaleShortDate));
|
|
|
|
m_ui->accessLabel->setText(entryTime.lastAccessTime().toString(Qt::DefaultLocaleShortDate));
|
|
|
|
|
|
|
|
if (m_currentEntry->hasTotp()) {
|
|
|
|
m_ui->totpButton->show();
|
|
|
|
updateTotp();
|
|
|
|
|
|
|
|
m_step = m_currentEntry->totpStep();
|
|
|
|
|
|
|
|
m_timer = new QTimer(this);
|
|
|
|
connect(m_timer, SIGNAL(timeout()), this, SLOT(updateTotp()));
|
|
|
|
m_timer->start(m_step * 10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DetailsWidget::getSelectedGroup(Group* selectedGroup)
|
|
|
|
{
|
|
|
|
m_currentGroup = selectedGroup;
|
|
|
|
|
|
|
|
if (!config()->get("GUI/HideDetailsView").toBool()) {
|
|
|
|
this->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_ui->stackedWidget->setCurrentIndex(GroupPreview);
|
|
|
|
|
|
|
|
m_ui->totpButton->hide();
|
|
|
|
m_ui->totpWidget->hide();
|
|
|
|
|
|
|
|
m_ui->entryIcon->setPixmap(m_currentGroup->iconPixmap());
|
|
|
|
|
|
|
|
QStringList hierarchy = m_currentGroup->hierarchy();
|
|
|
|
QString title = " / ";
|
|
|
|
for (QString parent : hierarchy) {
|
|
|
|
title.append(parent);
|
|
|
|
title.append(" / ");
|
|
|
|
}
|
|
|
|
m_ui->titleLabel->setText(title);
|
|
|
|
|
|
|
|
m_ui->notesEdit->setText(m_currentGroup->notes());
|
|
|
|
|
|
|
|
QString searching = tr("Disabled");
|
|
|
|
if (m_currentGroup->resolveSearchingEnabled()) {
|
|
|
|
searching = tr("Enabled");
|
|
|
|
}
|
|
|
|
m_ui->searchingLabel->setText(searching);
|
|
|
|
|
|
|
|
QString autotype = tr("Disabled");
|
|
|
|
if (m_currentGroup->resolveAutoTypeEnabled()) {
|
|
|
|
autotype = tr("Enabled");
|
|
|
|
}
|
|
|
|
m_ui->autotypeLabel->setText(autotype);
|
|
|
|
|
|
|
|
TimeInfo groupTime = m_currentGroup->timeInfo();
|
|
|
|
if (groupTime.expires()) {
|
|
|
|
m_ui->groupExpirationLabel->setText(groupTime.expiryTime().toString(Qt::DefaultLocaleShortDate));
|
|
|
|
} else {
|
|
|
|
m_ui->groupExpirationLabel->setText(tr("Never"));
|
|
|
|
}
|
|
|
|
|
|
|
|
m_ui->groupCreationLabel->setText(groupTime.creationTime().toString(Qt::DefaultLocaleShortDate));
|
|
|
|
m_ui->groupModifyLabel->setText(groupTime.lastModificationTime().toString(Qt::DefaultLocaleShortDate));
|
|
|
|
m_ui->groupAccessLabel->setText(groupTime.lastAccessTime().toString(Qt::DefaultLocaleShortDate));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DetailsWidget::updateTotp()
|
|
|
|
{
|
|
|
|
QString totpCode = m_currentEntry->totp();
|
|
|
|
QString firstHalf = totpCode.left(totpCode.size()/2);
|
|
|
|
QString secondHalf = totpCode.right(totpCode.size()/2);
|
|
|
|
m_ui->totpLabel->setText(firstHalf + " " + secondHalf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DetailsWidget::showTotp(bool visible)
|
|
|
|
{
|
|
|
|
if (visible){
|
|
|
|
m_ui->totpWidget->show();
|
|
|
|
} else {
|
|
|
|
m_ui->totpWidget->hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString DetailsWidget::shortUrl(QString url)
|
|
|
|
{
|
|
|
|
QString newurl = "";
|
|
|
|
if (url.length() > 60) {
|
|
|
|
newurl.append(url.left(20));
|
|
|
|
newurl.append("...");
|
|
|
|
newurl.append(url.right(20));
|
|
|
|
return newurl;
|
|
|
|
}
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
2017-08-30 18:52:05 -04:00
|
|
|
QString DetailsWidget::shortPassword(QString password)
|
2017-08-17 15:02:21 -04:00
|
|
|
{
|
2017-08-30 18:52:05 -04:00
|
|
|
QString newpassword = "";
|
|
|
|
if (password.length() > 60) {
|
|
|
|
newpassword.append(password.left(50));
|
|
|
|
newpassword.append("...");
|
|
|
|
return newpassword;
|
|
|
|
}
|
|
|
|
return password;
|
2017-08-17 15:02:21 -04:00
|
|
|
}
|
|
|
|
|
2017-08-30 18:52:05 -04:00
|
|
|
void DetailsWidget::hideDetails()
|
2017-08-17 15:02:21 -04:00
|
|
|
{
|
2017-08-30 18:52:05 -04:00
|
|
|
this->hide();
|
|
|
|
}
|