mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Add delete-entry command to Browser Integration API
This commit is contained in:
parent
e3c7b570ae
commit
4c10e516c3
8 changed files with 116 additions and 9 deletions
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* Copyright (C) 2013 Francois Ferrand
|
||||
* Copyright (C) 2017 Sami Vänttinen <sami.vanttinen@protonmail.com>
|
||||
* Copyright (C) 2020 KeePassXC Team <team@keepassxc.org>
|
||||
* Copyright (C) 2021 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
|
||||
|
@ -578,6 +578,32 @@ bool BrowserService::updateEntry(const QString& dbid,
|
|||
return result;
|
||||
}
|
||||
|
||||
bool BrowserService::deleteEntry(const QString& uuid)
|
||||
{
|
||||
auto db = selectedDatabase();
|
||||
if (!db) {
|
||||
return false;
|
||||
}
|
||||
|
||||
auto* entry = db->rootGroup()->findEntryByUuid(Tools::hexToUuid(uuid));
|
||||
if (!entry) {
|
||||
return false;
|
||||
}
|
||||
|
||||
auto dialogResult = MessageBox::warning(nullptr,
|
||||
tr("KeePassXC: Delete entry"),
|
||||
tr("A request for deleting entry \"%1\" has been received.\n"
|
||||
"Do you want to delete the entry?\n")
|
||||
.arg(entry->title()),
|
||||
MessageBox::Yes | MessageBox::No);
|
||||
if (dialogResult != MessageBox::Yes) {
|
||||
return false;
|
||||
}
|
||||
|
||||
db->recycleEntry(entry);
|
||||
return true;
|
||||
}
|
||||
|
||||
QList<Entry*>
|
||||
BrowserService::searchEntries(const QSharedPointer<Database>& db, const QString& siteUrlStr, const QString& formUrlStr)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue