1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /**
- * Nextcloud Android client application
- *
- * @author Mario Danic
- * Copyright (C) 2017 Mario Danic
- * Copyright (C) 2017 Nextcloud
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or 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 <http://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.utils;
- import android.content.BroadcastReceiver;
- import android.content.Context;
- import android.content.Intent;
- import android.content.IntentFilter;
- import com.evernote.android.job.JobRequest;
- import com.evernote.android.job.util.Device;
- import com.owncloud.android.MainApp;
- /*
- Helper for setting up network and power receivers
- */
- public class ReceiversHelper {
- public static void registerNetworkChangeReceiver() {
- Context context = MainApp.getAppContext();
- IntentFilter intentFilter = new IntentFilter();
- intentFilter.addAction("android.net.conn.CONNECTIVITY_CHANGE");
- intentFilter.addAction("android.net.wifi.STATE_CHANGE");
- BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
- @Override
- public void onReceive(Context context, Intent intent) {
- if (!Device.getNetworkType(context).equals(JobRequest.NetworkType.ANY)) {
- FilesSyncHelper.restartJobsIfNeeded();
- }
- }
- };
- context.registerReceiver(broadcastReceiver, intentFilter);
- }
- public static void registerPowerChangeReceiver() {
- Context context = MainApp.getAppContext();
- IntentFilter intentFilter = new IntentFilter();
- intentFilter.addAction(Intent.ACTION_POWER_CONNECTED);
- intentFilter.addAction(Intent.ACTION_POWER_DISCONNECTED);
- BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
- @Override
- public void onReceive(Context context, Intent intent) {
- if (intent.getAction().equals(Intent.ACTION_POWER_CONNECTED)) {
- FilesSyncHelper.restartJobsIfNeeded();
- }
- }
- };
- context.registerReceiver(broadcastReceiver, intentFilter);
- }
- public static void registerPowerSaveReceiver() {
- Context context = MainApp.getAppContext();
- IntentFilter intentFilter = new IntentFilter();
- intentFilter.addAction("android.os.action.POWER_SAVE_MODE_CHANGED");
- BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
- @Override
- public void onReceive(Context context, Intent intent) {
- if (!PowerUtils.isPowerSaveMode(context)) {
- FilesSyncHelper.restartJobsIfNeeded();
- }
- }
- };
- context.registerReceiver(broadcastReceiver, intentFilter);
- }
- }
|