wangguan
2020-11-23 e70a047e1d3a3b476212d49714264cf6871cd9fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
using UnityEngine;
using System.Collections.Generic;
#if UNITY_ANDROID
using System;
#endif
#if UNITY_IPHONE
using System.Runtime.InteropServices;
using System.Collections;
#endif
 
 
public enum TalkingDataAccountType
{
    ANONYMOUS = 0,
    REGISTERED = 1,
    SINA_WEIBO = 2,
    QQ = 3,
    QQ_WEIBO = 4,
    ND91 = 5,
    WEIXIN = 6,
    TYPE1 = 11,
    TYPE2 = 12,
    TYPE3 = 13,
    TYPE4 = 14,
    TYPE5 = 15,
    TYPE6 = 16,
    TYPE7 = 17,
    TYPE8 = 18,
    TYPE9 = 19,
    TYPE10 = 20
}
 
 
public static class TalkingDataPlugin
{
#if UNITY_ANDROID
    private static readonly string APP_ANALYTICS_CLASS = "com.tendcloud.tenddata.TCAgent";
    private static AndroidJavaClass appAnalyticsClass;
    private static AndroidJavaClass unityPlayerClass;
#endif
 
#if UNITY_IPHONE
    [DllImport("__Internal")]
    private static extern string TDAAGetDeviceId();
 
    [DllImport("__Internal")]
    private static extern void TDAASetLogEnabled(bool enable);
 
    [DllImport("__Internal")]
    private static extern void TDAABackgroundSessionEnabled();
 
    [DllImport("__Internal")]
    private static extern void TDAASessionStarted(string appId, string channelId);
 
    [DllImport("__Internal")]
    private static extern void TDAASetExceptionReportEnabled(bool enable);
 
    [DllImport("__Internal")]
    private static extern void TDAASetLocation(double latitude, double longitude);
 
    [DllImport("__Internal")]
    private static extern void TDAAOnRegister(string accountId, int type, string name);
 
    [DllImport("__Internal")]
    private static extern void TDAAOnLogin(string accountId, int type, string name);
 
#if TDAA_STANDARD
    [DllImport("__Internal")]
    private static extern void TDAAOnViewItem(string itemId, string category, string name, int unitPrice);
 
    [DllImport("__Internal")]
    private static extern void TDAAOnAddItemToShoppingCart(string item, string category, string name, int unitPrice, int amount);
 
    [DllImport("__Internal")]
    private static extern void TDAAOnViewShoppingCart(string shoppingCartJson);
 
    [DllImport("__Internal")]
    private static extern void TDAAOnPlaceOrder(string account, string orderJson);
 
    [DllImport("__Internal")]
    private static extern void TDAAOnOrderPaySucc(string account, string payType, string orderJson);
#endif
 
#if TDAA_CUSTOM
    [DllImport("__Internal")]
    private static extern void TDAATrackEvent(string eventId);
 
    [DllImport("__Internal")]
    private static extern void TDAATrackEventLabel(string eventId, string eventLabel);
 
    [DllImport("__Internal")]
    private static extern void TDAATrackEventParameters(string eventId, string eventLabel, string parameters);
#endif
 
#if TDAA_PAGE
    [DllImport("__Internal")]
    private static extern void TDAATrackPageBegin(string pageName);
 
    [DllImport("__Internal")]
    private static extern void TDAATrackPageEnd(string pageName);
#endif
 
#if TDAA_PUSH
    [DllImport("__Internal")]
    private static extern void TDAASetDeviceToken(byte[] deviceToken, int length);
 
    [DllImport("__Internal")]
    private static extern void TDAAHandlePushMessage(string message);
 
    private static bool hasTokenBeenObtained = false;
#endif
#endif
 
#if UNITY_ANDROID
    private static AndroidJavaObject GetCurrentActivity()
    {
        if (unityPlayerClass == null)
        {
            unityPlayerClass = new AndroidJavaClass("com.unity3d.player.UnityPlayer");
        }
        AndroidJavaObject activity = unityPlayerClass.GetStatic<AndroidJavaObject>("currentActivity");
        return activity;
    }
#endif
 
    private static string deviceId = null;
    public static string GetDeviceId()
    {
        if (deviceId == null && Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass == null)
            {
                appAnalyticsClass = new AndroidJavaClass(APP_ANALYTICS_CLASS);
            }
            deviceId = appAnalyticsClass.CallStatic<string>("getDeviceId", GetCurrentActivity());
#endif
#if UNITY_IPHONE
            deviceId = TDAAGetDeviceId();
#endif
        }
        return deviceId;
    }
 
    private static string oaid = null;
    public static string GetOAID()
    {
        if (oaid == null && Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass == null)
            {
                appAnalyticsClass = new AndroidJavaClass(APP_ANALYTICS_CLASS);
            }
            oaid = appAnalyticsClass.CallStatic<string>("getOAID", GetCurrentActivity());
#endif
        }
        return oaid;
    }
 
    public static void SetLogEnabled(bool enable)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass == null)
            {
                appAnalyticsClass = new AndroidJavaClass(APP_ANALYTICS_CLASS);
            }
            appAnalyticsClass.SetStatic("LOG_ON", enable);
