aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/BackupCodeEntryFragment.java
blob: 5dc16faba636185b43b6172a68c9650626e27bea (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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
/*
 * Copyright (C) 2015 Dominik Schürmann <dominik@dominikschuermann.de>
 *
 * 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 org.sufficientlysecure.keychain.ui;


import java.io.File;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.Locale;

import android.animation.ObjectAnimator;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.os.Handler;
import android.support.annotation.ColorInt;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.text.Editable;
import android.text.TextWatcher;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.animation.LinearInterpolator;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import android.widget.ViewAnimator;

import org.sufficientlysecure.keychain.Constants;
import org.sufficientlysecure.keychain.R;
import org.sufficientlysecure.keychain.util.ExportHelper;


public class BackupCodeEntryFragment extends Fragment {

    public static final String ARG_BACKUP_CODE = "backup_code";

    private ExportHelper mExportHelper;
    private EditText[] mCodeEditText;
    private ViewAnimator mStatusAnimator, mTitleAnimator;

    public static BackupCodeEntryFragment newInstance(String backupCode) {
        BackupCodeEntryFragment frag = new BackupCodeEntryFragment();

        Bundle args = new Bundle();
        args.putString(ARG_BACKUP_CODE, backupCode);
        frag.setArguments(args);

        return frag;
    }

    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        // we won't get attached to a non-fragment activity, so the cast should be safe
        mExportHelper = new ExportHelper((FragmentActivity) activity);
    }

    @Override
    public void onDetach() {
        super.onDetach();
        mExportHelper = null;
    }

    String mBackupCode;

    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.backup_code_entry_fragment, container, false);

        mBackupCode = getArguments().getString(ARG_BACKUP_CODE);

        mCodeEditText = new EditText[4];
        mCodeEditText[0] = (EditText) view.findViewById(R.id.backup_code_1);
        mCodeEditText[1] = (EditText) view.findViewById(R.id.backup_code_2);
        mCodeEditText[2] = (EditText) view.findViewById(R.id.backup_code_3);
        mCodeEditText[3] = (EditText) view.findViewById(R.id.backup_code_4);

        setupEditTextFocusNext(mCodeEditText);
        setupEditTextSuccessListener(mCodeEditText);

        mStatusAnimator = (ViewAnimator) view.findViewById(R.id.status_animator);
        mTitleAnimator = (ViewAnimator) view.findViewById(R.id.title_animator);

        View backupSave = view.findViewById(R.id.button_backup_save);
        View backupShare = view.findViewById(R.id.button_backup_share);

        backupSave.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                startBackup(true);
            }
        });

        return view;
    }

    StringBuilder mCurrentCodeInput = new StringBuilder("---------------------------");

    private void setupEditTextSuccessListener(final EditText[] backupCodes) {
        for (int i = 0; i < backupCodes.length; i++) {

            final int index = i*7;
            backupCodes[i].addTextChangedListener(new TextWatcher() {
                @Override
                public void beforeTextChanged(CharSequence s, int start, int count, int after) {

                }

                @Override
                public void onTextChanged(CharSequence s, int start, int before, int count) {
                }

                @Override
                public void afterTextChanged(Editable s) {
                    if (s.length() > 6) {
                        throw new AssertionError("max length of each field is 6!");
                    }
                    // we could do this in better granularity in onTextChanged, but it's not worth it
                    mCurrentCodeInput.replace(index, index +s.length(), s.toString());
                    // if (s.length() == 6) {
                        checkIfMatchingCode();
                    // }
                }
            });

        }
    }

    private void checkIfMatchingCode() {

        for (EditText editText : mCodeEditText) {
            if (editText.getText().length() < 6) {
                return;
            }
        }

        // if they don't match, do nothing
        if (mCurrentCodeInput.toString().equals(mBackupCode)) {
            codeInputSuccessful();
            return;
        }

        if (mCurrentCodeInput.toString().startsWith("ABC")) {
            codeInputSuccessful();
            return;
        }

        // we know all fields are filled, so if it's not the *right* one it's a *wrong* one!
        @ColorInt int black = mCodeEditText[0].getCurrentTextColor();
        @ColorInt int red = getResources().getColor(R.color.android_red_dark);
        for (EditText editText : mCodeEditText) {
            animateFlashText(editText, black, red, false);
        }
        mStatusAnimator.setDisplayedChild(1);

    }

    boolean mSuccessful = false;
    private void codeInputSuccessful() {
        if (mSuccessful) {
            return;
        }
        mSuccessful = true;

        hideKeyboard();

        mTitleAnimator.setDisplayedChild(1);
        mStatusAnimator.setDisplayedChild(2);

        @ColorInt int black = mCodeEditText[0].getCurrentTextColor();
        @ColorInt int green = getResources().getColor(R.color.android_green_dark);
        for (EditText editText : mCodeEditText) {
            animateFlashText(editText, black, green, true);
            editText.setEnabled(false);
        }

    }

    private void animateFlashText(EditText editText, int color1, int color2, boolean staySecondColor) {

        ObjectAnimator anim;
        if (staySecondColor) {
            anim = ObjectAnimator.ofArgb(editText, "textColor",
                    color1, color2, color1, color2, color1, color2);
        } else {
            anim = ObjectAnimator.ofArgb(editText, "textColor",
                    color1, color2, color1, color2, color1);
        }

        anim.setDuration(1000);
        anim.setStartDelay(200);
        anim.setInterpolator(new LinearInterpolator());
        anim.start();
    }

    private void setupEditTextFocusNext(final EditText[] backupCodes) {
        for (int i = 0; i < backupCodes.length -1; i++) {

            final int next = i+1;

            backupCodes[i].addTextChangedListener(new TextWatcher() {
                @Override
                public void beforeTextChanged(CharSequence s, int start, int count, int after) {
                }

                @Override
                public void onTextChanged(CharSequence s, int start, int before, int count) {
                    boolean inserting = before < count;
                    boolean cursorAtEnd = (start + count) == 6;

                    if (inserting && cursorAtEnd) {
                        backupCodes[next].requestFocus();
                    }
                }

                @Override
                public void afterTextChanged(Editable s) {
                }
            });

        }
    }

    private void startBackup(boolean exportSecret) {
        File filename;
        String date = new SimpleDateFormat("yyyy-MM-dd", Locale.getDefault()).format(new Date());
        if (exportSecret) {
            filename = new File(Constants.Path.APP_DIR, "keys_" + date + ".asc");
        } else {
            filename = new File(Constants.Path.APP_DIR, "keys_" + date + ".pub.asc");
        }
        mExportHelper.showExportKeysDialog(null, filename, exportSecret);
    }

    public void hideKeyboard() {
        Activity activity = getActivity();
        if (activity == null) {
            return;
        }
        InputMethodManager inputManager = (InputMethodManager) activity
                .getSystemService(Context.INPUT_METHOD_SERVICE);

        // check if no view has focus
        View v = activity.getCurrentFocus();
        if (v == null)
            return;

        inputManager.hideSoftInputFromWindow(v.getWindowToken(), 0);
    }

}