mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
CLI : basic entry manipulation commands. (#919)
* CLI : basic entry manipulation commands. * Code review.
This commit is contained in:
parent
1220b7d501
commit
6e1fd0694f
16 changed files with 661 additions and 9 deletions
|
@ -949,3 +949,32 @@ QStringList Group::locate(QString locateTerm, QString currentPath)
|
|||
|
||||
return response;
|
||||
}
|
||||
|
||||
Entry* Group::addEntryWithPath(QString entryPath)
|
||||
{
|
||||
Q_ASSERT(!entryPath.isNull());
|
||||
if (this->findEntryByPath(entryPath)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
QStringList groups = entryPath.split("/");
|
||||
QString entryTitle = groups.takeLast();
|
||||
QString groupPath = groups.join("/");
|
||||
if (groupPath.isNull()) {
|
||||
groupPath = QString("");
|
||||
}
|
||||
|
||||
Q_ASSERT(!groupPath.isNull());
|
||||
Group* group = this->findGroupByPath(groupPath);
|
||||
if (!group) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
Entry* entry = new Entry();
|
||||
entry->setTitle(entryTitle);
|
||||
entry->setUuid(Uuid::random());
|
||||
entry->setGroup(group);
|
||||
|
||||
return entry;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue