1 /*
2    Bacula(R) - The Network Backup Solution
3 
4    Copyright (C) 2000-2020 Kern Sibbald
5 
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many others, a complete list can be found in the file AUTHORS.
8 
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13 
14    This notice must be preserved when any source code is
15    conveyed and/or propagated.
16 
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19 
20 package org.baculasystems.bmob.alfa;
21 
22 import android.content.BroadcastReceiver;
23 import android.content.Context;
24 import android.content.Intent;
25 import android.content.SharedPreferences;
26 
27 import static org.baculasystems.bmob.alfa.BaculaFDService.COMMAND;
28 import static org.baculasystems.bmob.alfa.BaculaFDService.FD_RUNNING;
29 
30 
31 /** Receiver that is called when the phone boots **/
32 public class BaculaBroadcastReceiver extends BroadcastReceiver {
33     @Override
onReceive(Context context, Intent intent)34     public void onReceive(Context context, Intent intent) {
35         SharedPreferences prefs = context.getSharedPreferences(COMMAND, Context.MODE_PRIVATE);
36         boolean fdRunning = prefs.getBoolean(FD_RUNNING, false);
37 
38         if(fdRunning) {
39             BaculaFDService.start(context, null, null, null);
40         }
41     }
42 }
43