Skip to content
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
Show file tree
Hide file tree
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 Oct 25, 2023
497faaa
Fix code analytics
alperozturk96 Oct 25, 2023
55c7aca
Analysis: update lint results to reflect reduced error/warning count
invalid-email-address Oct 25, 2023
e202ce3
Merge master
alperozturk96 Oct 26, 2023
af0ea73
Merge remote-tracking branch 'origin/bugfix/Despite-connection-is-res…
alperozturk96 Oct 26, 2023
1ae36e9
Analysis: update lint results to reflect reduced error/warning count
invalid-email-address Oct 26, 2023
95931f2
Merge master
alperozturk96 Oct 31, 2023
c3a9060
Analysis: update lint results to reflect reduced error/warning count
invalid-email-address Oct 31, 2023
1551873
Revert styling changes
alperozturk96 Oct 31, 2023
a37e564
Merge remote-tracking branch 'origin/bugfix/Despite-connection-is-res…
alperozturk96 Oct 31, 2023
6dbf383
Optimize imports
alperozturk96 Oct 31, 2023
a79ba9d
Remove extra space in uploadFiles
alperozturk96 Oct 31, 2023
32d1e25
Merge master
alperozturk96 Nov 2, 2023
4f7b486
Use ConnectivityServiceImpl
alperozturk96 Nov 8, 2023
0803ecc
Merge master
alperozturk96 Nov 9, 2023
8ef5721
Merge master
alperozturk96 Nov 9, 2023
71d2983
Merge branch 'master' into bugfix/Despite-connection-is-restored-mess…
AndyScherzinger Nov 9, 2023
07bb2f4
Use interface rather than service
alperozturk96 Nov 10, 2023
0541fbc
Remove public access modifier
alperozturk96 Nov 10, 2023
c9ecd1b
Merge master
alperozturk96 Nov 22, 2023
c380ff1
Add missing interface method to tests
alperozturk96 Nov 22, 2023
8be0dbe
Merge master
alperozturk96 Dec 5, 2023
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
@@ -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 {
Copy link
Member

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.


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
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
import com.nextcloud.client.account.User;
import com.nextcloud.client.account.UserAccountManager;
import com.nextcloud.client.jobs.BackgroundJobManager;
import com.nextcloud.client.network.ConnectivityObserver;
import com.nextcloud.client.network.ConnectivityService;
import com.nextcloud.utils.EditorUtils;
import com.owncloud.android.MainApp;
Expand Down Expand Up @@ -240,6 +241,12 @@ protected void onCreate(Bundle savedInstanceState) {
}
}

public void checkInternetConnection() {
if (ConnectivityObserver.INSTANCE.isConnected(this)) {
hideInfoBox();
}
}

@Override
protected void onStart() {
super.onStart();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ protected final void showInfoBox(@StringRes int text) {
/**
* Hides the toolbar's info box.
*/
@VisibleForTesting
public final void hideInfoBox() {
mInfoBox.setVisibility(View.GONE);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -561,8 +561,7 @@ public void uploadFiles() {
getActivity(),
((FileActivity) getActivity()).getUser().orElseThrow(RuntimeException::new),
FileDisplayActivity.REQUEST_CODE__SELECT_FILES_FROM_FILE_SYSTEM,
getCurrentFile().isEncrypted()
);
getCurrentFile().isEncrypted());
}

@Override
Expand Down Expand Up @@ -976,6 +975,8 @@ public boolean onLongItemClicked(OCFile file) {

@Override
public void onItemClicked(OCFile file) {
((FileActivity) mContainerActivity).checkInternetConnection();

if (getCommonAdapter().isMultiSelect()) {
toggleItemToCheckedList(file);
} else {
Expand Down
Loading