#endif
#if UNITY_IPHONE
            TDAASetLogEnabled(enable);
#endif
        }
    }
 
    public static void BackgroundSessionEnabled()
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_IPHONE
            TDAABackgroundSessionEnabled();
#endif
        }
    }
 
    public static void SessionStarted(string appId, string channelId)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
            Debug.Log("TalkingData App Analytics Unity SDK.");
#if UNITY_ANDROID
            using (AndroidJavaClass dz = new AndroidJavaClass("com.tendcloud.tenddata.dz"))
            {
                dz.SetStatic("a", 2);
            }
            if (appAnalyticsClass == null)
            {
                appAnalyticsClass = new AndroidJavaClass(APP_ANALYTICS_CLASS);
            }
            AndroidJavaObject activity = GetCurrentActivity();
            appAnalyticsClass.CallStatic("init", activity, appId, channelId);
            appAnalyticsClass.CallStatic("onResume", activity);
#endif
#if UNITY_IPHONE
            TDAASessionStarted(appId, channelId);
#endif
        }
    }
 
    public static void SessionStoped()
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                appAnalyticsClass.CallStatic("onPause", GetCurrentActivity());
                appAnalyticsClass = null;
                unityPlayerClass = null;
            }
#endif
        }
    }
 
    public static void SetExceptionReportEnabled(bool enable)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                appAnalyticsClass.CallStatic("setReportUncaughtExceptions", enable);
            }
#endif
#if UNITY_IPHONE
            TDAASetExceptionReportEnabled(enable);
#endif
        }
    }
 
    public static void SetLocation(double latitude, double longitude)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_IPHONE
            TDAASetLocation(latitude, longitude);
#endif
        }
    }
 
    public static void OnRegister(string accountId, TalkingDataAccountType type, string name)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                AndroidJavaClass enumClass = new AndroidJavaClass("com.tendcloud.tenddata.TDAccount$AccountType");
                AndroidJavaObject typeObj = enumClass.CallStatic<AndroidJavaObject>("valueOf", type.ToString());
                appAnalyticsClass.CallStatic("onRegister", accountId, typeObj, name);
                enumClass.Dispose();
            }
#endif
#if UNITY_IPHONE
            TDAAOnRegister(accountId, (int)type, name);
#endif
        }
    }
 
    public static void OnLogin(string accountId, TalkingDataAccountType type, string name)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                AndroidJavaClass enumClass = new AndroidJavaClass("com.tendcloud.tenddata.TDAccount$AccountType");
                AndroidJavaObject typeObj = enumClass.CallStatic<AndroidJavaObject>("valueOf", type.ToString());
                appAnalyticsClass.CallStatic("onLogin", accountId, typeObj, name);
                enumClass.Dispose();
            }
#endif
#if UNITY_IPHONE
            TDAAOnLogin(accountId, (int)type, name);
#endif
        }
    }
 
#if TDAA_STANDARD
    public static void OnViewItem(string itemId, string category, string name, int unitPrice)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                appAnalyticsClass.CallStatic("onViewItem", itemId, category, name, unitPrice);
            }
#endif
#if UNITY_IPHONE
            TDAAOnViewItem(itemId, category, name, unitPrice);
#endif
        }
    }
 
    public static void OnAddItemToShoppingCart(string itemId, string category, string name, int unitPrice, int amount)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                appAnalyticsClass.CallStatic("onAddItemToShoppingCart", itemId, category, name, unitPrice, amount);
            }
#endif
#if UNITY_IPHONE
            TDAAOnAddItemToShoppingCart(itemId, category, name, unitPrice, amount);
#endif
        }
    }
 
    public static void OnViewShoppingCart(TalkingDataShoppingCart shoppingCart)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                appAnalyticsClass.CallStatic("onViewShoppingCart", shoppingCart.javaObj);
            }
#endif
#if UNITY_IPHONE
            TDAAOnViewShoppingCart(shoppingCart.ToString());
#endif
        }
    }
 
    public static void OnPlaceOrder(string accountId, TalkingDataOrder order)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                appAnalyticsClass.CallStatic("onPlaceOrder", accountId, order.javaObj);
            }
#endif
#if UNITY_IPHONE
            TDAAOnPlaceOrder(accountId, order.ToString());
#endif
        }
    }
 
    public static void OnOrderPaySucc(string accountId, string payType, TalkingDataOrder order)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                appAnalyticsClass.CallStatic("onOrderPaySucc", accountId, payType, order.javaObj);
            }
