summaryrefslogtreecommitdiff
path: root/src/se/leap/bitmaskclient/ProviderDetailFragment.java
blob: 4006a76c9e04991655a4d8f89be49d28c78a7c37 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package se.leap.bitmaskclient;

import org.json.JSONException;
import org.json.JSONObject;

import se.leap.bitmaskclient.R;
import se.leap.bitmaskclient.ProviderListContent.ProviderItem;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.DialogFragment;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.TextView;

public class ProviderDetailFragment extends DialogFragment {

    final public static String TAG = "providerDetailFragment";
    
	@Override
	public Dialog onCreateDialog(Bundle savedInstanceState) {
		AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
		try {

			LayoutInflater inflater = getActivity().getLayoutInflater();
			View provider_detail_view = inflater.inflate(R.layout.provider_detail_fragment, null);
			
			JSONObject provider_json = ConfigHelper.getJsonFromSharedPref(Provider.KEY);
			
			final TextView domain = (TextView)provider_detail_view.findViewById(R.id.provider_detail_domain);
			domain.setText(provider_json.getString(Provider.DOMAIN));
			final TextView name = (TextView)provider_detail_view.findViewById(R.id.provider_detail_name);
			name.setText(provider_json.getJSONObject(Provider.NAME).getString("en"));
			final TextView description = (TextView)provider_detail_view.findViewById(R.id.provider_detail_description);
			description.setText(provider_json.getJSONObject(Provider.DESCRIPTION).getString("en"));
			
			builder.setView(provider_detail_view);
			builder.setTitle(R.string.provider_details_fragment_title);
			
			if(anon_allowed(provider_json)) {
				builder.setPositiveButton(R.string.use_anonymously_button, new DialogInterface.OnClickListener() {
					public void onClick(DialogInterface dialog, int id) {
						interface_with_configuration_wizard.use_anonymously();
					}
				});
			}

			if(registration_allowed(provider_json)) {
				builder.setNegativeButton(R.string.login_button, new DialogInterface.OnClickListener() {
					public void onClick(DialogInterface dialog, int id) {
						interface_with_configuration_wizard.login();
					}
				});
			}
			
			return builder.create();
		} catch (JSONException e) {
			return null;
		}
	}
	
	private boolean anon_allowed(JSONObject provider_json) {
		try {
			JSONObject service_description = provider_json.getJSONObject(Provider.SERVICE);
			return service_description.has(EIP.ALLOWED_ANON) && service_description.getBoolean(EIP.ALLOWED_ANON);
		} catch (JSONException e) {
			return false;
		}
	}
	
	private boolean registration_allowed(JSONObject provider_json) {
		try {
			JSONObject service_description = provider_json.getJSONObject(Provider.SERVICE);
			return service_description.has(Provider.ALLOW_REGISTRATION) && service_description.getBoolean(Provider.ALLOW_REGISTRATION);
		} catch (JSONException e) {
			return false;
		}
	}
	
	@Override
	public void onCancel(DialogInterface dialog) {
		super.onCancel(dialog);
		ConfigHelper.removeFromSharedPref(Provider.KEY);
		ConfigHelper.removeFromSharedPref(ProviderItem.DANGER_ON);
		ConfigHelper.removeFromSharedPref(EIP.ALLOWED_ANON);
		ConfigHelper.removeFromSharedPref(EIP.KEY);
	}

	public static DialogFragment newInstance() {
		ProviderDetailFragment provider_detail_fragment = new ProviderDetailFragment();
		return provider_detail_fragment;
	}
	
    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        try {
        	interface_with_configuration_wizard = (ProviderDetailFragmentInterface) activity;
        } catch (ClassCastException e) {
            throw new ClassCastException(activity.toString()
                    + " must implement LogInDialogListener");
        }
    }
	
	public interface ProviderDetailFragmentInterface {
		public void login();
		public void use_anonymously();
	}
	
	ProviderDetailFragmentInterface interface_with_configuration_wizard;
}