ConnectivityUtils.java 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author David A. Velasco
  5. * Copyright (C) 2016 ownCloud Inc.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2,
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.owncloud.android.utils;
  20. import android.content.Context;
  21. import android.content.Intent;
  22. import android.content.IntentFilter;
  23. import android.net.ConnectivityManager;
  24. import android.net.NetworkInfo;
  25. import android.os.BatteryManager;
  26. import android.support.v4.net.ConnectivityManagerCompat;
  27. import com.owncloud.android.lib.common.utils.Log_OC;
  28. public class ConnectivityUtils {
  29. private final static String TAG = ConnectivityUtils.class.getName();
  30. public static boolean isAppConnectedViaUnmeteredWiFi(Context context) {
  31. ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
  32. boolean result =
  33. cm != null && cm.getActiveNetworkInfo() != null
  34. && cm.getActiveNetworkInfo().getType() == ConnectivityManager.TYPE_WIFI
  35. && cm.getActiveNetworkInfo().getState() == NetworkInfo.State.CONNECTED
  36. && !ConnectivityManagerCompat.isActiveNetworkMetered(cm);
  37. Log_OC.d(TAG, "is AppConnectedViaWifi returns " + result);
  38. return result;
  39. }
  40. public static boolean isAppConnected(Context context) {
  41. ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
  42. return cm.getActiveNetworkInfo() != null && cm.getActiveNetworkInfo().isConnected();
  43. }
  44. public static boolean isCharging(Context context) {
  45. IntentFilter ifilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
  46. Intent batteryStatus = context.registerReceiver(null, ifilter);
  47. int status = 0;
  48. if (batteryStatus != null) {
  49. status = batteryStatus.getIntExtra(BatteryManager.EXTRA_STATUS, -1);
  50. }
  51. return status == BatteryManager.BATTERY_STATUS_CHARGING ||
  52. status == BatteryManager.BATTERY_STATUS_FULL;
  53. }
  54. }