#endif
#if UNITY_IPHONE
            TDAAOnOrderPaySucc(accountId, payType, order.ToString());
#endif
        }
    }
#endif
 
#if TDAA_CUSTOM
    public static void TrackEvent(string eventId)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                appAnalyticsClass.CallStatic("onEvent", GetCurrentActivity(), eventId);
            }
#endif
#if UNITY_IPHONE
            TDAATrackEvent(eventId);
#endif
        }
    }
 
    public static void TrackEventWithLabel(string eventId, string eventLabel)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                appAnalyticsClass.CallStatic("onEvent", GetCurrentActivity(), eventId, eventLabel);
            }
#endif
#if UNITY_IPHONE
            TDAATrackEventLabel(eventId, eventLabel);
#endif
        }
    }
 
    public static void TrackEventWithParameters(string eventId, string eventLabel, Dictionary<string, object> parameters)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                if (parameters != null && parameters.Count > 0)
                {
                    int count = parameters.Count;
                    AndroidJavaObject map = new AndroidJavaObject("java.util.HashMap", count);
                    IntPtr method_Put = AndroidJNIHelper.GetMethodID(map.GetRawClass(), "put", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;");
                    object[] args = new object[2];
                    foreach (KeyValuePair<string, object> kvp in parameters)
                    {
                        args[0] = new AndroidJavaObject("java.lang.String", kvp.Key);
                        args[1] = typeof(string).IsInstanceOfType(kvp.Value)
                            ? new AndroidJavaObject("java.lang.String", kvp.Value)
                            : new AndroidJavaObject("java.lang.Double", "" + kvp.Value);
                        AndroidJNI.CallObjectMethod(map.GetRawObject(), method_Put, AndroidJNIHelper.CreateJNIArgArray(args));
                    }
                    appAnalyticsClass.CallStatic("onEvent", GetCurrentActivity(), eventId, eventLabel, map);
                    map.Dispose();
                }
                else
                {
                    appAnalyticsClass.CallStatic("onEvent", GetCurrentActivity(), eventId, eventLabel, null);
                }
            }
#endif
#if UNITY_IPHONE
            if (parameters != null && parameters.Count > 0)
            {
                string parameterStr = "{";
                foreach (KeyValuePair<string, object> kvp in parameters)
                {
                    if (kvp.Value is string)
                    {
                        parameterStr += "\"" + kvp.Key + "\":\"" + kvp.Value + "\",";
                    }
                    else
                    {
                        try
                        {
                            double tmp = System.Convert.ToDouble(kvp.Value);
                            parameterStr += "\"" + kvp.Key + "\":" + tmp + ",";
                        }
                        catch (System.Exception)
                        {
                        }
                    }
                }
                parameterStr = parameterStr.TrimEnd(',');
                parameterStr += "}";
                TDAATrackEventParameters(eventId, eventLabel, parameterStr);
            }
            else
            {
                TDAATrackEventParameters(eventId, eventLabel, null);
            }
#endif
        }
    }
#endif
 
#if TDAA_PAGE
    public static void TrackPageBegin(string pageName)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                appAnalyticsClass.CallStatic("onPageStart", GetCurrentActivity(), pageName);
            }
#endif
#if UNITY_IPHONE
            TDAATrackPageBegin(pageName);
#endif
        }
    }
 
    public static void TrackPageEnd(string pageName)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (appAnalyticsClass != null)
            {
                appAnalyticsClass.CallStatic("onPageEnd", GetCurrentActivity(), pageName);
            }
#endif
#if UNITY_IPHONE
            TDAATrackPageEnd(pageName);
#endif
        }
    }
#endif
 
#if TDAA_PUSH
    public static void SetDeviceToken()
    {
#if UNITY_IPHONE
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
            if (!hasTokenBeenObtained)
            {
                byte[] deviceToken = UnityEngine.iOS.NotificationServices.deviceToken;
                if (deviceToken != null)
                {
                    TDAASetDeviceToken(deviceToken, deviceToken.Length);
                    hasTokenBeenObtained = true;
                }
            }
        }
#endif
    }
 
    public static void HandlePushMessage()
    {
#if UNITY_IPHONE
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
            UnityEngine.iOS.RemoteNotification[] notifications = UnityEngine.iOS.NotificationServices.remoteNotifications;
            if (notifications != null)
            {
                UnityEngine.iOS.NotificationServices.ClearRemoteNotifications();
                foreach (UnityEngine.iOS.RemoteNotification rn in notifications)
                {
                    foreach (DictionaryEntry de in rn.userInfo)
                    {
                        if (de.Key.ToString().Equals("sign"))
                        {
                            string sign = de.Value.ToString();
                            TDAAHandlePushMessage(sign);
                        }
                    }
                }
            }
        }
#endif
    }
#endif
}