summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src/com/android/systemui/statusbar/phone/UnlockMethodCache.java
blob: c9e0db68b0dda770c0595b843d005927a583144d (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
/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License
 */

package com.android.systemui.statusbar.phone;

import android.content.Context;

import com.android.internal.widget.LockPatternUtils;
import com.android.keyguard.KeyguardUpdateMonitor;
import com.android.keyguard.KeyguardUpdateMonitorCallback;

import java.util.ArrayList;

/**
 * Caches whether the current unlock method is insecure, taking trust into account. This information
 * might be a little bit out of date and should not be used for actual security decisions; it should
 * be only used for visual indications.
 */
public class UnlockMethodCache {

    private static UnlockMethodCache sInstance;

    private final LockPatternUtils mLockPatternUtils;
    private final KeyguardUpdateMonitor mKeyguardUpdateMonitor;
    private final ArrayList<OnUnlockMethodChangedListener> mListeners = new ArrayList<>();
    private boolean mMethodInsecure;

    private UnlockMethodCache(Context ctx) {
        mLockPatternUtils = new LockPatternUtils(ctx);
        mKeyguardUpdateMonitor = KeyguardUpdateMonitor.getInstance(ctx);
        KeyguardUpdateMonitor.getInstance(ctx).registerCallback(mCallback);
        updateMethodSecure(true /* updateAlways */);
    }

    public static UnlockMethodCache getInstance(Context context) {
        if (sInstance == null) {
            sInstance = new UnlockMethodCache(context);
        }
        return sInstance;
    }

    /**
     * @return whether the current security method is secure, i. e. the bouncer will be shown
     */
    public boolean isMethodInsecure() {
        return mMethodInsecure;
    }

    public void addListener(OnUnlockMethodChangedListener listener) {
        mListeners.add(listener);
    }

    public void removeListener(OnUnlockMethodChangedListener listener) {
        mListeners.remove(listener);
    }

    private void updateMethodSecure(boolean updateAlways) {
        int user = mLockPatternUtils.getCurrentUser();
        boolean methodInsecure = !mLockPatternUtils.isSecure() ||
                mKeyguardUpdateMonitor.getUserHasTrust(user);
        boolean changed = methodInsecure != mMethodInsecure;
        if (changed || updateAlways) {
            mMethodInsecure = methodInsecure;
            notifyListeners(mMethodInsecure);
        }
    }

    private void notifyListeners(boolean secure) {
        for (OnUnlockMethodChangedListener listener : mListeners) {
            listener.onMethodSecureChanged(secure);
        }
    }

    private final KeyguardUpdateMonitorCallback mCallback = new KeyguardUpdateMonitorCallback() {
        @Override
        public void onUserSwitchComplete(int userId) {
            updateMethodSecure(false /* updateAlways */);
        }

        @Override
        public void onTrustChanged(int userId) {
            updateMethodSecure(false /* updateAlways */);
        }

        @Override
        public void onScreenTurnedOn() {
            updateMethodSecure(false /* updateAlways */);
        }

        public void onFingerprintRecognized(int userId) {
            updateMethodSecure(false /* updateAlways */);
        }
    };

    public static interface OnUnlockMethodChangedListener {
        void onMethodSecureChanged(boolean methodSecure);
    }
}