Skip to content
Snippets Groups Projects
Commit 3e9a4534 authored by Sébastien Blin's avatar Sébastien Blin Committed by Adrien Béraud
Browse files

archive_account_manager: fix import from backup

+ The export was incorrect, insert only add new values, but if the
value is not present, it's not updated. We should use the []
operator.
+ The import should use ns uri, not username for nameServer_

Change-Id: I7d271f48ba4fb6392333fd19e0e0f364bf267b48
parent b007fd72
No related branches found
No related tags found
No related merge requests found
......@@ -524,7 +524,7 @@ ArchiveAccountManager::updateArchive(AccountArchive& archive) const
archive.config.emplace(it.first, base64::encode(fileutils::loadFile(it.second)));
} catch (...) {}
} else
archive.config.insert(it);
archive.config[it.first] = it.second;
}
archive.contacts = info_->contacts->getContacts();
}
......@@ -537,7 +537,6 @@ ArchiveAccountManager::saveArchive(AccountArchive& archive, const std::string& p
if (archivePath_.empty())
archivePath_ = "export.gz";
archive.save(fileutils::getFullPath(path_, archivePath_), pwd);
//archiveHasPassword_ = not pwd.empty();
} catch (const std::runtime_error& ex) {
JAMI_ERR("[Auth] Can't export archive: %s", ex.what());
return;
......
......@@ -777,44 +777,6 @@ void JamiAccount::unserialize(const YAML::Node &node)
loadAccount();
}
/*
void
JamiAccount::updateArchive(AccountArchive& archive) const
{
using namespace DRing::Account::ConfProperties;
// Keys not exported to archive
static const auto filtered_keys = { Ringtone::PATH,
ARCHIVE_PATH,
RING_DEVICE_ID,
RING_DEVICE_NAME,
Conf::CONFIG_DHT_PORT };
// Keys with meaning of file path where the contents has to be exported in base64
static const auto encoded_keys = { TLS::CA_LIST_FILE,
TLS::CERTIFICATE_FILE,
TLS::PRIVATE_KEY_FILE };
JAMI_DBG("[Account %s] building account archive", getAccountID().c_str());
for (const auto& it : getAccountDetails()) {
// filter-out?
if (std::any_of(std::begin(filtered_keys), std::end(filtered_keys),
[&](const auto& key){ return key == it.first; }))
continue;
// file contents?
if (std::any_of(std::begin(encoded_keys), std::end(encoded_keys),
[&](const auto& key){ return key == it.first; })) {
try {
archive.config.emplace(it.first, base64::encode(fileutils::loadFile(it.second)));
} catch (...) {}
} else
archive.config.insert(it);
}
archive.contacts = contactList_->getContacts();
}
*/
bool
JamiAccount::changeArchivePassword(const std::string& password_old, const std::string& password_new)
......@@ -1022,7 +984,7 @@ JamiAccount::loadAccount(const std::string& archive_password, const std::string&
if (ringDeviceName_.empty())
ringDeviceName_ = info.deviceId.substr(8);
auto nameServerIt = config.find(DRing::Account::ConfProperties::RingNS::ACCOUNT);
auto nameServerIt = config.find(DRing::Account::ConfProperties::RingNS::URI);
if (nameServerIt != config.end()) {
nameServer_ = nameServerIt->second;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment