forked from organicmaps/organicmaps
Log user's auth status after ugc api init.
This commit is contained in:
parent
b2a754117d
commit
6c30c2a754
4 changed files with 16 additions and 14 deletions
|
@ -1314,7 +1314,14 @@ void Framework::InitUGC()
|
|||
{
|
||||
ASSERT(!m_ugcApi.get(), ("InitUGC() must be called only once."));
|
||||
|
||||
m_ugcApi = make_unique<ugc::Api>(m_model.GetIndex());
|
||||
m_ugcApi = make_unique<ugc::Api>(m_model.GetIndex(), [this](size_t numberOfUnsynchronized) {
|
||||
if (numberOfUnsynchronized == 0)
|
||||
return;
|
||||
|
||||
alohalytics::Stats::Instance().LogEvent(
|
||||
"UGC_unsent", {{"num", strings::to_string(numberOfUnsynchronized)},
|
||||
{"is_authenticated", strings::to_string(m_user.IsAuthenticated())}});
|
||||
});
|
||||
}
|
||||
|
||||
void Framework::InitSearchAPI()
|
||||
|
|
|
@ -9,9 +9,13 @@ using namespace ugc;
|
|||
|
||||
namespace ugc
|
||||
{
|
||||
Api::Api(Index const & index) : m_storage(index), m_loader(index)
|
||||
Api::Api(Index const & index, NumberOfUnsynchronizedCallback const & callback)
|
||||
: m_storage(index), m_loader(index)
|
||||
{
|
||||
m_thread.Push([this] { m_storage.Load(); });
|
||||
m_thread.Push([this, callback] {
|
||||
m_storage.Load();
|
||||
callback(m_storage.GetNumberOfUnsynchronized());
|
||||
});
|
||||
}
|
||||
|
||||
void Api::GetUGC(FeatureID const & id, UGCCallbackUnsafe const & callback)
|
||||
|
|
|
@ -22,8 +22,9 @@ public:
|
|||
using UGCCallbackUnsafe = std::function<void(UGC const & ugc, UGCUpdate const & update)>;
|
||||
using UGCJsonToSendCallback = std::function<void(std::string && jsonStr, size_t numberOfUnsynchronized)>;
|
||||
using OnResultCallback = platform::SafeCallback<void(Storage::SettingResult const result)>;
|
||||
using NumberOfUnsynchronizedCallback = std::function<void(size_t number)>;
|
||||
|
||||
explicit Api(Index const & index);
|
||||
Api(Index const & index, NumberOfUnsynchronizedCallback const & callback);
|
||||
|
||||
void GetUGC(FeatureID const & id, UGCCallbackUnsafe const & callback);
|
||||
void SetUGCUpdate(FeatureID const & id, UGCUpdate const & ugc,
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
#include <algorithm>
|
||||
#include <utility>
|
||||
|
||||
#include "3party/Alohalytics/src/alohalytics.h"
|
||||
#include "3party/jansson/myjansson.hpp"
|
||||
|
||||
namespace ugc
|
||||
|
@ -204,20 +203,11 @@ void Storage::Load()
|
|||
return;
|
||||
}
|
||||
|
||||
size_t numberOfUnsynchronized = 0;
|
||||
DeserializeUGCIndex(data, m_UGCIndexes);
|
||||
for (auto const & i : m_UGCIndexes)
|
||||
{
|
||||
if (i.m_deleted)
|
||||
++m_numberOfDeleted;
|
||||
else if (!i.m_synchronized)
|
||||
++numberOfUnsynchronized;
|
||||
}
|
||||
|
||||
if (numberOfUnsynchronized > 1)
|
||||
{
|
||||
alohalytics::Stats::Instance().LogEvent("UGC_unsent",
|
||||
{{"num", strings::to_string(numberOfUnsynchronized)}});
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue