summaryrefslogtreecommitdiffstats
path: root/java/com/android/contacts/common/util/ContactDisplayUtils.java
blob: 7d428e102e241964eed0d3857e1ba76b7005b6d3 (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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/*
 * Copyright (C) 2012 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.contacts.common.util;

import android.content.Context;
import android.content.res.Resources;
import android.provider.ContactsContract.CommonDataKinds.Phone;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.telephony.PhoneNumberUtils;
import android.text.Spannable;
import android.text.SpannableString;
import android.text.TextUtils;
import android.text.style.TtsSpan;
import android.util.Patterns;
import com.android.contacts.common.R;
import com.android.contacts.common.preference.ContactsPreferences;
import com.android.dialer.common.LogUtil;
import java.util.Objects;

/** Methods for handling various contact data labels. */
public class ContactDisplayUtils {

  public static final int INTERACTION_CALL = 1;
  public static final int INTERACTION_SMS = 2;

  /**
   * Checks if the given data type is a custom type.
   *
   * @param type Phone data type.
   * @return {@literal true} if the type is custom. {@literal false} if not.
   */
  public static boolean isCustomPhoneType(Integer type) {
    return type == Phone.TYPE_CUSTOM || type == Phone.TYPE_ASSISTANT;
  }

  /**
   * Gets a display label for a given phone type.
   *
   * @param type The type of number.
   * @param customLabel A custom label to use if the phone is determined to be of custom type
   *     determined by {@link #isCustomPhoneType(Integer))}
   * @param interactionType whether this is a call or sms. Either {@link #INTERACTION_CALL} or
   *     {@link #INTERACTION_SMS}.
   * @param context The application context.
   * @return An appropriate string label
   */
  public static CharSequence getLabelForCallOrSms(
      Integer type, CharSequence customLabel, int interactionType, @NonNull Context context) {
    Objects.requireNonNull(context);

    if (isCustomPhoneType(type)) {
      return (customLabel == null) ? "" : customLabel;
    } else {
      int resId;
      if (interactionType == INTERACTION_SMS) {
        resId = getSmsLabelResourceId(type);
      } else {
        resId = getPhoneLabelResourceId(type);
        if (interactionType != INTERACTION_CALL) {
          LogUtil.e(
              "ContactDisplayUtils.getLabelForCallOrSms",
              "un-recognized interaction type: "
                  + interactionType
                  + ". Defaulting to ContactDisplayUtils.INTERACTION_CALL.");
        }
      }

      return context.getResources().getText(resId);
    }
  }

  /**
   * Find a label for calling.
   *
   * @param type The type of number.
   * @return An appropriate string label.
   */
  public static int getPhoneLabelResourceId(Integer type) {
    if (type == null) {
      return R.string.call_other;
    }
    switch (type) {
      case Phone.TYPE_HOME:
        return R.string.call_home;
      case Phone.TYPE_MOBILE:
        return R.string.call_mobile;
      case Phone.TYPE_WORK:
        return R.string.call_work;
      case Phone.TYPE_FAX_WORK:
        return R.string.call_fax_work;
      case Phone.TYPE_FAX_HOME:
        return R.string.call_fax_home;
      case Phone.TYPE_PAGER:
        return R.string.call_pager;
      case Phone.TYPE_OTHER:
        return R.string.call_other;
      case Phone.TYPE_CALLBACK:
        return R.string.call_callback;
      case Phone.TYPE_CAR:
        return R.string.call_car;
      case Phone.TYPE_COMPANY_MAIN:
        return R.string.call_company_main;
      case Phone.TYPE_ISDN:
        return R.string.call_isdn;
      case Phone.TYPE_MAIN:
        return R.string.call_main;
      case Phone.TYPE_OTHER_FAX:
        return R.string.call_other_fax;
      case Phone.TYPE_RADIO:
        return R.string.call_radio;
      case Phone.TYPE_TELEX:
        return R.string.call_telex;
      case Phone.TYPE_TTY_TDD:
        return R.string.call_tty_tdd;
      case Phone.TYPE_WORK_MOBILE:
        return R.string.call_work_mobile;
      case Phone.TYPE_WORK_PAGER:
        return R.string.call_work_pager;
      case Phone.TYPE_ASSISTANT:
        return R.string.call_assistant;
      case Phone.TYPE_MMS:
        return R.string.call_mms;
      default:
        return R.string.call_custom;
    }
  }

  /**
   * Find a label for sending an sms.
   *
   * @param type The type of number.
   * @return An appropriate string label.
   */
  public static int getSmsLabelResourceId(Integer type) {
    if (type == null) {
      return R.string.sms_other;
    }
    switch (type) {
      case Phone.TYPE_HOME:
        return R.string.sms_home;
      case Phone.TYPE_MOBILE:
        return R.string.sms_mobile;
      case Phone.TYPE_WORK:
        return R.string.sms_work;
      case Phone.TYPE_FAX_WORK:
        return R.string.sms_fax_work;
      case Phone.TYPE_FAX_HOME:
        return R.string.sms_fax_home;
      case Phone.TYPE_PAGER:
        return R.string.sms_pager;
      case Phone.TYPE_OTHER:
        return R.string.sms_other;
      case Phone.TYPE_CALLBACK:
        return R.string.sms_callback;
      case Phone.TYPE_CAR:
        return R.string.sms_car;
      case Phone.TYPE_COMPANY_MAIN:
        return R.string.sms_company_main;
      case Phone.TYPE_ISDN:
        return R.string.sms_isdn;
      case Phone.TYPE_MAIN:
        return R.string.sms_main;
      case Phone.TYPE_OTHER_FAX:
        return R.string.sms_other_fax;
      case Phone.TYPE_RADIO:
        return R.string.sms_radio;
      case Phone.TYPE_TELEX:
        return R.string.sms_telex;
      case Phone.TYPE_TTY_TDD:
        return R.string.sms_tty_tdd;
      case Phone.TYPE_WORK_MOBILE:
        return R.string.sms_work_mobile;
      case Phone.TYPE_WORK_PAGER:
        return R.string.sms_work_pager;
      case Phone.TYPE_ASSISTANT:
        return R.string.sms_assistant;
      case Phone.TYPE_MMS:
        return R.string.sms_mms;
      default:
        return R.string.sms_custom;
    }
  }

  /**
   * Whether the given text could be a phone number.
   *
   * <p>Note this will miss many things that are legitimate phone numbers, for example, phone
   * numbers with letters.
   */
  public static boolean isPossiblePhoneNumber(CharSequence text) {
    return text != null && Patterns.PHONE.matcher(text.toString()).matches();
  }

  /**
   * Returns a Spannable for the given message with a telephone {@link TtsSpan} set for the given
   * phone number text wherever it is found within the message.
   */
  public static Spannable getTelephoneTtsSpannable(
      @Nullable String message, @Nullable String phoneNumber) {
    if (message == null) {
      return null;
    }
    final Spannable spannable = new SpannableString(message);
    int start = TextUtils.isEmpty(phoneNumber) ? -1 : message.indexOf(phoneNumber);
    while (start >= 0) {
      final int end = start + phoneNumber.length();
      final TtsSpan ttsSpan = PhoneNumberUtils.createTtsSpan(phoneNumber);
      spannable.setSpan(
          ttsSpan,
          start,
          end,
          Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); // this is consistenly done in a misleading way..
      start = message.indexOf(phoneNumber, end);
    }
    return spannable;
  }

  /**
   * Retrieves a string from a string template that takes 1 phone number as argument, span the
   * number with a telephone {@link TtsSpan}, and return the spanned string.
   *
   * @param resources to retrieve the string from
   * @param stringId ID of the string
   * @param number to pass in the template
   * @return CharSequence with the phone number wrapped in a TtsSpan
   */
  public static CharSequence getTtsSpannedPhoneNumber(
      Resources resources, int stringId, String number) {
    String msg = resources.getString(stringId, number);
    return ContactDisplayUtils.getTelephoneTtsSpannable(msg, number);
  }

  /**
   * Returns either namePrimary or nameAlternative based on the {@link ContactsPreferences}.
   * Defaults to the name that is non-null.
   *
   * @param namePrimary the primary name.
   * @param nameAlternative the alternative name.
   * @param contactsPreferences the ContactsPreferences used to determine the preferred display
   *     name.
   * @return namePrimary or nameAlternative depending on the value of displayOrderPreference.
   */
  public static String getPreferredDisplayName(
      String namePrimary,
      String nameAlternative,
      @Nullable ContactsPreferences contactsPreferences) {
    if (contactsPreferences == null) {
      return namePrimary != null ? namePrimary : nameAlternative;
    }
    if (contactsPreferences.getDisplayOrder() == ContactsPreferences.DISPLAY_ORDER_PRIMARY) {
      return namePrimary;
    }

    if (contactsPreferences.getDisplayOrder() == ContactsPreferences.DISPLAY_ORDER_ALTERNATIVE
        && !TextUtils.isEmpty(nameAlternative)) {
      return nameAlternative;
    }

    return namePrimary;
  }

  /**
   * Returns either namePrimary or nameAlternative based on the {@link ContactsPreferences}.
   * Defaults to the name that is non-null.
   *
   * @param namePrimary the primary name.
   * @param nameAlternative the alternative name.
   * @param contactsPreferences the ContactsPreferences used to determine the preferred sort order.
   * @return namePrimary or nameAlternative depending on the value of displayOrderPreference.
   */
  public static String getPreferredSortName(
      String namePrimary,
      String nameAlternative,
      @Nullable ContactsPreferences contactsPreferences) {
    if (contactsPreferences == null) {
      return namePrimary != null ? namePrimary : nameAlternative;
    }

    if (contactsPreferences.getSortOrder() == ContactsPreferences.SORT_ORDER_PRIMARY) {
      return namePrimary;
    }

    if (contactsPreferences.getSortOrder() == ContactsPreferences.SORT_ORDER_ALTERNATIVE
        && !TextUtils.isEmpty(nameAlternative)) {
      return nameAlternative;
    }

    return namePrimary;
  }
}