forked from flutter/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirebase_analytics.dart
executable file
·984 lines (878 loc) · 31.5 KB
/
firebase_analytics.dart
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:meta/meta.dart';
import 'package:flutter/services.dart';
import 'package:flutter/foundation.dart';
/// Firebase Analytics API.
class FirebaseAnalytics {
/// Provides an instance of this class.
factory FirebaseAnalytics() => _instance;
/// We don't want people to extend this class, but implementing its interface,
/// e.g. in tests, is OK.
@visibleForTesting
FirebaseAnalytics.private(MethodChannel platformChannel)
: _channel = platformChannel,
android = defaultTargetPlatform == TargetPlatform.android
? FirebaseAnalyticsAndroid.private(platformChannel)
: null;
static final FirebaseAnalytics _instance = FirebaseAnalytics.private(
const MethodChannel('plugins.flutter.io/firebase_analytics'));
final MethodChannel _channel;
/// Namespace for analytics API available on Android only.
///
/// The value of this field is `null` on non-Android platforms. If you are
/// writing cross-platform code, consider using null-aware operator when
/// accessing it.
///
/// Example:
///
/// FirebaseAnalytics analytics = FirebaseAnalytics();
/// analytics.android?.setMinimumSessionDuration(200000);
final FirebaseAnalyticsAndroid android;
/// Logs a custom Flutter Analytics event with the given [name] and event [parameters].
Future<Null> logEvent(
{@required String name, Map<String, dynamic> parameters}) async {
if (_reservedEventNames.contains(name)) {
throw ArgumentError.value(
name, 'name', 'Event name is reserved and cannot be used');
}
const String kReservedPrefix = 'firebase_';
if (name.startsWith(kReservedPrefix)) {
throw ArgumentError.value(name, 'name',
'Prefix "$kReservedPrefix" is reserved and cannot be used.');
}
await _channel.invokeMethod('logEvent', <String, dynamic>{
'name': name,
'parameters': parameters,
});
}
/// Sets the user ID property.
///
/// This feature must be used in accordance with [Google's Privacy Policy][1].
///
/// [1]: https://www.google.com/policies/privacy/
Future<Null> setUserId(String id) async {
if (id == null) {
throw ArgumentError.notNull('id');
}
await _channel.invokeMethod('setUserId', id);
}
/// Sets the current [screenName], which specifies the current visual context
/// in your app.
///
/// This helps identify the areas in your app where users spend their time
/// and how they interact with your app.
///
/// The class name can optionally be overridden by the [screenClassOverride]
/// parameter.
///
/// The [screenName] and [screenClassOverride] remain in effect until the
/// current `Activity` (in Android) or `UIViewController` (in iOS) changes or
/// a new call to [setCurrentScreen] is made.
///
/// See also:
///
/// https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.html#setCurrentScreen(android.app.Activity, java.lang.String, java.lang.String)
/// https://firebase.google.com/docs/reference/ios/firebaseanalytics/api/reference/Classes/FIRAnalytics#setscreennamescreenclass
Future<Null> setCurrentScreen(
{@required String screenName,
String screenClassOverride = 'Flutter'}) async {
if (screenName == null) {
throw ArgumentError.notNull('screenName');
}
await _channel.invokeMethod('setCurrentScreen', <String, String>{
'screenName': screenName,
'screenClassOverride': screenClassOverride,
});
}
static final RegExp _nonAlphaNumeric = RegExp(r'[^a-zA-Z0-9_]');
static final RegExp _alpha = RegExp(r'[a-zA-Z]');
/// Sets a user property to a given value.
///
/// Up to 25 user property names are supported. Once set, user property
/// values persist throughout the app lifecycle and across sessions.
///
/// [name] is the name of the user property to set. Should contain 1 to 24
/// alphanumeric characters or underscores and must start with an alphabetic
/// character. The "firebase_" prefix is reserved and should not be used for
/// user property names.
Future<Null> setUserProperty(
{@required String name, @required String value}) async {
if (name == null) {
throw ArgumentError.notNull('name');
}
if (name.isEmpty ||
name.length > 24 ||
name.indexOf(_alpha) != 0 ||
name.contains(_nonAlphaNumeric))
throw ArgumentError.value(
name, 'name', 'must contain 1 to 24 alphanumeric characters.');
if (name.startsWith('firebase_'))
throw ArgumentError.value(name, 'name', '"firebase_" prefix is reserved');
await _channel.invokeMethod('setUserProperty', <String, String>{
'name': name,
'value': value,
});
}
/// Logs the standard `add_payment_info` event.
///
/// This event signifies that a user has submitted their payment information
/// to your app.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#ADD_PAYMENT_INFO
Future<Null> logAddPaymentInfo() {
return logEvent(name: 'add_payment_info');
}
/// Logs the standard `add_to_cart` event.
///
/// This event signifies that an item was added to a cart for purchase. Add
/// this event to a funnel with [logEcommercePurchase] to gauge the
/// effectiveness of your checkout process. Note: If you supply the
/// [value] parameter, you must also supply the [currency] parameter so that
/// revenue metrics can be computed accurately.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#ADD_TO_CART
Future<Null> logAddToCart({
@required String itemId,
@required String itemName,
@required String itemCategory,
@required int quantity,
double price,
double value,
String currency,
String origin,
String itemLocationId,
String destination,
String startDate,
String endDate,
}) {
_requireValueAndCurrencyTogether(value, currency);
return logEvent(
name: 'add_to_cart',
parameters: filterOutNulls(<String, dynamic>{
_ITEM_ID: itemId,
_ITEM_NAME: itemName,
_ITEM_CATEGORY: itemCategory,
_QUANTITY: quantity,
_PRICE: price,
_VALUE: value,
_CURRENCY: currency,
_ORIGIN: origin,
_ITEM_LOCATION_ID: itemLocationId,
_DESTINATION: destination,
_START_DATE: startDate,
_END_DATE: endDate,
}),
);
}
/// Logs the standard `add_to_wishlist` event.
///
/// This event signifies that an item was added to a wishlist. Use this event
/// to identify popular gift items in your app. Note: If you supply the
/// [value] parameter, you must also supply the [currency] parameter so that
/// revenue metrics can be computed accurately.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#ADD_TO_WISHLIST
Future<Null> logAddToWishlist({
@required String itemId,
@required String itemName,
@required String itemCategory,
@required int quantity,
double price,
double value,
String currency,
String itemLocationId,
}) {
_requireValueAndCurrencyTogether(value, currency);
return logEvent(
name: 'add_to_wishlist',
parameters: filterOutNulls(<String, dynamic>{
_ITEM_ID: itemId,
_ITEM_NAME: itemName,
_ITEM_CATEGORY: itemCategory,
_QUANTITY: quantity,
_PRICE: price,
_VALUE: value,
_CURRENCY: currency,
_ITEM_LOCATION_ID: itemLocationId,
}),
);
}
/// Logs the standard `app_open` event.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#APP_OPEN
Future<Null> logAppOpen() {
return logEvent(name: 'app_open');
}
/// Logs the standard `begin_checkout` event.
///
/// This event signifies that a user has begun the process of checking out.
/// Add this event to a funnel with your [logEcommercePurchase] event to
/// gauge the effectiveness of your checkout process. Note: If you supply the
/// [value] parameter, you must also supply the [currency] parameter so that
/// revenue metrics can be computed accurately.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#BEGIN_CHECKOUT
Future<Null> logBeginCheckout({
double value,
String currency,
String transactionId,
int numberOfNights,
int numberOfRooms,
int numberOfPassengers,
String origin,
String destination,
String startDate,
String endDate,
String travelClass,
}) {
_requireValueAndCurrencyTogether(value, currency);
return logEvent(
name: 'begin_checkout',
parameters: filterOutNulls(<String, dynamic>{
_VALUE: value,
_CURRENCY: currency,
_TRANSACTION_ID: transactionId,
_NUMBER_OF_NIGHTS: numberOfNights,
_NUMBER_OF_ROOMS: numberOfRooms,
_NUMBER_OF_PASSENGERS: numberOfPassengers,
_ORIGIN: origin,
_DESTINATION: destination,
_START_DATE: startDate,
_END_DATE: endDate,
_TRAVEL_CLASS: travelClass,
}),
);
}
/// Logs the standard `campaign_details` event.
///
/// Log this event to supply the referral details of a re-engagement campaign.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#CAMPAIGN_DETAILS
Future<Null> logCampaignDetails({
@required String source,
@required String medium,
@required String campaign,
String term,
String content,
String aclid,
String cp1,
}) {
return logEvent(
name: 'campaign_details',
parameters: filterOutNulls(<String, String>{
_SOURCE: source,
_MEDIUM: medium,
_CAMPAIGN: campaign,
_TERM: term,
_CONTENT: content,
_ACLID: aclid,
_CP1: cp1,
}),
);
}
/// Logs the standard `earn_virtual_currency` event.
///
/// This event tracks the awarding of virtual currency in your app. Log this
/// along with [logSpendVirtualCurrency] to better understand your virtual
/// economy.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#EARN_VIRTUAL_CURRENCY
Future<Null> logEarnVirtualCurrency({
@required String virtualCurrencyName,
@required num value,
}) {
return logEvent(
name: 'earn_virtual_currency',
parameters: filterOutNulls(<String, dynamic>{
_VIRTUAL_CURRENCY_NAME: virtualCurrencyName,
_VALUE: value,
}),
);
}
/// Logs the standard `ecommerce_purchase` event.
///
/// This event signifies that an item was purchased by a user. Note: This is
/// different from the in-app purchase event, which is reported automatically
/// for Google Play-based apps. Note: If you supply the [value] parameter,
/// you must also supply the [currency] parameter so that revenue metrics can
/// be computed accurately.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#ECOMMERCE_PURCHASE
Future<Null> logEcommercePurchase({
String currency,
double value,
String transactionId,
double tax,
double shipping,
String coupon,
String location,
int numberOfNights,
int numberOfRooms,
int numberOfPassengers,
String origin,
String destination,
String startDate,
String endDate,
String travelClass,
}) {
_requireValueAndCurrencyTogether(value, currency);
return logEvent(
name: 'ecommerce_purchase',
parameters: filterOutNulls(<String, dynamic>{
_CURRENCY: currency,
_VALUE: value,
_TRANSACTION_ID: transactionId,
_TAX: tax,
_SHIPPING: shipping,
_COUPON: coupon,
_LOCATION: location,
_NUMBER_OF_NIGHTS: numberOfNights,
_NUMBER_OF_ROOMS: numberOfRooms,
_NUMBER_OF_PASSENGERS: numberOfPassengers,
_ORIGIN: origin,
_DESTINATION: destination,
_START_DATE: startDate,
_END_DATE: endDate,
_TRAVEL_CLASS: travelClass,
}),
);
}
/// Logs the standard `generate_lead` event.
///
/// Log this event when a lead has been generated in the app to understand
/// the efficacy of your install and re-engagement campaigns. Note: If you
/// supply the [value] parameter, you must also supply the [currency]
/// parameter so that revenue metrics can be computed accurately.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#GENERATE_LEAD
Future<Null> logGenerateLead({
String currency,
double value,
}) {
_requireValueAndCurrencyTogether(value, currency);
return logEvent(
name: 'generate_lead',
parameters: filterOutNulls(<String, dynamic>{
_CURRENCY: currency,
_VALUE: value,
}),
);
}
/// Logs the standard `join_group` event.
///
/// Log this event when a user joins a group such as a guild, team or family.
/// Use this event to analyze how popular certain groups or social features
/// are in your app.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#JOIN_GROUP
Future<Null> logJoinGroup({
@required String groupId,
}) {
return logEvent(
name: 'join_group',
parameters: filterOutNulls(<String, dynamic>{
_GROUP_ID: groupId,
}),
);
}
/// Logs the standard `level_up` event.
///
/// This event signifies that a player has leveled up in your gaming app. It
/// can help you gauge the level distribution of your userbase and help you
/// identify certain levels that are difficult to pass.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#LEVEL_UP
Future<Null> logLevelUp({
@required int level,
String character,
}) {
return logEvent(
name: 'level_up',
parameters: filterOutNulls(<String, dynamic>{
_LEVEL: level,
_CHARACTER: character,
}),
);
}
/// Logs the standard `login` event.
///
/// Apps with a login feature can report this event to signify that a user
/// has logged in.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#LOGIN
Future<Null> logLogin() {
return logEvent(name: 'login');
}
/// Logs the standard `post_score` event.
///
/// Log this event when the user posts a score in your gaming app. This event
/// can help you understand how users are actually performing in your game
/// and it can help you correlate high scores with certain audiences or
/// behaviors.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#POST_SCORE
Future<Null> logPostScore({
@required int score,
int level,
String character,
}) {
return logEvent(
name: 'post_score',
parameters: filterOutNulls(<String, dynamic>{
_SCORE: score,
_LEVEL: level,
_CHARACTER: character,
}),
);
}
/// Logs the standard `present_offer` event.
///
/// This event signifies that the app has presented a purchase offer to a
/// user. Add this event to a funnel with the [logAddToCart] and
/// [logEcommercePurchase] to gauge your conversion process. Note: If you
/// supply the [value] parameter, you must also supply the [currency]
/// parameter so that revenue metrics can be computed accurately.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#PRESENT_OFFER
Future<Null> logPresentOffer({
@required String itemId,
@required String itemName,
@required String itemCategory,
@required int quantity,
double price,
double value,
String currency,
String itemLocationId,
}) {
_requireValueAndCurrencyTogether(value, currency);
return logEvent(
name: 'present_offer',
parameters: filterOutNulls(<String, dynamic>{
_ITEM_ID: itemId,
_ITEM_NAME: itemName,
_ITEM_CATEGORY: itemCategory,
_QUANTITY: quantity,
_PRICE: price,
_VALUE: value,
_CURRENCY: currency,
_ITEM_LOCATION_ID: itemLocationId,
}),
);
}
/// Logs the standard `purchase_refund` event.
///
/// This event signifies that an item purchase was refunded. Note: If you
/// supply the [value] parameter, you must also supply the [currency]
/// parameter so that revenue metrics can be computed accurately.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#PURCHASE_REFUND
Future<Null> logPurchaseRefund({
String currency,
double value,
String transactionId,
}) {
_requireValueAndCurrencyTogether(value, currency);
return logEvent(
name: 'purchase_refund',
parameters: filterOutNulls(<String, dynamic>{
_CURRENCY: currency,
_VALUE: value,
_TRANSACTION_ID: transactionId,
}),
);
}
/// Logs the standard `search` event.
///
/// Apps that support search features can use this event to contextualize
/// search operations by supplying the appropriate, corresponding parameters.
/// This event can help you identify the most popular content in your app.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#SEARCH
Future<Null> logSearch({
@required String searchTerm,
int numberOfNights,
int numberOfRooms,
int numberOfPassengers,
String origin,
String destination,
String startDate,
String endDate,
String travelClass,
}) {
return logEvent(
name: 'search',
parameters: filterOutNulls(<String, dynamic>{
_SEARCH_TERM: searchTerm,
_NUMBER_OF_NIGHTS: numberOfNights,
_NUMBER_OF_ROOMS: numberOfRooms,
_NUMBER_OF_PASSENGERS: numberOfPassengers,
_ORIGIN: origin,
_DESTINATION: destination,
_START_DATE: startDate,
_END_DATE: endDate,
_TRAVEL_CLASS: travelClass,
}),
);
}
/// Logs the standard `select_content` event.
///
/// This general purpose event signifies that a user has selected some
/// content of a certain type in an app. The content can be any object in
/// your app. This event can help you identify popular content and categories
/// of content in your app.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#SELECT_CONTENT
Future<Null> logSelectContent({
@required String contentType,
@required String itemId,
}) {
return logEvent(
name: 'select_content',
parameters: filterOutNulls(<String, dynamic>{
_CONTENT_TYPE: contentType,
_ITEM_ID: itemId,
}),
);
}
/// Logs the standard `share` event.
///
/// Apps with social features can log the Share event to identify the most
/// viral content.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#SHARE
Future<Null> logShare({
@required String contentType,
@required String itemId,
}) {
return logEvent(
name: 'share',
parameters: filterOutNulls(<String, dynamic>{
_CONTENT_TYPE: contentType,
_ITEM_ID: itemId,
}),
);
}
/// Logs the standard `sign_up` event.
///
/// This event indicates that a user has signed up for an account in your
/// app. The parameter signifies the method by which the user signed up. Use
/// this event to understand the different behaviors between logged in and
/// logged out users.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#SIGN_UP
Future<Null> logSignUp({
@required String signUpMethod,
}) {
return logEvent(
name: 'sign_up',
parameters: filterOutNulls(<String, dynamic>{
_SIGN_UP_METHOD: signUpMethod,
}),
);
}
/// Logs the standard `spend_virtual_currency` event.
///
/// This event tracks the sale of virtual goods in your app and can help you
/// identify which virtual goods are the most popular objects of purchase.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#SPEND_VIRTUAL_CURRENCY
Future<Null> logSpendVirtualCurrency({
@required String itemName,
@required String virtualCurrencyName,
@required num value,
}) {
return logEvent(
name: 'spend_virtual_currency',
parameters: filterOutNulls(<String, dynamic>{
_ITEM_NAME: itemName,
_VIRTUAL_CURRENCY_NAME: virtualCurrencyName,
_VALUE: value,
}),
);
}
/// Logs the standard `tutorial_begin` event.
///
/// This event signifies the start of the on-boarding process in your app.
/// Use this in a funnel with [logTutorialComplete] to understand how many
/// users complete this process and move on to the full app experience.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#TUTORIAL_BEGIN
Future<Null> logTutorialBegin() {
return logEvent(name: 'tutorial_begin');
}
/// Logs the standard `tutorial_complete` event.
///
/// Use this event to signify the user's completion of your app's on-boarding
/// process. Add this to a funnel with [logTutorialBegin] to gauge the
/// completion rate of your on-boarding process.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#TUTORIAL_COMPLETE
Future<Null> logTutorialComplete() {
return logEvent(name: 'tutorial_complete');
}
/// Logs the standard `unlock_achievement` event with a given achievement
/// [id].
///
/// Log this event when the user has unlocked an achievement in your game.
/// Since achievements generally represent the breadth of a gaming
/// experience, this event can help you understand how many users are
/// experiencing all that your game has to offer.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#UNLOCK_ACHIEVEMENT
Future<Null> logUnlockAchievement({
@required String id,
}) {
return logEvent(
name: 'unlock_achievement',
parameters: filterOutNulls(<String, dynamic>{
_ACHIEVEMENT_ID: id,
}),
);
}
/// Logs the standard `view_item` event.
///
/// This event signifies that some content was shown to the user. This
/// content may be a product, a webpage or just a simple image or text. Use
/// the appropriate parameters to contextualize the event. Use this event to
/// discover the most popular items viewed in your app. Note: If you supply
/// the [value] parameter, you must also supply the [currency] parameter so
/// that revenue metrics can be computed accurately.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#VIEW_ITEM
Future<Null> logViewItem({
@required String itemId,
@required String itemName,
@required String itemCategory,
String itemLocationId,
double price,
int quantity,
String currency,
double value,
String flightNumber,
int numberOfPassengers,
int numberOfNights,
int numberOfRooms,
String origin,
String destination,
String startDate,
String endDate,
String searchTerm,
String travelClass,
}) {
_requireValueAndCurrencyTogether(value, currency);
return logEvent(
name: 'view_item',
parameters: filterOutNulls(<String, dynamic>{
_ITEM_ID: itemId,
_ITEM_NAME: itemName,
_ITEM_CATEGORY: itemCategory,
_ITEM_LOCATION_ID: itemLocationId,
_PRICE: price,
_QUANTITY: quantity,
_CURRENCY: currency,
_VALUE: value,
_FLIGHT_NUMBER: flightNumber,
_NUMBER_OF_PASSENGERS: numberOfPassengers,
_NUMBER_OF_NIGHTS: numberOfNights,
_NUMBER_OF_ROOMS: numberOfRooms,
_ORIGIN: origin,
_DESTINATION: destination,
_START_DATE: startDate,
_END_DATE: endDate,
_SEARCH_TERM: searchTerm,
_TRAVEL_CLASS: travelClass,
}),
);
}
/// Logs the standard `view_item_list` event.
///
/// Log this event when the user has been presented with a list of items of a
/// certain category.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#VIEW_ITEM_LIST
Future<Null> logViewItemList({
@required String itemCategory,
}) {
return logEvent(
name: 'view_item_list',
parameters: filterOutNulls(<String, dynamic>{
_ITEM_CATEGORY: itemCategory,
}),
);
}
/// Logs the standard `view_search_results` event.
///
/// Log this event when the user has been presented with the results of a
/// search.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#VIEW_SEARCH_RESULTS
Future<Null> logViewSearchResults({
@required String searchTerm,
}) {
return logEvent(
name: 'view_search_results',
parameters: filterOutNulls(<String, dynamic>{
_SEARCH_TERM: searchTerm,
}),
);
}
}
/// Android-specific analytics API.
class FirebaseAnalyticsAndroid {
@visibleForTesting
const FirebaseAnalyticsAndroid.private(this._channel);
final MethodChannel _channel;
/// Sets whether analytics collection is enabled for this app on this device.
///
/// This setting is persisted across app sessions. By default it is enabled.
Future<Null> setAnalyticsCollectionEnabled(bool enabled) async {
if (enabled == null) {
throw ArgumentError.notNull('enabled');
}
await _channel.invokeMethod('setAnalyticsCollectionEnabled', enabled);
}
/// Sets the minimum engagement time required before starting a session.
///
/// The default value is 10000 (10 seconds).
Future<Null> setMinimumSessionDuration(int milliseconds) async {
if (milliseconds == null) {
throw ArgumentError.notNull('milliseconds');
}
await _channel.invokeMethod('setMinimumSessionDuration', milliseconds);
}
/// Sets the duration of inactivity that terminates the current session.
///
/// The default value is 1800000 (30 minutes).
Future<Null> setSessionTimeoutDuration(int milliseconds) async {
if (milliseconds == null) {
throw ArgumentError.notNull('milliseconds');
}
await _channel.invokeMethod('setSessionTimeoutDuration', milliseconds);
}
}
/// Creates a new map containing all of the key/value pairs from [parameters]
/// except those whose value is `null`.
@visibleForTesting
Map<String, dynamic> filterOutNulls(Map<String, dynamic> parameters) {
final Map<String, dynamic> filtered = <String, dynamic>{};
parameters.forEach((String key, dynamic value) {
if (value != null) {
filtered[key] = value;
}
});
return filtered;
}
@visibleForTesting
const String valueAndCurrencyMustBeTogetherError = 'If you supply the "value" '
'parameter, you must also supply the "currency" parameter.';
void _requireValueAndCurrencyTogether(double value, String currency) {
if (value != null && currency == null) {
throw ArgumentError(valueAndCurrencyMustBeTogetherError);
}
}
/// Reserved event names that cannot be used.
///
/// See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html
const List<String> _reservedEventNames = <String>[
'app_clear_data',
'app_uninstall',
'app_update',
'error',
'first_open',
'in_app_purchase',
'notification_dismiss',
'notification_foreground',
'notification_open',
'notification_receive',
'os_update',
'session_start',
'user_engagement',
];
// The following constants are defined in:
//
// https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Param.html
/// Game achievement ID.
const String _ACHIEVEMENT_ID = 'achievement_id';
/// `CAMPAIGN_DETAILS` click ID.
const String _ACLID = 'aclid';
/// `CAMPAIGN_DETAILS` name; used for keyword analysis to identify a specific
/// product promotion or strategic campaign.
const String _CAMPAIGN = 'campaign';
/// Character used in game.
const String _CHARACTER = 'character';
/// `CAMPAIGN_DETAILS` content; used for A/B testing and content-targeted ads to
/// differentiate ads or links that point to the same URL.
const String _CONTENT = 'content';
/// Type of content selected.
const String _CONTENT_TYPE = 'content_type';
/// Coupon code for a purchasable item.
const String _COUPON = 'coupon';
/// `CAMPAIGN_DETAILS` custom parameter.
const String _CP1 = 'cp1';
/// Purchase currency in 3 letter ISO_4217 format.
const String _CURRENCY = 'currency';
/// Flight or Travel destination.
const String _DESTINATION = 'destination';
/// The arrival date, check-out date, or rental end date for the item.
const String _END_DATE = 'end_date';
/// Flight number for travel events.
const String _FLIGHT_NUMBER = 'flight_number';
/// Group/clan/guild id.
const String _GROUP_ID = 'group_id';
/// Item category.
const String _ITEM_CATEGORY = 'item_category';
/// Item ID.
const String _ITEM_ID = 'item_id';
/// The Google Place ID that corresponds to the associated item.
const String _ITEM_LOCATION_ID = 'item_location_id';
/// Item name.
const String _ITEM_NAME = 'item_name';
/// Level in game (long).
const String _LEVEL = 'level';
/// Location.
const String _LOCATION = 'location';
/// `CAMPAIGN_DETAILS` medium; used to identify a medium such as email or
/// cost-per-click (cpc).
const String _MEDIUM = 'medium';
/// Number of nights staying at hotel (long).
const String _NUMBER_OF_NIGHTS = 'number_of_nights';
/// Number of passengers traveling (long).
const String _NUMBER_OF_PASSENGERS = 'number_of_passengers';
/// Number of rooms for travel events (long).
const String _NUMBER_OF_ROOMS = 'number_of_rooms';
/// Flight or Travel origin.
const String _ORIGIN = 'origin';
/// Purchase price (double).
const String _PRICE = 'price';
/// Purchase quantity (long).
const String _QUANTITY = 'quantity';
/// Score in game (long).
const String _SCORE = 'score';
/// The search string/keywords used.
const String _SEARCH_TERM = 'search_term';
/// Shipping cost (double).
const String _SHIPPING = 'shipping';
/// Signup method.
const String _SIGN_UP_METHOD = 'sign_up_method';
/// `CAMPAIGN_DETAILS` source; used to identify a search engine, newsletter, or
/// other source.
const String _SOURCE = 'source';
/// The departure date, check-in date, or rental start date for the item.
const String _START_DATE = 'start_date';
/// Tax amount (double).
const String _TAX = 'tax';
/// `CAMPAIGN_DETAILS` term; used with paid search to supply the keywords for
/// ads.
const String _TERM = 'term';
/// A single ID for a ecommerce group transaction.
const String _TRANSACTION_ID = 'transaction_id';
/// Travel class.
const String _TRAVEL_CLASS = 'travel_class';
/// A context-specific numeric value which is accumulated automatically for
/// each event type.
const String _VALUE = 'value';
/// Name of virtual currency type.
const String _VIRTUAL_CURRENCY_NAME = 'virtual_currency_name';