Added caching sensitive info for bookmarks restoring

This commit is contained in:
r.kuznetsov 2018-08-20 17:04:47 +03:00 committed by Daria Volvenkova
parent 850a23b09e
commit ecd47090eb
4 changed files with 46 additions and 1 deletions

View file

@ -276,6 +276,15 @@ void BookmarkCategory::SetAuthor(std::string const & name, std::string const & i
m_data.m_authorId = id;
}
void BookmarkCategory::SetAccessRules(kml::AccessRules accessRules)
{
if (m_data.m_accessRules == accessRules)
return;
SetDirty();
m_data.m_accessRules = accessRules;
}
// static
kml::PredefinedColor BookmarkCategory::GetDefaultColor()
{

View file

@ -89,6 +89,7 @@ public:
std::string GetCatalogDeeplink() const;
void SetAuthor(std::string const & name, std::string const & id);
void SetAccessRules(kml::AccessRules accessRules);
private:
void SetDirty() override;

View file

@ -1536,6 +1536,17 @@ void BookmarkManager::CreateCategories(KMLDataCollection && dataCollection, bool
group->SetFileName(fileName);
group->SetServerId(fileData.m_serverId);
// Restore sensitive info from the cache.
auto const cacheIt = m_restoringCache.find(fileName);
if (cacheIt != m_restoringCache.end() &&
(group->GetServerId().empty() || group->GetServerId() == cacheIt->second.m_serverId) &&
cacheIt->second.m_accessRules != group->GetCategoryData().m_accessRules)
{
group->SetServerId(cacheIt->second.m_serverId);
group->SetAccessRules(cacheIt->second.m_accessRules);
group->EnableAutoSave(autoSave);
}
for (auto & bmData : fileData.m_bookmarksData)
{
auto * bm = CreateBookmark(std::move(bmData));
@ -1552,6 +1563,7 @@ void BookmarkManager::CreateCategories(KMLDataCollection && dataCollection, bool
UserMarkIdStorage::Instance().EnableSaving(true);
}
m_restoringCache.clear();
NotifyChanges();
@ -2010,7 +2022,23 @@ void BookmarkManager::OnRestoreRequested(Cloud::RestoringRequestResult result,
void BookmarkManager::OnRestoredFilesPrepared()
{
// This method is always called from UI-thread.
CHECK_THREAD_CHECKER(m_threadChecker, ());
// Here we save some sensitive info, which must not be lost after restoring.
for (auto groupId : m_bmGroupsIdList)
{
auto * group = GetBmCategory(groupId);
auto const & data = group->GetCategoryData();
if (m_user.GetUserId() == data.m_authorId && !group->GetServerId().empty() &&
data.m_accessRules != kml::AccessRules::Local)
{
RestoringCache cache;
cache.m_serverId = group->GetServerId();
cache.m_accessRules = data.m_accessRules;
m_restoringCache.insert({group->GetFileName(), std::move(cache)});
}
}
ClearCategories();
CheckAndResetLastIds();

View file

@ -541,6 +541,13 @@ private:
OnCatalogImportStartedHandler m_onCatalogImportStarted;
OnCatalogImportFinishedHandler m_onCatalogImportFinished;
struct RestoringCache
{
std::string m_serverId;
kml::AccessRules m_accessRules;
};
std::map<std::string, RestoringCache> m_restoringCache;
bool m_testModeEnabled = false;
DISALLOW_COPY_AND_MOVE(BookmarkManager);