summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/OnBootReceiver.java
blob: 70358580d4e0d5621fa0bbeeebc3a98a71a866f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package se.leap.bitmaskclient;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.util.Log;

import static se.leap.bitmaskclient.eip.Constants.IS_ALWAYS_ON;
import static se.leap.bitmaskclient.eip.Constants.RESTART_ON_BOOT;
import static se.leap.bitmaskclient.eip.Constants.VPN_CERTIFICATE;

public class OnBootReceiver extends BroadcastReceiver {

    SharedPreferences preferences;


    // Debug: su && am broadcast -a android.intent.action.BOOT_COMPLETED
    @Override
    public void onReceive(Context context, Intent intent) {
        preferences = context.getSharedPreferences(Dashboard.SHARED_PREFERENCES, Context.MODE_PRIVATE);
        boolean providerConfigured = !preferences.getString(VPN_CERTIFICATE, "").isEmpty();
        boolean startOnBoot = preferences.getBoolean(RESTART_ON_BOOT, false);
        boolean isAlwaysOnConfigured = preferences.getBoolean(IS_ALWAYS_ON, false);
        Log.d("OpenVPN", "OpenVPN onBoot intent received. Provider configured? " + providerConfigured + "  Start on boot? " + startOnBoot + "  isAlwaysOn feature configured: " + isAlwaysOnConfigured);
        if (providerConfigured) {
            if (isAlwaysOnConfigured) {
                //exit because the app is already setting up the vpn
                return;
            }
            if (startOnBoot) {
                Intent dashboard_intent = new Intent(context, Dashboard.class);
                dashboard_intent.putExtra(RESTART_ON_BOOT, true);
                dashboard_intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                context.startActivity(dashboard_intent);
            }
        } else {
            if (isAlwaysOnConfigured) {
                Intent dashboard_intent = new Intent(context, Dashboard.class);
                dashboard_intent.putExtra(Dashboard.ACTION_CONFIGURE_ALWAYS_ON_PROFILE, true);
                dashboard_intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                context.startActivity(dashboard_intent);
            }
        }
    }
}