-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
017723f
commit 3b79fc7
Showing
7 changed files
with
207 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
plugins { | ||
alias(libs.plugins.android.library) | ||
alias(libs.plugins.kotlin.android) | ||
} | ||
|
||
android { | ||
namespace = "com.infomaniak.network" | ||
compileSdk = 34 | ||
|
||
defaultConfig { | ||
minSdk = 24 | ||
|
||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
consumerProguardFiles("consumer-rules.pro") | ||
} | ||
|
||
buildTypes { | ||
release { | ||
isMinifyEnabled = false | ||
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
} | ||
kotlinOptions { | ||
jvmTarget = "1.8" | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(libs.androidx.core.ktx) | ||
implementation(core2.sentry.android) | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!-- | ||
~ 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/>. | ||
--> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
|
||
</manifest> |
127 changes: 127 additions & 0 deletions
127
Core2/Network/src/main/java/com/infomaniak/network/NetworkAvailability.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
/* | ||
* Infomaniak Core - 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.network | ||
|
||
import android.content.Context | ||
import android.net.ConnectivityManager | ||
import android.net.ConnectivityManager.NetworkCallback | ||
import android.net.Network | ||
import android.net.NetworkCapabilities | ||
import android.net.NetworkRequest | ||
import android.os.Build | ||
import io.sentry.Sentry | ||
import kotlinx.coroutines.CoroutineDispatcher | ||
import kotlinx.coroutines.Dispatchers | ||
import kotlinx.coroutines.channels.ProducerScope | ||
import kotlinx.coroutines.channels.awaitClose | ||
import kotlinx.coroutines.flow.Flow | ||
import kotlinx.coroutines.flow.callbackFlow | ||
import kotlinx.coroutines.launch | ||
import kotlinx.coroutines.sync.Mutex | ||
import kotlinx.coroutines.sync.withLock | ||
|
||
class NetworkAvailability(private val context: Context, private val ioDispatcher: CoroutineDispatcher = Dispatchers.IO) { | ||
|
||
private val connectivityManager by lazy { context.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager } | ||
private val mutex = Mutex() | ||
|
||
val isNetworkAvailable: Flow<Boolean> = callbackFlow { | ||
val networks = mutableListOf<Network>() | ||
|
||
val callback = object : NetworkCallback() { | ||
|
||
override fun onAvailable(network: Network) { | ||
launch { | ||
mutex.withLock { | ||
networks.add(network) | ||
sendNetworkAvailability(networks) | ||
} | ||
} | ||
} | ||
|
||
override fun onLost(network: Network) { | ||
launch { | ||
mutex.withLock { | ||
networks.remove(network) | ||
sendNetworkAvailability(networks) | ||
} | ||
} | ||
} | ||
} | ||
|
||
launch(ioDispatcher) { | ||
send(getInitialNetworkAvailability(connectivityManager)) | ||
} | ||
|
||
registerNetworkCallback(connectivityManager, callback) | ||
|
||
awaitClose { unregisterNetworkCallback(connectivityManager, callback) } | ||
} | ||
|
||
private suspend fun ProducerScope<Boolean>.registerNetworkCallback( | ||
connectivityManager: ConnectivityManager, | ||
callback: NetworkCallback, | ||
) { | ||
runCatching { | ||
connectivityManager.registerNetworkCallback(networkRequestBuilder(), callback) | ||
}.onFailure { exception -> | ||
// Fix potential Exception thrown by ConnectivityManager on Android 11 | ||
// Already fixed in Android S and above | ||
// https://issuetracker.google.com/issues/175055271 | ||
Sentry.captureException(exception) | ||
send(false) | ||
} | ||
} | ||
|
||
private fun unregisterNetworkCallback(connectivityManager: ConnectivityManager, callback: NetworkCallback) { | ||
runCatching { | ||
connectivityManager.unregisterNetworkCallback(callback) | ||
}.onFailure { exception -> | ||
Sentry.captureException(exception) | ||
} | ||
} | ||
|
||
@Suppress("DEPRECATION") | ||
private fun getInitialNetworkAvailability(connectivityManager: ConnectivityManager): Boolean { | ||
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { | ||
connectivityManager.activeNetwork?.let(::hasInternetConnectivity) ?: false | ||
} else { | ||
connectivityManager.activeNetworkInfo?.isConnected ?: false | ||
} | ||
} | ||
|
||
private fun ProducerScope<Boolean>.sendNetworkAvailability(networks: List<Network>) { | ||
launch(ioDispatcher) { send(hasAvailableNetwork(networks)) } | ||
} | ||
|
||
private fun networkRequestBuilder(): NetworkRequest { | ||
return NetworkRequest.Builder().apply { | ||
addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET) | ||
}.build() | ||
} | ||
|
||
private fun hasInternetConnectivity(network: Network) = runCatching { | ||
network.getByName(ROOT_SERVER_URL) != null | ||
}.getOrDefault(false) | ||
|
||
private suspend fun hasAvailableNetwork(networks: List<Network>) = mutex.withLock { networks.any(::hasInternetConnectivity) } | ||
|
||
companion object { | ||
private const val ROOT_SERVER_URL = "a.root-servers.net" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters