summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/eip/VoidVpnLauncher.java
blob: d79d800324ad6f0a610cca904139b9e2c949556a (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
package se.leap.bitmaskclient.eip;

import android.app.Activity;
import android.content.Intent;
import android.net.VpnService;
import android.os.Bundle;

public class VoidVpnLauncher extends Activity {

    private static final int VPN_USER_PERMISSION = 71;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
	super.onCreate(savedInstanceState);
	setUp();
    }
    
    public void setUp() {
	Intent blocking_intent = VpnService.prepare(getApplicationContext()); // stops the VPN connection created by another application.
	if(blocking_intent != null)
	    startActivityForResult(blocking_intent, VPN_USER_PERMISSION);
	else {
	    onActivityResult(VPN_USER_PERMISSION, RESULT_OK, null);
	}
    }

    protected void onActivityResult(int requestCode, int resultCode, Intent data){
	if(requestCode == VPN_USER_PERMISSION) {
	    if(resultCode == RESULT_OK) {
		Intent void_vpn_service = new Intent(getApplicationContext(), VoidVpnService.class);
		void_vpn_service.setAction(Constants.START_BLOCKING_VPN_PROFILE);
		startService(void_vpn_service);
	    }
	}
	finish();
    }
}