Add command for retrieving the current TOTP (#5278)

This commit is contained in:
Sami Vänttinen 2020-08-17 13:17:58 +03:00 committed by GitHub
parent a5208959c4
commit 0cc2c83525
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 60 additions and 1 deletions

View file

@ -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();