mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add command for retrieving the current TOTP (#5278)
This commit is contained in:
parent
a5208959c4
commit
0cc2c83525
4 changed files with 60 additions and 1 deletions
|
@ -215,7 +215,6 @@ QJsonObject BrowserService::getDatabaseGroups()
|
|||
|
||||
QJsonObject BrowserService::createNewGroup(const QString& groupName)
|
||||
{
|
||||
|
||||
auto db = getDatabase();
|
||||
if (!db) {
|
||||
return {};
|
||||
|
@ -284,6 +283,31 @@ QJsonObject BrowserService::createNewGroup(const QString& groupName)
|
|||
return result;
|
||||
}
|
||||
|
||||
QString BrowserService::getCurrentTotp(const QString& uuid)
|
||||
{
|
||||
QList<QSharedPointer<Database>> databases;
|
||||
if (browserSettings()->searchInAllDatabases()) {
|
||||
for (auto dbWidget : getMainWindow()->getOpenDatabases()) {
|
||||
auto db = dbWidget->database();
|
||||
if (db) {
|
||||
databases << db;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
databases << getDatabase();
|
||||
}
|
||||
|
||||
auto entryUuid = Tools::hexToUuid(uuid);
|
||||
for (const auto& db : databases) {
|
||||
auto entry = db->rootGroup()->findEntryByUuid(entryUuid, true);
|
||||
if (entry) {
|
||||
return entry->totp();
|
||||
}
|
||||
}
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
QString BrowserService::storeKey(const QString& key)
|
||||
{
|
||||
auto db = getDatabase();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue