Skip to content

Commit

Permalink
Merge branch 'main' into upload-worker-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
sirambd committed Nov 7, 2024
2 parents c439491 + f517c24 commit b58fa35
Show file tree
Hide file tree
Showing 10 changed files with 206 additions and 0 deletions.
42 changes: 42 additions & 0 deletions Core2/Matomo/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
}

android {
namespace = "com.infomaniak.matomo"
compileSdk = 34

defaultConfig {
minSdk = 24

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles("consumer-rules.pro")

buildConfigField("String", "MATOMO_URL", "\"https://analytics.infomaniak.com/matomo.php\"")
}

buildTypes {
release {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

buildFeatures {
buildConfig = true
}

kotlinOptions {
jvmTarget = "1.8"
}
}

dependencies {
api(core2.matomo)
}
Empty file added Core2/Matomo/consumer-rules.pro
Empty file.
21 changes: 21 additions & 0 deletions Core2/Matomo/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
107 changes: 107 additions & 0 deletions Core2/Matomo/src/main/java/com/infomaniak/matomo/Matomo.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
/*
* Infomaniak SwissTransfer - Android
* Copyright (C) 2024 Infomaniak Network SA
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.infomaniak.matomo

import android.app.Activity
import android.content.Context
import android.util.Log
import org.matomo.sdk.Matomo
import org.matomo.sdk.Tracker
import org.matomo.sdk.TrackerBuilder
import org.matomo.sdk.extra.DownloadTracker
import org.matomo.sdk.extra.TrackHelper

interface Matomo {

val Context.tracker: Tracker
val siteId: Int

fun Context.buildTracker(shouldOptOut: Boolean = false): Tracker {
return TrackerBuilder(BuildConfig.MATOMO_URL, siteId, "AndroidTracker").build(Matomo.getInstance(this)).also {
// Put a tracker on app installs to have statistics on the number of times the app is installed or updated
TrackHelper.track().download().identifier(DownloadTracker.Extra.ApkChecksum(this)).with(it)
it.isOptOut = shouldOptOut
}
}

fun Context.addTrackingCallbackForDebugLog() {
if (BuildConfig.DEBUG) {
tracker.addTrackingCallback { trackMe ->
trackMe.also {
it.toMap().forEach { entry ->
when (entry.key) {
"action_name" -> Log.d("TrackerScreen", entry.value)
"e_c" -> Log.d("TrackerEvent", "Category : ${entry.value}")
"e_n" -> Log.d("TrackerEvent", "Name : ${entry.value}")
"e_a" -> Log.d("TrackerEvent", "Action : ${entry.value}")
"e_v" -> Log.d("TrackerEvent", "Value : ${entry.value}")
}
}
}
}
}
}

fun Context.trackUserId(userId: Int) {
tracker.userId = userId.toString()
}

//region Track screens
fun Activity.trackScreen() {
TrackHelper.track().screen(this).title(this::class.java.simpleName).with(tracker)
}

fun Context.trackScreen(path: String, title: String) {
TrackHelper.track().screen(path).title(title).with(tracker)
}
//endregion

//region Track events
fun Context.trackEvent(category: String, name: String, action: TrackerAction = TrackerAction.CLICK, value: Float? = null) {
TrackHelper.track()
.event(category, action.toString())
.name(name)
.let { if (value != null) it.value(value) else it }
.with(tracker)
}

fun Context.trackAccountEvent(name: String, action: TrackerAction = TrackerAction.CLICK, value: Float? = null) {
trackEvent("account", name, action, value)
}
//endregion

fun Boolean.toFloat() = if (this) 1.0f else 0.0f

fun shouldOptOut(context: Context, shouldOptOut: Boolean) {
context.tracker.isOptOut = shouldOptOut
}

enum class TrackerAction {
CLICK,
DATA,
DRAG,
INPUT,
LONG_PRESS;

override fun toString() = name.lowercase().snakeToCamelCase()

private fun String.snakeToCamelCase(): String {
return replace("_[a-zA-Z]".toRegex()) { it.value.replace("_", "").uppercase() }
}
}
}
2 changes: 2 additions & 0 deletions Core2/gradle/core2.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[versions]
sentry-android = "7.15.0"
matomo = "4.1.4"

[libraries]
sentry-android = { module = "io.sentry:sentry-android", version.ref = "sentry-android" }
matomo = { module = "com.github.matomo-org:matomo-sdk-android", version.ref = "matomo" }
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ sentry {
dependencies {
implementation(project(":Core2"))
implementation(project(":Core2:Sentry"))
implementation(project(":Core2:Matomo"))
implementation(project(":FileTypes"))
implementation(kotlin("reflect"))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import androidx.compose.runtime.getValue
import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen
import androidx.lifecycle.compose.collectAsStateWithLifecycle
import com.infomaniak.multiplatform_swisstransfer.common.models.Theme
import com.infomaniak.swisstransfer.ui.MatomoSwissTransfer.trackScreen
import com.infomaniak.swisstransfer.ui.screen.main.MainScreen
import com.infomaniak.swisstransfer.ui.screen.main.settings.SettingsViewModel
import com.infomaniak.swisstransfer.ui.theme.SwissTransferTheme
Expand All @@ -48,6 +49,7 @@ class MainActivity : ComponentActivity() {
MainScreen()
}
}
trackScreen()
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
* Infomaniak SwissTransfer - Android
* Copyright (C) 2024 Infomaniak Network SA
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.infomaniak.swisstransfer.ui

import android.content.Context
import com.infomaniak.matomo.Matomo
import org.matomo.sdk.Tracker

object MatomoSwissTransfer : Matomo {

override val Context.tracker: Tracker get() = (this as MainActivity).buildTracker() //TODO fetch appSettings for opt out
override val siteId: Int = -1 //TODO replace with the right site ID when we have one
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.activity.enableEdgeToEdge
import com.infomaniak.swisstransfer.ui.MatomoSwissTransfer.trackScreen
import com.infomaniak.swisstransfer.ui.screen.newtransfer.NewTransferScreen
import com.infomaniak.swisstransfer.ui.theme.SwissTransferTheme
import dagger.hilt.android.AndroidEntryPoint
Expand All @@ -36,5 +37,6 @@ class NewTransferActivity : ComponentActivity() {
NewTransferScreen(closeActivity = { finish() })
}
}
trackScreen()
}
}
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ rootProject.name = "android-SwissTransfer"
include(":app")
include(":Core2")
include(":Core2:Sentry")
include(":Core2:Matomo")
include(":FileTypes")

0 comments on commit b58fa35

Please sign in to comment.