summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/SessionDialog.java
blob: 9025564bc7e67d82f7b68dd8af810391cd79a859 (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/**
 * Copyright (c) 2013 LEAP Encryption Access Project and contributers
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
 package se.leap.bitmaskclient;

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

import org.jetbrains.annotations.NotNull;

import butterknife.ButterKnife;
import butterknife.InjectView;

/**
 * Implements the log in dialog, currently without progress dialog.
 * 
 * It returns to the previous fragment when finished, and sends username and password to the authenticate method.
 * 
 * It also notifies the user if the password is not valid. 
 * 
 * @author parmegv
 *
 */
public class SessionDialog extends DialogFragment{

     
    final public static String TAG = SessionDialog.class.getSimpleName();

    final public static String USERNAME = "username";
    final public static String PASSWORD = "password";
    final public static String USERNAME_MISSING = "username missing";
    final public static String PASSWORD_INVALID_LENGTH = "password_invalid_length";

    @InjectView(R.id.user_message)
    TextView user_message;
    @InjectView(R.id.username_entered)
    EditText username_field;
    @InjectView(R.id.password_entered)
    EditText password_field;

    private static boolean is_eip_pending = false;

    public SessionDialog() {
        setArguments(Bundle.EMPTY);
    }
    
	public AlertDialog onCreateDialog(Bundle savedInstanceState) {

		AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
		LayoutInflater inflater = getActivity().getLayoutInflater();
		View view = inflater.inflate(R.layout.session_dialog, null);
		ButterKnife.inject(this, view);
		
		Bundle arguments = getArguments();
		if (arguments != Bundle.EMPTY) {
            setUp(arguments);
		}
		
		builder.setView(view)
			.setPositiveButton(R.string.login_button, new DialogInterface.OnClickListener() {
				public void onClick(DialogInterface dialog, int id) {
					String username = getEnteredUsername();
					String password = getEnteredPassword();
					dialog.dismiss();
					interface_with_Dashboard.logIn(username, password);
				}
			})
			.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
				public void onClick(DialogInterface dialog, int id) {
					dialog.cancel();
					interface_with_Dashboard.cancelLoginOrSignup();
				}
			})
		    .setNeutralButton(R.string.signup_button, new DialogInterface.OnClickListener() {
				public void onClick(DialogInterface dialog, int id) {
					String username = getEnteredUsername();
					String password = getEnteredPassword();
                    dialog.dismiss();
					interface_with_Dashboard.signUp(username, password);
				}
			});
		
		return builder.create();
	}

    private void setUp(Bundle arguments) {
        is_eip_pending = arguments.getBoolean(EipFragment.IS_PENDING, false);
        if (arguments.containsKey(PASSWORD_INVALID_LENGTH))
            password_field.setError(getString(R.string.error_not_valid_password_user_message));
        if (arguments.containsKey(USERNAME)) {
            String username = arguments.getString(USERNAME);
            username_field.setText(username);
        }
        if (arguments.containsKey(USERNAME_MISSING)) {
            username_field.setError(getString(R.string.username_ask));
        }
        if(arguments.containsKey(getString(R.string.user_message)))
            user_message.setText(arguments.getString(getString(R.string.user_message)));
        else
            user_message.setVisibility(View.GONE);

        if(!username_field.getText().toString().isEmpty() && password_field.isFocusable())
            password_field.requestFocus();

    }

    private String getEnteredUsername() {
        return username_field.getText().toString();
    }

    private String getEnteredPassword() {
        return password_field.getText().toString();
    }

	
	/**
	 * Interface used to communicate SessionDialog with Dashboard.
	 * 
	 * @author parmegv
	 *
	 */
	public interface SessionDialogInterface {
	    public void logIn(String username, String password);
	    public void signUp(String username, String password);
	    public void cancelLoginOrSignup();
    }

	SessionDialogInterface interface_with_Dashboard;
	
    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        try {
        	interface_with_Dashboard = (SessionDialogInterface) activity;
        } catch (ClassCastException e) {
            throw new ClassCastException(activity.toString()
                    + " must implement LogInDialogListener");
        }
    }

    @Override
    public void onCancel(DialogInterface dialog) {
	super.onCancel(dialog);
	if(is_eip_pending)
	    interface_with_Dashboard.cancelLoginOrSignup();
    }
}