-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bugfix Check Network Connection When File Item Clicked #12093
Merged
tobiasKaminsky
merged 22 commits into
master
from
bugfix/Despite-connection-is-restored-message-about-unreachable-server-still-present-9652182
Dec 11, 2023
Merged
Changes from 13 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
bfccb3b
Check network connection when file item clicked
alperozturk96 497faaa
Fix code analytics
alperozturk96 55c7aca
Analysis: update lint results to reflect reduced error/warning count
invalid-email-address e202ce3
Merge master
alperozturk96 af0ea73
Merge remote-tracking branch 'origin/bugfix/Despite-connection-is-res…
alperozturk96 1ae36e9
Analysis: update lint results to reflect reduced error/warning count
invalid-email-address 95931f2
Merge master
alperozturk96 c3a9060
Analysis: update lint results to reflect reduced error/warning count
invalid-email-address 1551873
Revert styling changes
alperozturk96 a37e564
Merge remote-tracking branch 'origin/bugfix/Despite-connection-is-res…
alperozturk96 6dbf383
Optimize imports
alperozturk96 a79ba9d
Remove extra space in uploadFiles
alperozturk96 32d1e25
Merge master
alperozturk96 4f7b486
Use ConnectivityServiceImpl
alperozturk96 0803ecc
Merge master
alperozturk96 8ef5721
Merge master
alperozturk96 71d2983
Merge branch 'master' into bugfix/Despite-connection-is-restored-mess…
AndyScherzinger 07bb2f4
Use interface rather than service
alperozturk96 0541fbc
Remove public access modifier
alperozturk96 c9ecd1b
Merge master
alperozturk96 c380ff1
Add missing interface method to tests
alperozturk96 8be0dbe
Merge master
alperozturk96 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
app/src/main/java/com/nextcloud/client/network/ConnectivityObserver.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,44 @@ | ||
/* | ||
* Nextcloud Android client application | ||
* | ||
* @author Alper Ozturk | ||
* Copyright (C) 2023 Alper Ozturk | ||
* Copyright (C) 2023 Nextcloud GmbH | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero 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 Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.nextcloud.client.network | ||
|
||
import android.content.Context | ||
import android.net.ConnectivityManager | ||
import android.net.NetworkCapabilities | ||
|
||
object ConnectivityObserver { | ||
|
||
fun isConnected(context: Context): Boolean { | ||
val connectivityManager: ConnectivityManager = | ||
context.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager | ||
val nw = connectivityManager.activeNetwork | ||
val actNw = connectivityManager.getNetworkCapabilities(nw) ?: return false | ||
|
||
return when { | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_WIFI) -> true | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_CELLULAR) -> true | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_ETHERNET) -> true | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_BLUETOOTH) -> true | ||
else -> false | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already have ConnectivityService for this.
Please use/combine those.