-
Notifications
You must be signed in to change notification settings - Fork 341
Expand file tree
/
Copy pathSettings.php
More file actions
209 lines (186 loc) · 5.89 KB
/
Settings.php
File metadata and controls
209 lines (186 loc) · 5.89 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
<?php
/**
* Class Google\Site_Kit\Modules\Analytics_4\Settings
*
* @package Google\Site_Kit\Modules\Analytics_4
* @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\Analytics_4;
use Google\Site_Kit\Core\Modules\Module_Settings;
use Google\Site_Kit\Core\Storage\Setting_With_Owned_Keys_Interface;
use Google\Site_Kit\Core\Storage\Setting_With_Owned_Keys_Trait;
use Google\Site_Kit\Core\Storage\Setting_With_ViewOnly_Keys_Interface;
use Google\Site_Kit\Core\Util\Method_Proxy_Trait;
/**
* Class for Analytics 4 settings.
*
* @since 1.30.0
* @access private
* @ignore
*/
class Settings extends Module_Settings implements Setting_With_Owned_Keys_Interface, Setting_With_ViewOnly_Keys_Interface {
use Setting_With_Owned_Keys_Trait;
use Method_Proxy_Trait;
const OPTION = 'googlesitekit_analytics-4_settings';
/**
* Registers the setting in WordPress.
*
* @since 1.30.0
*/
public function register() {
parent::register();
$this->register_owned_keys();
}
/**
* Returns keys for owned settings.
*
* @since 1.30.0
*
* @return array An array of keys for owned settings.
*/
public function get_owned_keys() {
return array(
'accountID',
'propertyID',
'webDataStreamID',
'measurementID',
'googleTagID',
'googleTagAccountID',
'googleTagContainerID',
);
}
/**
* Returns keys for view-only settings.
*
* @since 1.113.0
*
* @return array An array of keys for view-only settings.
*/
public function get_view_only_keys() {
return array(
'availableCustomDimensions',
'adSenseLinked',
'detectedEvents',
'newConversionEventsLastUpdateAt',
'lostConversionEventsLastUpdateAt',
);
}
/**
* Gets the default value.
*
* @since 1.30.0
*
* @return array
*/
protected function get_default() {
return array(
'ownerID' => 0,
'accountID' => '',
'adsConversionID' => '',
'propertyID' => '',
'webDataStreamID' => '',
'measurementID' => '',
'trackingDisabled' => array( 'loggedinUsers' ),
'useSnippet' => true,
'googleTagID' => '',
'googleTagAccountID' => '',
'googleTagContainerID' => '',
'googleTagContainerDestinationIDs' => null,
'googleTagLastSyncedAtMs' => 0,
'availableCustomDimensions' => null,
'propertyCreateTime' => 0,
'adSenseLinked' => false,
'adSenseLinkedLastSyncedAt' => 0,
'adsLinked' => false,
'adsLinkedLastSyncedAt' => 0,
'detectedEvents' => array(),
'newConversionEventsLastUpdateAt' => 0,
'lostConversionEventsLastUpdateAt' => 0,
);
}
/**
* Gets the callback for sanitizing the setting's value before saving.
*
* @since 1.30.0
*
* @return callable|null
*/
protected function get_sanitize_callback() {
return function ( $option ) {
if ( is_array( $option ) ) {
if ( isset( $option['useSnippet'] ) ) {
$option['useSnippet'] = (bool) $option['useSnippet'];
}
if ( isset( $option['googleTagID'] ) ) {
if ( ! preg_match( '/^(G|GT|AW)-[a-zA-Z0-9]+$/', $option['googleTagID'] ) ) {
$option['googleTagID'] = '';
}
}
if ( isset( $option['trackingDisabled'] ) ) {
// Prevent other options from being saved if 'loggedinUsers' is selected.
if ( in_array( 'loggedinUsers', $option['trackingDisabled'], true ) ) {
$option['trackingDisabled'] = array( 'loggedinUsers' );
} else {
$option['trackingDisabled'] = (array) $option['trackingDisabled'];
}
}
$numeric_properties = array( 'googleTagAccountID', 'googleTagContainerID' );
foreach ( $numeric_properties as $numeric_property ) {
if ( isset( $option[ $numeric_property ] ) ) {
if ( ! is_numeric( $option[ $numeric_property ] ) || ! $option[ $numeric_property ] > 0 ) {
$option[ $numeric_property ] = '';
}
}
}
if ( isset( $option['googleTagContainerDestinationIDs'] ) ) {
if ( ! is_array( $option['googleTagContainerDestinationIDs'] ) ) {
$option['googleTagContainerDestinationIDs'] = null;
}
}
if ( isset( $option['availableCustomDimensions'] ) ) {
if ( is_array( $option['availableCustomDimensions'] ) ) {
$valid_dimensions = array_filter(
$option['availableCustomDimensions'],
function ( $dimension ) {
return is_string( $dimension ) && strpos( $dimension, 'googlesitekit_' ) === 0;
}
);
$option['availableCustomDimensions'] = array_values( $valid_dimensions );
} else {
$option['availableCustomDimensions'] = null;
}
}
if ( isset( $option['adSenseLinked'] ) ) {
$option['adSenseLinked'] = (bool) $option['adSenseLinked'];
}
if ( isset( $option['adSenseLinkedLastSyncedAt'] ) ) {
if ( ! is_int( $option['adSenseLinkedLastSyncedAt'] ) ) {
$option['adSenseLinkedLastSyncedAt'] = 0;
}
}
if ( isset( $option['adsLinked'] ) ) {
$option['adsLinked'] = (bool) $option['adsLinked'];
}
if ( isset( $option['adsLinkedLastSyncedAt'] ) ) {
if ( ! is_int( $option['adsLinkedLastSyncedAt'] ) ) {
$option['adsLinkedLastSyncedAt'] = 0;
}
}
if ( isset( $option['newConversionEventsLastUpdateAt'] ) ) {
if ( ! is_int( $option['newConversionEventsLastUpdateAt'] ) ) {
$option['newConversionEventsLastUpdateAt'] = 0;
}
}
if ( isset( $option['lostConversionEventsLastUpdateAt'] ) ) {
if ( ! is_int( $option['lostConversionEventsLastUpdateAt'] ) ) {
$option['lostConversionEventsLastUpdateAt'] = 0;
}
}
}
return $option;
};
}
}