Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

For #11704 Add leanplum attributes for tracking protection #11965

Merged
merged 4 commits into from
Jul 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,15 @@ class LeanplumMetricsService(private val application: Application) : MetricsServ

val installedApps = MozillaProductDetector.getInstalledMozillaProducts(application)

val trackingProtection = application.settings().run {
when {
!shouldUseTrackingProtection -> "none"
useStandardTrackingProtection -> "standard"
useStrictTrackingProtection -> "strict"
else -> "custom"
}
}

Leanplum.start(application, hashMapOf(
"default_browser" to MozillaProductDetector.getMozillaBrowserDefault(application).orEmpty(),
"fennec_installed" to installedApps.contains(MozillaProducts.FIREFOX.productName),
Expand All @@ -110,6 +119,8 @@ class LeanplumMetricsService(private val application: Application) : MetricsServ
"fxa_signed_in" to application.settings().fxaSignedIn,
"fxa_has_synced_items" to application.settings().fxaHasSyncedItems,
"search_widget_installed" to application.settings().searchWidgetInstalled,
"tracking_protection_enabled" to application.settings().shouldUseTrackingProtection,
"tracking_protection_setting" to trackingProtection,
"fenix" to true
))

Expand Down
10 changes: 10 additions & 0 deletions docs/mma.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,16 @@ User Attributes
<td>A boolean indicating that the user has at least one search widget placed on the home screen</td>
<td><a href="https://github.com/mozilla-mobile/fenix/pull/4694#issuecomment-520591275">#4694</a></td>
</tr>
<tr>
<td>`tracking_protection_enabled`</td>
jhugman marked this conversation as resolved.
Show resolved Hide resolved
<td>A boolean indicating that the user has enabled tracking protection</td>
<td><a href="https://github.com/mozilla-mobile/fenix/pull/11965#issuecomment-649731798">#11965</a></td>
</tr>
<tr>
<td>`tracking_protection_setting`</td>
<td>A string indicating the level at which the user has set tracking protection. Possible values are `none`, `standard`, `strict` and `custom`</td>
<td><a href="https://github.com/mozilla-mobile/fenix/pull/11965#issuecomment-649731798">#11965</a></td>
</tr>
<tr>
<td>`fenix`</td>
<td>A boolean indicating that this is a Fenix installation</td>
Expand Down