mirror of
https://github.com/ente-io/ente.git
synced 2025-05-27 13:09:56 +00:00
19 lines
832 B
Dart
19 lines
832 B
Dart
import "package:connectivity_plus/connectivity_plus.dart";
|
|
import "package:photos/core/configuration.dart";
|
|
|
|
Future<bool> canUseHighBandwidth() async {
|
|
// Connections will contain a list of currently active connections.
|
|
// could be vpn and wifi or mobile and vpn, but should not be wifi and mobile
|
|
final List<ConnectivityResult> connections =
|
|
await (Connectivity().checkConnectivity());
|
|
bool canUploadUnderCurrentNetworkConditions = true;
|
|
if (!Configuration.instance.shouldBackupOverMobileData()) {
|
|
if (connections.any((element) => element == ConnectivityResult.mobile)) {
|
|
canUploadUnderCurrentNetworkConditions = false;
|
|
}
|
|
}
|
|
final canDownloadOverMobileData =
|
|
Configuration.instance.shouldBackupOverMobileData();
|
|
return canUploadUnderCurrentNetworkConditions || canDownloadOverMobileData;
|
|
}
|