ConnectivityActionReceiver.java 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package com.owncloud.android.files.services;
  2. import android.content.BroadcastReceiver;
  3. import android.content.ComponentName;
  4. import android.content.Context;
  5. import android.content.Intent;
  6. import android.content.pm.PackageManager;
  7. import android.net.ConnectivityManager;
  8. import android.net.NetworkInfo;
  9. import android.net.NetworkInfo.State;
  10. import android.net.wifi.WifiManager;
  11. import android.os.Bundle;
  12. import android.util.Log;
  13. import com.owncloud.android.files.InstantUploadBroadcastReceiver;
  14. import com.owncloud.android.lib.common.utils.Log_OC;
  15. /**
  16. * Receives all connectivity action from Android OS at all times and performs
  17. * required OC actions. For now that are: - Signal connectivity to
  18. * {@link FileUploadService}.
  19. *
  20. * Later can be added: - Signal connectivity to download service, deletion
  21. * service, ... - Handle offline mode (cf.
  22. * https://github.com/owncloud/android/issues/162)
  23. *
  24. * @author LukeOwncloud
  25. *
  26. */
  27. public class ConnectivityActionReceiver extends BroadcastReceiver {
  28. private static final String TAG = "ConnectivityActionReceiver";
  29. @Override
  30. public void onReceive(final Context context, Intent intent) {
  31. // LOG ALL EVENTS:
  32. Log.v(TAG, "action: " + intent.getAction());
  33. Log.v(TAG, "component: " + intent.getComponent());
  34. Bundle extras = intent.getExtras();
  35. if (extras != null) {
  36. for (String key : extras.keySet()) {
  37. Log.v(TAG, "key [" + key + "]: " + extras.get(key));
  38. }
  39. } else {
  40. Log.v(TAG, "no extras");
  41. }
  42. /**
  43. * Just checking for State.CONNECTED will is not good enough, as it ends here multiple times.
  44. * Work around from:
  45. * http://stackoverflow.com/questions/17287178/connectivitymanager-getactivenetworkinfo-returning-true-when-internet-is-off
  46. */
  47. if(intent.getAction().equals(WifiManager.NETWORK_STATE_CHANGED_ACTION)) {
  48. NetworkInfo networkInfo =
  49. intent.getParcelableExtra(WifiManager.EXTRA_NETWORK_INFO);
  50. if(networkInfo.isConnected()) {
  51. Log.d(TAG, "Wifi is connected: " + String.valueOf(networkInfo));
  52. wifiConnected(context);
  53. }
  54. } else if(intent.getAction().equals(ConnectivityManager.CONNECTIVITY_ACTION)) {
  55. ConnectivityManager cm =
  56. (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
  57. NetworkInfo networkInfo = cm.getActiveNetworkInfo();
  58. if(networkInfo == null || networkInfo.getType() == ConnectivityManager.TYPE_WIFI &&
  59. ! networkInfo.isConnected()) {
  60. Log.d(TAG, "Wifi is disconnected: " + String.valueOf(networkInfo));
  61. wifiDisconnected(context);
  62. }
  63. }
  64. }
  65. private void wifiConnected(Context context) {
  66. Log_OC.d(TAG, "FileUploadService.retry() called by onReceive()");
  67. FileUploadService.retry(context);
  68. }
  69. private void wifiDisconnected(Context context) {
  70. }
  71. static public void enableActionReceiver(Context context) {
  72. PackageManager pm = context.getPackageManager();
  73. ComponentName compName = new ComponentName(context.getApplicationContext(), ConnectivityActionReceiver.class);
  74. pm.setComponentEnabledSetting(compName, PackageManager.COMPONENT_ENABLED_STATE_ENABLED,
  75. PackageManager.DONT_KILL_APP);
  76. }
  77. static public void disableActionReceiver(Context context) {
  78. PackageManager pm = context.getPackageManager();
  79. ComponentName compName = new ComponentName(context.getApplicationContext(), ConnectivityActionReceiver.class);
  80. pm.setComponentEnabledSetting(compName, PackageManager.COMPONENT_ENABLED_STATE_DISABLED,
  81. PackageManager.DONT_KILL_APP);
  82. }
  83. }