forked from organicmaps/organicmaps
Added offline id for local ads statistics
This commit is contained in:
parent
57db49e6d6
commit
b786d62e64
8 changed files with 119 additions and 0 deletions
|
@ -28,6 +28,16 @@ std::string Platform::UniqueClientId() const
|
|||
return result;
|
||||
}
|
||||
|
||||
string Platform::MacAddress(bool md5Decoded) const
|
||||
{
|
||||
JNIEnv * env = jni::GetEnv();
|
||||
static jmethodID const getMacAddressMethod = jni::GetStaticMethodID(env, g_utilsClazz, "getMacAddress",
|
||||
"(Z)Ljava/lang/String;");
|
||||
jstring const macAddr = static_cast<jstring>(env->CallStaticObjectMethod(g_utilsClazz, getMacAddressMethod,
|
||||
static_cast<jboolean>(md5Decoded)));
|
||||
return jni::ToNativeString(env, macAddr);
|
||||
}
|
||||
|
||||
std::string Platform::GetMemoryInfo() const
|
||||
{
|
||||
JNIEnv * env = jni::GetEnv();
|
||||
|
|
|
@ -10,6 +10,8 @@ import android.content.SharedPreferences;
|
|||
import android.content.pm.PackageManager;
|
||||
import android.content.res.Resources;
|
||||
import android.net.Uri;
|
||||
import android.net.wifi.WifiInfo;
|
||||
import android.net.wifi.WifiManager;
|
||||
import android.os.Build;
|
||||
import android.provider.Settings;
|
||||
import android.support.annotation.DimenRes;
|
||||
|
@ -40,8 +42,12 @@ import com.mapswithme.util.statistics.AlohaHelper;
|
|||
import java.io.Closeable;
|
||||
import java.io.IOException;
|
||||
import java.lang.ref.WeakReference;
|
||||
import java.net.NetworkInterface;
|
||||
import java.security.MessageDigest;
|
||||
import java.text.NumberFormat;
|
||||
import java.util.Collections;
|
||||
import java.util.Currency;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
|
||||
|
@ -313,6 +319,77 @@ public class Utils
|
|||
return installationId;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static String getMacAddress(boolean md5Decoded)
|
||||
{
|
||||
final Context context = MwmApplication.get();
|
||||
byte[] macBytes = null;
|
||||
String address = "";
|
||||
try
|
||||
{
|
||||
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M)
|
||||
{
|
||||
WifiManager manager = (WifiManager) context.getApplicationContext().
|
||||
getSystemService(Context.WIFI_SERVICE);
|
||||
if (manager == null)
|
||||
return "";
|
||||
WifiInfo info = manager.getConnectionInfo();
|
||||
address = info.getMacAddress();
|
||||
macBytes = address.getBytes();
|
||||
}
|
||||
else
|
||||
{
|
||||
List<NetworkInterface> all = Collections.list(NetworkInterface.getNetworkInterfaces());
|
||||
for (NetworkInterface nif : all)
|
||||
{
|
||||
if (!nif.getName().equalsIgnoreCase("wlan0"))
|
||||
continue;
|
||||
|
||||
macBytes = nif.getHardwareAddress();
|
||||
if (macBytes == null)
|
||||
return "";
|
||||
|
||||
StringBuilder result = new StringBuilder();
|
||||
for (int i = 0; i < macBytes.length; i++)
|
||||
{
|
||||
result.append(String.format("%02X", (0xFF & macBytes[i])));
|
||||
if (i + 1 != macBytes.length)
|
||||
result.append(":");
|
||||
}
|
||||
address = result.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception exc)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
return md5Decoded ? decodeMD5(macBytes) : address;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
private static String decodeMD5(@Nullable byte[] bytes)
|
||||
{
|
||||
if (bytes == null || bytes.length == 0)
|
||||
return "";
|
||||
|
||||
try
|
||||
{
|
||||
MessageDigest digest = java.security.MessageDigest.getInstance("MD5");
|
||||
digest.update(bytes);
|
||||
byte[] messageDigest = digest.digest();
|
||||
|
||||
StringBuilder hexString = new StringBuilder();
|
||||
for (int i = 0; i < messageDigest.length; i++)
|
||||
hexString.append(String.format("%02X", (0xFF & messageDigest[i])));
|
||||
return hexString.toString();
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
public static boolean isAppInstalled(@NonNull Context context, @NonNull String packageName)
|
||||
{
|
||||
try
|
||||
|
|
|
@ -197,6 +197,8 @@ std::vector<uint8_t> SerializeForServer(std::list<local_ads::Event> const & even
|
|||
ASSERT(!events.empty(), ());
|
||||
auto root = my::NewJSONObject();
|
||||
ToJSONObject(*root, "userId", userId);
|
||||
static std::string offlineId = GetPlatform().MacAddress(true /* md5Decoded */);
|
||||
ToJSONObject(*root, "offlineId", offlineId);
|
||||
ToJSONObject(*root, "countryId", events.front().m_countryId);
|
||||
ToJSONObject(*root, "mwmVersion", events.front().m_mwmVersion);
|
||||
auto eventsNode = my::NewJSONArray();
|
||||
|
|
|
@ -251,6 +251,8 @@ public:
|
|||
|
||||
std::string UniqueClientId() const;
|
||||
|
||||
std::string MacAddress(bool md5Decoded) const;
|
||||
|
||||
/// @return url for clients to download maps
|
||||
//@{
|
||||
std::string MetaServerUrl() const;
|
||||
|
|
|
@ -124,6 +124,13 @@ int Platform::PreCachingDepth() const { return 2; }
|
|||
|
||||
string Platform::UniqueClientId() const { return [Alohalytics installationId].UTF8String; }
|
||||
|
||||
string Platform::MacAddress(bool md5Decoded) const
|
||||
{
|
||||
// Not implemented.
|
||||
UNUSED_VALUE(md5Decoded);
|
||||
return {};
|
||||
}
|
||||
|
||||
string Platform::GetMemoryInfo() const
|
||||
{
|
||||
struct task_basic_info info;
|
||||
|
|
|
@ -214,6 +214,13 @@ string Platform::UniqueClientId() const
|
|||
return "n0dbus0n0lsb00000000000000000000";
|
||||
}
|
||||
|
||||
string Platform::MacAddress(bool md5Decoded) const
|
||||
{
|
||||
// Not implemented.
|
||||
UNUSED_VALUE(md5Decoded);
|
||||
return {};
|
||||
}
|
||||
|
||||
string Platform::DeviceName() const
|
||||
{
|
||||
return OMIM_OS_NAME;
|
||||
|
|
|
@ -114,6 +114,13 @@ Platform::Platform()
|
|||
|
||||
string Platform::UniqueClientId() const { return [Alohalytics installationId].UTF8String; }
|
||||
|
||||
string Platform::MacAddress(bool md5Decoded) const
|
||||
{
|
||||
// Not implemented.
|
||||
UNUSED_VALUE(md5Decoded);
|
||||
return {};
|
||||
}
|
||||
|
||||
string Platform::DeviceName() const
|
||||
{
|
||||
return OMIM_OS_NAME;
|
||||
|
|
|
@ -136,6 +136,13 @@ string Platform::UniqueClientId() const
|
|||
return "@TODO";
|
||||
}
|
||||
|
||||
string Platform::MacAddress(bool md5Decoded) const
|
||||
{
|
||||
// Not implemented.
|
||||
UNUSED_VALUE(md5Decoded);
|
||||
return {};
|
||||
}
|
||||
|
||||
string Platform::DeviceName() const
|
||||
{
|
||||
return OMIM_OS_NAME;
|
||||
|
|
Loading…
Add table
Reference in a new issue