summaryrefslogtreecommitdiffstats
path: root/src/com/android/dialer/lookup/LookupSettings.java
blob: 8e0e18caed0fa25ecc70c4964e90cc5d9da0f68c (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
/*
 * Copyright (C) 2014 Xiao-Long Chen <chillermillerlong@hotmail.com>
 *
 * 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.dialer.lookup;

import android.content.ContentResolver;
import android.content.Context;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.provider.Settings;

import cyanogenmod.providers.CMSettings;

import java.util.List;

public final class LookupSettings {
    private static final String TAG = LookupSettings.class.getSimpleName();

    /** Forward lookup providers */
    public static final String FLP_GOOGLE = "Google";
    public static final String FLP_OPENSTREETMAP = "OpenStreetMap";
    public static final String FLP_DEFAULT = FLP_GOOGLE;

    /** People lookup providers */
    public static final String PLP_WHITEPAGES = "WhitePages";
    public static final String PLP_DEFAULT = PLP_WHITEPAGES;

    /** Reverse lookup providers */
    public static final String RLP_OPENCNAM = "OpenCnam";
    public static final String RLP_WHITEPAGES = "WhitePages";
    public static final String RLP_WHITEPAGES_CA = "WhitePages_CA";
    public static final String RLP_YELLOWPAGES = "YellowPages";
    public static final String RLP_YELLOWPAGES_CA = "YellowPages_CA";
    public static final String RLP_ZABASEARCH = "ZabaSearch";
    public static final String RLP_CYNGN_CHINESE = "CyngnChinese";
    public static final String RLP_DASTELEFONBUCH = "DasTelefonbuch";
    public static final String RLP_GEBELD = "Gebeld";
    public static final String RLP_DEFAULT = RLP_OPENCNAM;

    private LookupSettings() {
    }

    public static boolean isForwardLookupEnabled(Context context) {
        return CMSettings.System.getInt(context.getContentResolver(),
                CMSettings.System.ENABLE_FORWARD_LOOKUP, 1) != 0;
    }

    public static boolean isPeopleLookupEnabled(Context context) {
        return CMSettings.System.getInt(context.getContentResolver(),
                CMSettings.System.ENABLE_PEOPLE_LOOKUP, 1) != 0;
    }

    public static boolean isReverseLookupEnabled(Context context) {
        return CMSettings.System.getInt(context.getContentResolver(),
                CMSettings.System.ENABLE_REVERSE_LOOKUP, 1) != 0;
    }

    public static String getForwardLookupProvider(Context context) {
        String provider = getLookupProvider(context,
                CMSettings.System.FORWARD_LOOKUP_PROVIDER, FLP_DEFAULT);

        return provider;
    }

    public static String getPeopleLookupProvider(Context context) {
        String provider = getLookupProvider(context,
                CMSettings.System.PEOPLE_LOOKUP_PROVIDER, PLP_DEFAULT);

        return provider;
    }

    public static String getReverseLookupProvider(Context context) {
        String provider = getLookupProvider(context,
                CMSettings.System.REVERSE_LOOKUP_PROVIDER, RLP_DEFAULT);

        if ("Google".equals(provider)) {
            CMSettings.System.putString(context.getContentResolver(),
                    CMSettings.System.REVERSE_LOOKUP_PROVIDER, RLP_DEFAULT);
            provider = RLP_DEFAULT;
        }

        return provider;
    }

    private static String getLookupProvider(Context context,
            String key, String defaultValue) {
        ContentResolver cr = context.getContentResolver();
        String provider = CMSettings.System.getString(cr, key);

        if (provider == null) {
            CMSettings.System.putString(cr, key, defaultValue);
            return defaultValue;
        }

        return provider;
    }
}