ReceiversHelper.java 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Nextcloud Android client application
  3. *
  4. * @author Mario Danic
  5. * @author Chris Narkiewicz
  6. * Copyright (C) 2017 Mario Danic
  7. * Copyright (C) 2017 Nextcloud
  8. * Copyright (C) 2019 Chris Narkiewicz <hello@ezaquarii.com>
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  12. * License as published by the Free Software Foundation; either
  13. * version 3 of the License, or any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public
  21. * License along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. package com.owncloud.android.utils;
  24. import android.content.BroadcastReceiver;
  25. import android.content.Context;
  26. import android.content.Intent;
  27. import android.content.IntentFilter;
  28. import com.evernote.android.job.JobRequest;
  29. import com.evernote.android.job.util.Device;
  30. import com.nextcloud.client.account.UserAccountManager;
  31. import com.nextcloud.client.device.PowerManagementService;
  32. import com.nextcloud.client.network.ConnectivityService;
  33. import com.owncloud.android.MainApp;
  34. import com.owncloud.android.datamodel.UploadsStorageManager;
  35. /**
  36. * Helper for setting up network and power receivers
  37. */
  38. public final class ReceiversHelper {
  39. private ReceiversHelper() {
  40. // utility class -> private constructor
  41. }
  42. public static void registerNetworkChangeReceiver(final UploadsStorageManager uploadsStorageManager,
  43. final UserAccountManager accountManager,
  44. final ConnectivityService connectivityService,
  45. final PowerManagementService powerManagementService) {
  46. Context context = MainApp.getAppContext();
  47. IntentFilter intentFilter = new IntentFilter();
  48. intentFilter.addAction("android.net.conn.CONNECTIVITY_CHANGE");
  49. intentFilter.addAction("android.net.wifi.STATE_CHANGE");
  50. BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
  51. @Override
  52. public void onReceive(Context context, Intent intent) {
  53. if (!Device.getNetworkType(context).equals(JobRequest.NetworkType.ANY)) {
  54. FilesSyncHelper.restartJobsIfNeeded(uploadsStorageManager,
  55. accountManager,
  56. connectivityService,
  57. powerManagementService);
  58. }
  59. }
  60. };
  61. context.registerReceiver(broadcastReceiver, intentFilter);
  62. }
  63. public static void registerPowerChangeReceiver(
  64. final UploadsStorageManager uploadsStorageManager,
  65. final UserAccountManager accountManager,
  66. final ConnectivityService connectivityService,
  67. final PowerManagementService powerManagementService
  68. ) {
  69. Context context = MainApp.getAppContext();
  70. IntentFilter intentFilter = new IntentFilter();
  71. intentFilter.addAction(Intent.ACTION_POWER_CONNECTED);
  72. intentFilter.addAction(Intent.ACTION_POWER_DISCONNECTED);
  73. BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
  74. @Override
  75. public void onReceive(Context context, Intent intent) {
  76. if (Intent.ACTION_POWER_CONNECTED.equals(intent.getAction())) {
  77. FilesSyncHelper.restartJobsIfNeeded(uploadsStorageManager,
  78. accountManager,
  79. connectivityService,
  80. powerManagementService);
  81. }
  82. }
  83. };
  84. context.registerReceiver(broadcastReceiver, intentFilter);
  85. }
  86. public static void registerPowerSaveReceiver(
  87. final UploadsStorageManager uploadsStorageManager,
  88. final UserAccountManager accountManager,
  89. final ConnectivityService connectivityService,
  90. final PowerManagementService powerManagementService
  91. ) {
  92. Context context = MainApp.getAppContext();
  93. IntentFilter intentFilter = new IntentFilter();
  94. intentFilter.addAction("android.os.action.POWER_SAVE_MODE_CHANGED");
  95. BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
  96. @Override
  97. public void onReceive(Context context, Intent intent) {
  98. if (!powerManagementService.isPowerSavingEnabled()) {
  99. FilesSyncHelper.restartJobsIfNeeded(uploadsStorageManager,
  100. accountManager,
  101. connectivityService,
  102. powerManagementService);
  103. }
  104. }
  105. };
  106. context.registerReceiver(broadcastReceiver, intentFilter);
  107. }
  108. }