-
Notifications
You must be signed in to change notification settings - Fork 346
Expand file tree
/
Copy pathAnalytics_4.php
More file actions
2200 lines (1938 loc) · 73.8 KB
/
Analytics_4.php
File metadata and controls
2200 lines (1938 loc) · 73.8 KB
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
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Class Google\Site_Kit\Modules\Analytics_4
*
* @package Google\Site_Kit
* @copyright 2021 Google LLC
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link https://sitekit.withgoogle.com
*/
// phpcs:disable Generic.Metrics.CyclomaticComplexity.MaxExceeded
namespace Google\Site_Kit\Modules;
use Exception;
use Google\Site_Kit\Context;
use Google\Site_Kit\Core\Assets\Asset;
use Google\Site_Kit\Core\Assets\Assets;
use Google\Site_Kit\Core\Assets\Script;
use Google\Site_Kit\Core\Authentication\Authentication;
use Google\Site_Kit\Core\Authentication\Clients\Google_Site_Kit_Client;
use Google\Site_Kit\Core\Dismissals\Dismissed_Items;
use Google\Site_Kit\Core\Modules\Analytics_4\Tag_Matchers;
use Google\Site_Kit\Core\Modules\Module;
use Google\Site_Kit\Core\Modules\Module_Settings;
use Google\Site_Kit\Core\Modules\Module_With_Activation;
use Google\Site_Kit\Core\Modules\Module_With_Deactivation;
use Google\Site_Kit\Core\Modules\Module_With_Debug_Fields;
use Google\Site_Kit\Core\Modules\Module_With_Assets;
use Google\Site_Kit\Core\Modules\Module_With_Assets_Trait;
use Google\Site_Kit\Core\Modules\Module_With_Data_Available_State;
use Google\Site_Kit\Core\Modules\Module_With_Data_Available_State_Trait;
use Google\Site_Kit\Core\Modules\Module_With_Inline_Data;
use Google\Site_Kit\Core\Modules\Module_With_Inline_Data_Trait;
use Google\Site_Kit\Core\Modules\Module_With_Scopes;
use Google\Site_Kit\Core\Modules\Module_With_Scopes_Trait;
use Google\Site_Kit\Core\Modules\Module_With_Settings;
use Google\Site_Kit\Core\Modules\Module_With_Settings_Trait;
use Google\Site_Kit\Core\Modules\Module_With_Owner;
use Google\Site_Kit\Core\Modules\Module_With_Owner_Trait;
use Google\Site_Kit\Core\Modules\Module_With_Service_Entity;
use Google\Site_Kit\Core\Permissions\Permissions;
use Google\Site_Kit\Core\Modules\Module_With_Tag;
use Google\Site_Kit\Core\Modules\Module_With_Tag_Trait;
use Google\Site_Kit\Core\Modules\Tags\Module_Tag_Matchers;
use Google\Site_Kit\Core\REST_API\Exception\Invalid_Datapoint_Exception;
use Google\Site_Kit\Core\REST_API\Data_Request;
use Google\Site_Kit\Core\REST_API\Exception\Invalid_Param_Exception;
use Google\Site_Kit\Core\REST_API\Exception\Missing_Required_Param_Exception;
use Google\Site_Kit\Core\Site_Health\Debug_Data;
use Google\Site_Kit\Core\Storage\Options;
use Google\Site_Kit\Core\Storage\User_Options;
use Google\Site_Kit\Core\Tags\Guards\Tag_Environment_Type_Guard;
use Google\Site_Kit\Core\Tags\Guards\Tag_Verify_Guard;
use Google\Site_Kit\Core\Util\BC_Functions;
use Google\Site_Kit\Core\Util\Method_Proxy_Trait;
use Google\Site_Kit\Core\Util\Sort;
use Google\Site_Kit\Core\Util\URL;
use Google\Site_Kit\Modules\AdSense\Settings as AdSense_Settings;
use Google\Site_Kit\Modules\Analytics_4\Account_Ticket;
use Google\Site_Kit\Modules\Analytics_4\Advanced_Tracking;
use Google\Site_Kit\Modules\Analytics_4\AMP_Tag;
use Google\Site_Kit\Modules\Analytics_4\Audience_Utilities;
use Google\Site_Kit\Modules\Analytics_4\Custom_Dimensions_Data_Available;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Create_Account_Ticket;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Create_Custom_Dimension;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Create_Property;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Create_Webdatastream;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Get_Enhanced_Measurement_Settings;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Get_Google_Tag_Settings;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Get_Webdatastreams;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Get_Webdatastreams_Batch;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Save_Custom_Dimension_Data_Available;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Save_Resource_Data_Availability_Date;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Set_Google_Tag_ID_Mismatch;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Set_Is_Web_Data_Stream_Unavailable;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Sync_Custom_Dimensions;
use Google\Site_Kit\Modules\Analytics_4\Datapoints\Update_Enhanced_Measurement_Settings;
use Google\Site_Kit\Modules\Analytics_4\Synchronize_Property;
use Google\Site_Kit\Modules\Analytics_4\Synchronize_AdSenseLinked;
use Google\Site_Kit\Modules\Analytics_4\GoogleAnalyticsAdmin\AccountProvisioningService;
use Google\Site_Kit\Modules\Analytics_4\Report\Request as Analytics_4_Report_Request;
use Google\Site_Kit\Modules\Analytics_4\Report\Response as Analytics_4_Report_Response;
use Google\Site_Kit\Modules\Analytics_4\Resource_Data_Availability_Date;
use Google\Site_Kit\Modules\Analytics_4\Settings;
use Google\Site_Kit\Modules\Analytics_4\Synchronize_AdsLinked;
use Google\Site_Kit\Modules\Analytics_4\Tag_Guard;
use Google\Site_Kit\Modules\Analytics_4\Tag_Interface;
use Google\Site_Kit\Modules\Analytics_4\Web_Tag;
use Google\Site_Kit_Dependencies\Google\Model as Google_Model;
use Google\Site_Kit_Dependencies\Google\Service\AnalyticsData as Google_Service_AnalyticsData;
use Google\Site_Kit_Dependencies\Google\Service\AnalyticsData\RunReportRequest as Google_Service_AnalyticsData_RunReportRequest;
use Google\Site_Kit_Dependencies\Google\Service\AnalyticsData\DateRange as Google_Service_AnalyticsData_DateRange;
use Google\Site_Kit_Dependencies\Google\Service\AnalyticsData\Dimension as Google_Service_AnalyticsData_Dimension;
use Google\Site_Kit_Dependencies\Google\Service\AnalyticsData\Metric as Google_Service_AnalyticsData_Metric;
use Google\Site_Kit_Dependencies\Google\Service\GoogleAnalyticsAdmin as Google_Service_GoogleAnalyticsAdmin;
use Google\Site_Kit_Dependencies\Google\Service\GoogleAnalyticsAdmin\GoogleAnalyticsAdminV1betaDataStream;
use Google\Site_Kit_Dependencies\Google\Service\GoogleAnalyticsAdmin\GoogleAnalyticsAdminV1betaDataStreamWebStreamData;
use Google\Site_Kit_Dependencies\Google\Service\GoogleAnalyticsAdmin\GoogleAnalyticsAdminV1betaProperty as Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaProperty;
use Google\Site_Kit_Dependencies\Google\Service\GoogleAnalyticsAdminV1alpha;
use Google\Site_Kit_Dependencies\Google\Service\GoogleAnalyticsAdminV1alpha\GoogleAnalyticsAdminV1alphaAudience;
use Google\Site_Kit_Dependencies\Google\Service\TagManager as Google_Service_TagManager;
use Google\Site_Kit_Dependencies\Psr\Http\Message\RequestInterface;
use Google\Site_Kit\Core\REST_API\REST_Routes;
use Google\Site_Kit\Core\Tracking\Feature_Metrics_Trait;
use Google\Site_Kit\Core\Tracking\Provides_Feature_Metrics;
use Google\Site_Kit\Core\Util\Feature_Flags;
use Google\Site_Kit\Modules\Analytics_4\Audience_Settings;
use Google\Site_Kit\Modules\Analytics_4\Conversion_Reporting\Conversion_Reporting_Cron;
use Google\Site_Kit\Modules\Analytics_4\Conversion_Reporting\Conversion_Reporting_Events_Sync;
use Google\Site_Kit\Modules\Analytics_4\Conversion_Reporting\Conversion_Reporting_New_Badge_Events_Sync;
use Google\Site_Kit\Modules\Analytics_4\Conversion_Reporting\Conversion_Reporting_Provider;
use Google\Site_Kit\Modules\Analytics_4\Reset_Audiences;
use stdClass;
use WP_Error;
use WP_Post;
/**
* Class representing the Analytics 4 module.
*
* @since 1.30.0
* @access private
* @ignore
*/
final class Analytics_4 extends Module implements Module_With_Inline_Data, Module_With_Scopes, Module_With_Settings, Module_With_Debug_Fields, Module_With_Owner, Module_With_Assets, Module_With_Service_Entity, Module_With_Activation, Module_With_Deactivation, Module_With_Data_Available_State, Module_With_Tag, Provides_Feature_Metrics {
use Method_Proxy_Trait;
use Module_With_Assets_Trait;
use Module_With_Owner_Trait;
use Module_With_Scopes_Trait;
use Module_With_Settings_Trait;
use Module_With_Data_Available_State_Trait;
use Module_With_Tag_Trait;
use Module_With_Inline_Data_Trait;
use Feature_Metrics_Trait;
const PROVISION_ACCOUNT_TICKET_ID = 'googlesitekit_analytics_provision_account_ticket_id';
const READONLY_SCOPE = 'https://www.googleapis.com/auth/analytics.readonly';
const EDIT_SCOPE = 'https://www.googleapis.com/auth/analytics.edit';
/**
* Module slug name.
*/
const MODULE_SLUG = 'analytics-4';
/**
* Prefix used to fetch custom dimensions in reports.
*/
const CUSTOM_EVENT_PREFIX = 'customEvent:';
/**
* Custom dimensions tracked by Site Kit.
*/
const CUSTOM_DIMENSION_POST_AUTHOR = 'googlesitekit_post_author';
const CUSTOM_DIMENSION_POST_CATEGORIES = 'googlesitekit_post_categories';
/**
* Custom_Dimensions_Data_Available instance.
*
* @since 1.113.0
* @var Custom_Dimensions_Data_Available
*/
protected $custom_dimensions_data_available;
/**
* Reset_Audiences instance.
*
* @since 1.137.0
* @var Reset_Audiences
*/
protected $reset_audiences;
/**
* Resource_Data_Availability_Date instance.
*
* @since 1.127.0
* @var Resource_Data_Availability_Date
*/
protected $resource_data_availability_date;
/**
* Audience_Settings instance.
*
* @since 1.148.0
*
* @var Audience_Settings
*/
protected $audience_settings;
/**
* Audience_Utilities instance.
*
* @since 1.172.0
*
* @var Audience_Utilities
*/
protected $audience_utilities;
/**
* Constructor.
*
* @since 1.113.0
*
* @param Context $context Plugin context.
* @param Options $options Optional. Option API instance. Default is a new instance.
* @param User_Options $user_options Optional. User Option API instance. Default is a new instance.
* @param Authentication $authentication Optional. Authentication instance. Default is a new instance.
* @param Assets $assets Optional. Assets API instance. Default is a new instance.
*/
public function __construct(
Context $context,
?Options $options = null,
?User_Options $user_options = null,
?Authentication $authentication = null,
?Assets $assets = null
) {
parent::__construct( $context, $options, $user_options, $authentication, $assets );
$this->custom_dimensions_data_available = new Custom_Dimensions_Data_Available( $this->transients );
$this->reset_audiences = new Reset_Audiences( $this->user_options );
$this->audience_settings = new Audience_Settings( $this->options );
$this->audience_utilities = new Audience_Utilities( $this->audience_settings );
$this->resource_data_availability_date = new Resource_Data_Availability_Date( $this->transients, $this->get_settings(), $this->audience_settings );
}
/**
* Registers functionality through WordPress hooks.
*
* @since 1.30.0
* @since 1.101.0 Added a filter hook to add the required `https://www.googleapis.com/auth/tagmanager.readonly` scope for GTE support.
*/
public function register() {
$this->register_scopes_hook();
$this->register_inline_data();
$this->register_feature_metrics();
$synchronize_property = new Synchronize_Property(
$this,
$this->user_options
);
$synchronize_property->register();
$synchronize_adsense_linked = new Synchronize_AdSenseLinked(
$this,
$this->user_options,
$this->options
);
$synchronize_adsense_linked->register();
$synchronize_ads_linked = new Synchronize_AdsLinked(
$this,
$this->user_options
);
$synchronize_ads_linked->register();
$conversion_reporting_provider = new Conversion_Reporting_Provider(
$this->context,
$this->settings,
$this->user_options,
$this
);
$conversion_reporting_provider->register();
$this->audience_settings->register();
( new Advanced_Tracking( $this->context ) )->register();
add_action( 'admin_init', array( $synchronize_property, 'maybe_schedule_synchronize_property' ) );
add_action( 'admin_init', array( $synchronize_adsense_linked, 'maybe_schedule_synchronize_adsense_linked' ) );
add_action( 'load-toplevel_page_googlesitekit-dashboard', array( $synchronize_ads_linked, 'maybe_schedule_synchronize_ads_linked' ) );
add_action( 'admin_init', $this->get_method_proxy( 'handle_provisioning_callback' ) );
// For non-AMP and AMP.
add_action( 'wp_head', $this->get_method_proxy( 'print_tracking_opt_out' ), 0 );
// For Web Stories plugin.
add_action( 'web_stories_story_head', $this->get_method_proxy( 'print_tracking_opt_out' ), 0 );
// Analytics 4 tag placement logic.
add_action( 'template_redirect', array( $this, 'register_tag' ) );
$this->audience_settings->on_change(
function ( $old_value, $new_value ) {
// Ensure that the resource data availability dates for `availableAudiences` that no longer exist are reset.
$old_available_audiences = $old_value['availableAudiences'];
if ( $old_available_audiences ) {
$old_available_audience_names = array_map(
function ( $audience ) {
return $audience['name'];
},
$old_available_audiences
);
$new_available_audiences = $new_value['availableAudiences'] ?? array();
$new_available_audience_names = array_map(
function ( $audience ) {
return $audience['name'];
},
$new_available_audiences
);
$unavailable_audience_names = array_diff( $old_available_audience_names, $new_available_audience_names );
foreach ( $unavailable_audience_names as $unavailable_audience_name ) {
$this->resource_data_availability_date->reset_resource_date( $unavailable_audience_name, Resource_Data_Availability_Date::RESOURCE_TYPE_AUDIENCE );
}
}
}
);
$this->get_settings()->on_change(
function ( $old_value, $new_value ) {
// Ensure that the data available state is reset when the property ID or measurement ID changes.
if ( $old_value['propertyID'] !== $new_value['propertyID'] || $old_value['measurementID'] !== $new_value['measurementID'] ) {
$this->reset_data_available();
$this->custom_dimensions_data_available->reset_data_available();
$audience_settings = $this->audience_settings->get();
$available_audiences = $audience_settings['availableAudiences'] ?? array();
$available_audience_names = array_map(
function ( $audience ) {
return $audience['name'];
},
$available_audiences
);
$this->resource_data_availability_date->reset_all_resource_dates( $available_audience_names, $old_value['propertyID'] );
}
// Reset property specific settings when propertyID changes.
if ( $old_value['propertyID'] !== $new_value['propertyID'] ) {
$this->get_settings()->merge(
array(
'adSenseLinked' => false,
'adSenseLinkedLastSyncedAt' => 0,
'adsLinked' => false,
'adsLinkedLastSyncedAt' => 0,
'detectedEvents' => array(),
)
);
$this->audience_settings->delete();
if ( ! empty( $new_value['propertyID'] ) ) {
do_action( Synchronize_AdSenseLinked::CRON_SYNCHRONIZE_ADSENSE_LINKED );
// Reset event detection and new badge events.
$this->transients->delete( Conversion_Reporting_Events_Sync::DETECTED_EVENTS_TRANSIENT );
$this->transients->delete( Conversion_Reporting_Events_Sync::LOST_EVENTS_TRANSIENT );
$this->transients->delete( Conversion_Reporting_New_Badge_Events_Sync::NEW_EVENTS_BADGE_TRANSIENT );
$this->transients->set( Conversion_Reporting_New_Badge_Events_Sync::SKIP_NEW_BADGE_TRANSIENT, 1 );
do_action( Conversion_Reporting_Cron::CRON_ACTION );
}
// Reset audience specific settings.
$this->reset_audiences->reset_audience_data();
}
}
);
// Check if the property ID has changed and reset applicable settings to null.
//
// This is not done using the `get_settings()->merge` method because
// `Module_Settings::merge` doesn't support setting a value to `null`.
add_filter(
'pre_update_option_googlesitekit_analytics-4_settings',
function ( $new_value, $old_value ) {
if ( $new_value['propertyID'] !== $old_value['propertyID'] ) {
$new_value['availableCustomDimensions'] = null;
}
return $new_value;
},
10,
2
);
add_filter(
'googlesitekit_auth_scopes',
function ( array $scopes ) {
$oauth_client = $this->authentication->get_oauth_client();
$needs_tagmanager_scope = false;
$refined_scopes = $this->get_refined_scopes( $scopes );
if ( $oauth_client->has_sufficient_scopes(
array_merge(
$refined_scopes,
array(
'https://www.googleapis.com/auth/tagmanager.readonly',
),
)
) ) {
$needs_tagmanager_scope = true;
// Ensure the Tag Manager scope is not added as a required scope in the case where the user has
// granted the Analytics scope but not the Tag Manager scope, in order to allow the GTE-specific
// Unsatisfied Scopes notification to be displayed without the Additional Permissions Required
// modal also appearing.
} elseif ( ! $oauth_client->has_sufficient_scopes(
$refined_scopes
) ) {
$needs_tagmanager_scope = true;
}
if ( $needs_tagmanager_scope ) {
$refined_scopes[] = 'https://www.googleapis.com/auth/tagmanager.readonly';
}
return $refined_scopes;
}
);
add_filter( 'googlesitekit_allow_tracking_disabled', $this->get_method_proxy( 'filter_analytics_allow_tracking_disabled' ) );
// This hook adds the "Set up Google Analytics" step to the Site Kit
// setup flow.
//
// This filter is documented in
// Core\Authentication\Google_Proxy::get_metadata_fields.
add_filter(
'googlesitekit_proxy_setup_mode',
function ( $original_mode ) {
return ! $this->is_connected()
? 'analytics-step'
: $original_mode;
}
);
// Preload the path to avoid layout shift for audience setup CTA banner.
add_filter(
'googlesitekit_apifetch_preload_paths',
function ( $routes ) {
return array_merge(
$routes,
array(
'/' . REST_Routes::REST_ROOT . '/modules/analytics-4/data/audience-settings',
)
);
}
);
add_filter(
'googlesitekit_ads_measurement_connection_checks',
function ( $checks ) {
$checks[] = array( $this, 'check_ads_measurement_connection' );
return $checks;
},
20
);
}
/**
* Checks if the Analytics 4 module is connected and contributing to Ads measurement.
*
* Verifies connection status and settings to determine if Ads-related configurations
* (AdSense linked or Google Tag Container with AW- destination IDs) exist.
*
* @since 1.151.0
*
* @return bool True if Analytics 4 is connected and configured for Ads measurement; false otherwise.
*/
public function check_ads_measurement_connection() {
if ( ! $this->is_connected() ) {
return false;
}
$settings = $this->get_settings()->get();
if ( $settings['adsLinked'] ) {
return true;
}
foreach ( (array) $settings['googleTagContainerDestinationIDs'] as $destination_id ) {
if ( 0 === stripos( $destination_id, 'AW-' ) ) {
return true;
}
}
return false;
}
/**
* Gets required Google OAuth scopes for the module.
*
* @since 1.30.0
*
* @return array List of Google OAuth scopes.
*/
public function get_scopes() {
return array( self::READONLY_SCOPE );
}
/**
* Checks whether the module is connected.
*
* A module being connected means that all steps required as part of its activation are completed.
*
* @since 1.30.0
*
* @return bool True if module is connected, false otherwise.
*/
public function is_connected() {
$required_keys = array(
'accountID',
'propertyID',
'webDataStreamID',
'measurementID',
);
$options = $this->get_settings()->get();
foreach ( $required_keys as $required_key ) {
if ( empty( $options[ $required_key ] ) ) {
return false;
}
}
return parent::is_connected();
}
/**
* Cleans up when the module is activated.
*
* @since 1.107.0
*/
public function on_activation() {
$dismissed_items = new Dismissed_Items( $this->user_options );
$dismissed_items->remove( 'key-metrics-connect-ga4-cta-widget' );
}
/**
* Cleans up when the module is deactivated.
*
* @since 1.30.0
*/
public function on_deactivation() {
// We need to reset the resource data availability dates before deleting the settings.
// This is because the property ID and the audience resource names are pulled from settings.
$this->resource_data_availability_date->reset_all_resource_dates();
$this->get_settings()->delete();
$this->reset_data_available();
$this->custom_dimensions_data_available->reset_data_available();
$this->reset_audiences->reset_audience_data();
$this->audience_settings->delete();
}
/**
* Checks whether the AdSense module is connected.
*
* @since 1.121.0
*
* @return bool True if AdSense is connected, false otherwise.
*/
private function is_adsense_connected() {
$adsense_settings = ( new AdSense_Settings( $this->options ) )->get();
if ( empty( $adsense_settings['accountSetupComplete'] ) || empty( $adsense_settings['siteSetupComplete'] ) ) {
return false;
}
return true;
}
/**
* Gets an array of debug field definitions.
*
* @since 1.30.0
*
* @return array
*/
public function get_debug_fields() {
$settings = $this->get_settings()->get();
$debug_fields = array(
'analytics_4_account_id' => array(
'label' => __( 'Analytics: Account ID', 'google-site-kit' ),
'value' => $settings['accountID'],
'debug' => Debug_Data::redact_debug_value( $settings['accountID'] ),
),
'analytics_4_property_id' => array(
'label' => __( 'Analytics: Property ID', 'google-site-kit' ),
'value' => $settings['propertyID'],
'debug' => Debug_Data::redact_debug_value( $settings['propertyID'], 7 ),
),
'analytics_4_web_data_stream_id' => array(
'label' => __( 'Analytics: Web data stream ID', 'google-site-kit' ),
'value' => $settings['webDataStreamID'],
'debug' => Debug_Data::redact_debug_value( $settings['webDataStreamID'] ),
),
'analytics_4_measurement_id' => array(
'label' => __( 'Analytics: Measurement ID', 'google-site-kit' ),
'value' => $settings['measurementID'],
'debug' => Debug_Data::redact_debug_value( $settings['measurementID'] ),
),
'analytics_4_use_snippet' => array(
'label' => __( 'Analytics: Snippet placed', 'google-site-kit' ),
'value' => $settings['useSnippet'] ? __( 'Yes', 'google-site-kit' ) : __( 'No', 'google-site-kit' ),
'debug' => $settings['useSnippet'] ? 'yes' : 'no',
),
'analytics_4_available_custom_dimensions' => array(
'label' => __( 'Analytics: Available Custom Dimensions', 'google-site-kit' ),
'value' => empty( $settings['availableCustomDimensions'] )
? __( 'None', 'google-site-kit' )
: join(
/* translators: used between list items, there is a space after the comma */
__( ', ', 'google-site-kit' ),
$settings['availableCustomDimensions']
),
'debug' => empty( $settings['availableCustomDimensions'] )
? 'none'
: join( ', ', $settings['availableCustomDimensions'] ),
),
'analytics_4_ads_linked' => array(
'label' => __( 'Analytics: Ads Linked', 'google-site-kit' ),
'value' => $settings['adsLinked'] ? __( 'Connected', 'google-site-kit' ) : __( 'Not connected', 'google-site-kit' ),
'debug' => $settings['adsLinked'],
),
'analytics_4_ads_linked_last_synced_at' => array(
'label' => __( 'Analytics: Ads Linked Last Synced At', 'google-site-kit' ),
'value' => $settings['adsLinkedLastSyncedAt'] ? gmdate( 'Y-m-d H:i:s', $settings['adsLinkedLastSyncedAt'] ) : __( 'Never synced', 'google-site-kit' ),
'debug' => $settings['adsLinkedLastSyncedAt'],
),
);
if ( $this->is_adsense_connected() ) {
$debug_fields['analytics_4_adsense_linked'] = array(
'label' => __( 'Analytics: AdSense Linked', 'google-site-kit' ),
'value' => $settings['adSenseLinked'] ? __( 'Connected', 'google-site-kit' ) : __( 'Not connected', 'google-site-kit' ),
'debug' => Debug_Data::redact_debug_value( $settings['adSenseLinked'] ),
);
$debug_fields['analytics_4_adsense_linked_last_synced_at'] = array(
'label' => __( 'Analytics: AdSense Linked Last Synced At', 'google-site-kit' ),
'value' => $settings['adSenseLinkedLastSyncedAt'] ? gmdate( 'Y-m-d H:i:s', $settings['adSenseLinkedLastSyncedAt'] ) : __( 'Never synced', 'google-site-kit' ),
'debug' => Debug_Data::redact_debug_value( $settings['adSenseLinkedLastSyncedAt'] ),
);
}
// Return the SITE_KIT_AUDIENCE audiences.
$available_audiences = $this->audience_settings->get()['availableAudiences'] ?? array();
$site_kit_audiences = $this->audience_utilities->get_site_kit_audiences( $available_audiences );
$debug_fields['analytics_4_site_kit_audiences'] = array(
'label' => __( 'Analytics: Site created audiences', 'google-site-kit' ),
'value' => empty( $site_kit_audiences )
? __( 'None', 'google-site-kit' )
: join(
/* translators: used between list items, there is a space after the comma */
__( ', ', 'google-site-kit' ),
$site_kit_audiences
),
'debug' => empty( $site_kit_audiences )
? 'none'
: join( ', ', $site_kit_audiences ),
);
return $debug_fields;
}
/**
* Gets an array of internal feature metrics.
*
* @since 1.163.0
*
* @return array
*/
public function get_feature_metrics() {
$settings = $this->get_settings()->get();
return array(
'audseg_setup_completed' => (bool) $this->audience_settings->get()['audienceSegmentationSetupCompletedBy'],
'audseg_audience_count' => count( $this->audience_settings->get()['availableAudiences'] ?? array() ),
'analytics_adsense_linked' => $this->is_adsense_connected() && $settings['adSenseLinked'],
);
}
/**
* Gets map of datapoint to definition data for each.
*
* @since 1.30.0
*
* @return array Map of datapoints to their definitions.
*/
protected function get_datapoint_definitions() {
$datapoints = array(
'GET:account-summaries' => array( 'service' => 'analyticsadmin' ),
'GET:accounts' => array( 'service' => 'analyticsadmin' ),
'GET:ads-links' => array( 'service' => 'analyticsadmin' ),
'GET:adsense-links' => array( 'service' => 'analyticsadmin-v1alpha' ),
'GET:container-lookup' => array(
'service' => 'tagmanager',
'scopes' => array(
'https://www.googleapis.com/auth/tagmanager.readonly',
),
),
'GET:container-destinations' => array(
'service' => 'tagmanager',
'scopes' => array(
'https://www.googleapis.com/auth/tagmanager.readonly',
),
),
'GET:key-events' => array(
'service' => 'analyticsadmin',
'shareable' => true,
),
'POST:create-account-ticket' => new Create_Account_Ticket(
array(
'credentials' => $this->authentication->credentials()->get(),
'provisioning_redirect_uri' => $this->get_provisioning_redirect_uri(),
'service' => function () {
return $this->get_service( 'analyticsprovisioning' );
},
'scopes' => array( self::EDIT_SCOPE ),
'request_scopes_message' => __( 'You’ll need to grant Site Kit permission to create a new Analytics account on your behalf.', 'google-site-kit' ),
),
),
'GET:google-tag-settings' => new Get_Google_Tag_Settings(
array(
'service' => function () {
return $this->get_service( 'tagmanager' );
},
'scopes' => array(
'https://www.googleapis.com/auth/tagmanager.readonly',
),
)
),
'POST:create-property' => new Create_Property(
array(
'reference_site_url' => $this->context->get_reference_site_url(),
'service' => function () {
return $this->get_service( 'analyticsadmin' );
},
'scopes' => array( self::EDIT_SCOPE ),
'request_scopes_message' => __( 'You’ll need to grant Site Kit permission to create a new Analytics property on your behalf.', 'google-site-kit' ),
)
),
'POST:create-webdatastream' => new Create_Webdatastream(
array(
'reference_site_url' => $this->context->get_reference_site_url(),
'service' => function () {
return $this->get_service( 'analyticsadmin' );
},
'scopes' => array( self::EDIT_SCOPE ),
'request_scopes_message' => __( 'You’ll need to grant Site Kit permission to create a new Analytics web data stream for this site on your behalf.', 'google-site-kit' ),
)
),
'GET:properties' => array( 'service' => 'analyticsadmin' ),
'GET:property' => array( 'service' => 'analyticsadmin' ),
'GET:has-property-access' => array( 'service' => 'analyticsdata' ),
'GET:report' => array(
'service' => 'analyticsdata',
'shareable' => true,
),
'GET:batch-report' => array(
'service' => 'analyticsdata',
'shareable' => true,
),
'GET:webdatastreams' => new Get_Webdatastreams(
array(
'service' => function () {
return $this->get_service( 'analyticsadmin' );
},
)
),
'GET:webdatastreams-batch' => new Get_Webdatastreams_Batch(
array(
'service' => function () {
return $this->get_service( 'analyticsadmin' );
},
)
),
'GET:enhanced-measurement-settings' => new Get_Enhanced_Measurement_Settings(
array(
'service' => function () {
return $this->get_service( 'analyticsadmin-v1alpha' );
},
)
),
'POST:enhanced-measurement-settings' => new Update_Enhanced_Measurement_Settings(
array(
'service' => function () {
return $this->get_service( 'analyticsadmin-v1alpha' );
},
'scopes' => array( self::EDIT_SCOPE ),
'request_scopes_message' => __( 'You’ll need to grant Site Kit permission to update enhanced measurement settings for this Analytics web data stream on your behalf.', 'google-site-kit' ),
)
),
'POST:create-custom-dimension' => new Create_Custom_Dimension(
array(
'service' => function () {
return $this->get_service( 'analyticsadmin' );
},
'scopes' => array( self::EDIT_SCOPE ),
'request_scopes_message' => __( 'You’ll need to grant Site Kit permission to create a new Analytics custom dimension on your behalf.', 'google-site-kit' ),
)
),
'POST:sync-custom-dimensions' => new Sync_Custom_Dimensions(
array(
'service' => function () {
return $this->get_service( 'analyticsadmin' );
},
'settings' => $this->get_settings(),
'custom_dimensions_data_available' => $this->custom_dimensions_data_available,
)
),
'POST:custom-dimension-data-available' => new Save_Custom_Dimension_Data_Available(
array(
'custom_dimensions_data_available' => $this->custom_dimensions_data_available,
)
),
'POST:set-google-tag-id-mismatch' => new Set_Google_Tag_ID_Mismatch(
array(
'transients' => $this->transients,
'service' => '',
)
),
'POST:set-is-web-data-stream-unavailable' => new Set_Is_Web_Data_Stream_Unavailable(
array(
'transients' => $this->transients,
'settings' => $this->get_settings(),
'service' => '',
)
),
'POST:create-audience' => array(
'service' => 'analyticsadmin-v1alpha',
'scopes' => array( self::EDIT_SCOPE ),
'request_scopes_message' => __( 'You’ll need to grant Site Kit permission to create new audiences for your Analytics property on your behalf.', 'google-site-kit' ),
),
'POST:save-resource-data-availability-date' => new Save_Resource_Data_Availability_Date(
array(
'resource_data_availability_date' => $this->resource_data_availability_date,
'service' => '',
)
),
'POST:sync-audiences' => array(
'service' => 'analyticsadmin-v1alpha',
'shareable' => true,
),
'GET:audience-settings' => array(
'service' => '',
'shareable' => true,
),
'POST:save-audience-settings' => array(
'service' => '',
),
);
return $datapoints;
}
/**
* Creates a new property for provided account.
*
* @since 1.35.0
* @since 1.98.0 Added `$options` parameter.
*
* @param string $account_id Account ID.
* @param array $options {
* Property options.
*
* @type string $displayName Display name.
* @type string $timezone Timezone.
* }
* @return Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaProperty A new property.
*/
private function create_property( $account_id, $options = array() ) {
if ( ! empty( $options['displayName'] ) ) {
$display_name = sanitize_text_field( $options['displayName'] );
} else {
$display_name = URL::parse( $this->context->get_reference_site_url(), PHP_URL_HOST );
}
if ( ! empty( $options['timezone'] ) ) {
$timezone = $options['timezone'];
} else {
$timezone = get_option( 'timezone_string' ) ?: 'UTC';
}
$property = new Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaProperty();
$property->setParent( self::normalize_account_id( $account_id ) );
$property->setDisplayName( $display_name );
$property->setTimeZone( $timezone );
return $this->get_service( 'analyticsadmin' )->properties->create( $property );
}
/**
* Creates a new web data stream for provided property.
*
* @since 1.35.0
* @since 1.98.0 Added `$options` parameter.
*
* @param string $property_id Property ID.
* @param array $options {
* Web data stream options.
*
* @type string $displayName Display name.
* }
* @return GoogleAnalyticsAdminV1betaDataStream A new web data stream.
*/
private function create_webdatastream( $property_id, $options = array() ) {
$site_url = $this->context->get_reference_site_url();
if ( ! empty( $options['displayName'] ) ) {
$display_name = sanitize_text_field( $options['displayName'] );
} else {
$display_name = URL::parse( $site_url, PHP_URL_HOST );
}
$data = new GoogleAnalyticsAdminV1betaDataStreamWebStreamData();
$data->setDefaultUri( $site_url );
$datastream = new GoogleAnalyticsAdminV1betaDataStream();
$datastream->setDisplayName( $display_name );
$datastream->setType( 'WEB_DATA_STREAM' );
$datastream->setWebStreamData( $data );
/* @var Google_Service_GoogleAnalyticsAdmin $analyticsadmin phpcs:ignore Squiz.PHP.CommentedOutCode.Found */
$analyticsadmin = $this->get_service( 'analyticsadmin' );
return $analyticsadmin
->properties_dataStreams // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase
->create(
self::normalize_property_id( $property_id ),
$datastream
);
}
/**
* Outputs the user tracking opt-out script.
*
* This script opts out of all Google Analytics tracking, for all measurement IDs, regardless of implementation.
* E.g. via Tag Manager, etc.
*
* @since 1.5.0
* @since 1.121.0 Migrated from the Analytics (UA) class and adapted to only work for GA4 properties.
* @link https://developers.google.com/analytics/devguides/collection/analyticsjs/user-opt-out
*/
private function print_tracking_opt_out() {
$settings = $this->get_settings()->get();
$account_id = $settings['accountID'];
$property_id = $settings['propertyID'];
if ( ! $this->is_tracking_disabled() ) {
return;
}
if ( $this->context->is_amp() ) : ?>
<!-- <?php esc_html_e( 'Google Analytics AMP opt-out snippet added by Site Kit', 'google-site-kit' ); ?> -->
<meta name="ga-opt-out" content="" id="__gaOptOutExtension">
<!-- <?php esc_html_e( 'End Google Analytics AMP opt-out snippet added by Site Kit', 'google-site-kit' ); ?> -->
<?php else : ?>
<!-- <?php esc_html_e( 'Google Analytics opt-out snippet added by Site Kit', 'google-site-kit' ); ?> -->
<?php
// Opt-out should always use the measurement ID, even when using a GT tag.
$tag_id = $this->get_measurement_id();
if ( ! empty( $tag_id ) ) {
BC_Functions::wp_print_inline_script_tag( sprintf( 'window["ga-disable-%s"] = true;', esc_attr( $tag_id ) ) );
}
?>
<?php do_action( 'googlesitekit_analytics_tracking_opt_out', $property_id, $account_id ); ?>
<!-- <?php esc_html_e( 'End Google Analytics opt-out snippet added by Site Kit', 'google-site-kit' ); ?> -->
<?php
endif;
}
/**
* Checks whether or not tracking snippet should be contextually disabled for this request.
*
* @since 1.1.0
* @since 1.121.0 Migrated here from the Analytics (UA) class.
*
* @return bool
*/
protected function is_tracking_disabled() {
$settings = $this->get_settings()->get();
// This filter is documented in Tag_Manager::filter_analytics_allow_tracking_disabled.
if ( ! apply_filters( 'googlesitekit_allow_tracking_disabled', $settings['useSnippet'] ) ) {
return false;
}
$disable_logged_in_users = in_array( 'loggedinUsers', $settings['trackingDisabled'], true ) && is_user_logged_in();
$disable_content_creators = in_array( 'contentCreators', $settings['trackingDisabled'], true ) && current_user_can( 'edit_posts' );
$disabled = $disable_logged_in_users || $disable_content_creators;
/**
* Filters whether or not the Analytics tracking snippet is output for the current request.
*
* @since 1.1.0
*
* @param bool $disabled Whether to disable tracking or not.
*/
return (bool) apply_filters( 'googlesitekit_analytics_tracking_disabled', $disabled );
}