mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Improve CSV export and import capability
* Fixes #3541 * CSV export now includes TOTP settings, Entry Icon (database icon number only), Modified Time, and Created Time. * CSV import properly understands time in ISO 8601 format and Unix Timestamp. * CSV import will set the TOTP settings and entry icon based on the chosen column.
This commit is contained in:
parent
3f7e79cdf3
commit
7ac651763c
7 changed files with 189 additions and 76 deletions
|
@ -465,7 +465,8 @@ void Entry::setTotp(QSharedPointer<Totp::Settings> settings)
|
|||
m_data.totpSettings.reset();
|
||||
} else {
|
||||
m_data.totpSettings = std::move(settings);
|
||||
auto text = Totp::writeSettings(m_data.totpSettings, title(), username());
|
||||
auto text = Totp::writeSettings(
|
||||
m_data.totpSettings, resolveMultiplePlaceholders(title()), resolveMultiplePlaceholders(username()));
|
||||
if (m_data.totpSettings->format != Totp::StorageFormat::LEGACY) {
|
||||
m_attributes->set(Totp::ATTRIBUTE_OTP, text, true);
|
||||
} else {
|
||||
|
@ -493,6 +494,15 @@ QSharedPointer<Totp::Settings> Entry::totpSettings() const
|
|||
return m_data.totpSettings;
|
||||
}
|
||||
|
||||
QString Entry::totpSettingsString() const
|
||||
{
|
||||
if (m_data.totpSettings) {
|
||||
return Totp::writeSettings(
|
||||
m_data.totpSettings, resolveMultiplePlaceholders(title()), resolveMultiplePlaceholders(username()), true);
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
||||
void Entry::setUuid(const QUuid& uuid)
|
||||
{
|
||||
Q_ASSERT(!uuid.isNull());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue