summaryrefslogtreecommitdiffstats
path: root/java/com/android/dialer/searchfragment/SearchContactViewHolder.java
blob: 4ac6af33edcb5f9e708f0c9331a1c7697590b482 (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
/*
 * Copyright (C) 2017 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.dialer.searchfragment;

import android.content.Context;
import android.content.res.Resources;
import android.database.Cursor;
import android.net.Uri;
import android.provider.ContactsContract.CommonDataKinds.Phone;
import android.provider.ContactsContract.Contacts;
import android.support.annotation.IntDef;
import android.support.v7.widget.RecyclerView.ViewHolder;
import android.text.TextUtils;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageView;
import android.widget.QuickContactBadge;
import android.widget.TextView;
import com.android.contacts.common.ContactPhotoManager;
import com.android.contacts.common.lettertiles.LetterTileDrawable;
import com.android.dialer.callintent.CallInitiationType.Type;
import com.android.dialer.callintent.CallIntentBuilder;
import com.android.dialer.common.Assert;
import com.android.dialer.telecom.TelecomUtil;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/** ViewHolder for a contact row in {@link NewSearchFragment}. */
final class SearchContactViewHolder extends ViewHolder implements OnClickListener {

  /** IntDef for the different types of actions that can be shown. */
  @Retention(RetentionPolicy.SOURCE)
  @IntDef({
    SearchContactViewHolder.CallToAction.NONE,
    SearchContactViewHolder.CallToAction.VIDEO_CALL,
    SearchContactViewHolder.CallToAction.SHARE_AND_CALL
  })
  @interface CallToAction {
    int NONE = 0;
    int VIDEO_CALL = 1;
    int SHARE_AND_CALL = 2;
  }

  private final QuickContactBadge photo;
  private final TextView nameOrNumberView;
  private final TextView numberView;
  private final ImageView callToActionView;
  private final Context context;

  private String number;
  private @CallToAction int currentAction;

  SearchContactViewHolder(View view) {
    super(view);
    view.setOnClickListener(this);
    photo = view.findViewById(R.id.photo);
    nameOrNumberView = view.findViewById(R.id.primary);
    numberView = view.findViewById(R.id.secondary);
    callToActionView = view.findViewById(R.id.call_to_action);
    context = view.getContext();
  }

  /**
   * Binds the ViewHolder with a cursor from {@link SearchContactsCursorLoader} with the data found
   * at the cursors set position.
   */
  void bind(Cursor cursor, String query) {
    number = cursor.getString(SearchContactsCursorLoader.PHONE_NUMBER);
    String name = cursor.getString(SearchContactsCursorLoader.PHONE_DISPLAY_NAME);
    String label = getLabel(context.getResources(), cursor);
    String secondaryInfo =
        TextUtils.isEmpty(label)
            ? number
            : context.getString(R.string.call_subject_type_and_number, label, number);

    nameOrNumberView.setText(QueryUtil.getNameWithQueryBolded(query, name));
    numberView.setText(QueryUtil.getNumberWithQueryBolded(query, secondaryInfo));
    setCallToAction(cursor);

    if (shouldShowPhoto(cursor, name)) {
      nameOrNumberView.setVisibility(View.VISIBLE);
      photo.setVisibility(View.VISIBLE);
      photo.setContentDescription(context.getString(R.string.description_quick_contact_for, name));
      String photoUri = cursor.getString(SearchContactsCursorLoader.PHONE_PHOTO_URI);
      ContactPhotoManager.getInstance(context)
          .loadDialerThumbnailOrPhoto(
              photo,
              getContactUri(cursor),
              cursor.getLong(SearchContactsCursorLoader.PHONE_PHOTO_ID),
              photoUri == null ? null : Uri.parse(photoUri),
              name,
              LetterTileDrawable.TYPE_DEFAULT);
    } else {
      nameOrNumberView.setVisibility(View.GONE);
      photo.setVisibility(View.INVISIBLE);
    }
  }

  private boolean shouldShowPhoto(Cursor cursor, String currentName) {
    int currentPosition = cursor.getPosition();
    if (currentPosition == 0) {
      return true;
    } else {
      cursor.moveToPosition(currentPosition - 1);
      String previousName = cursor.getString(SearchContactsCursorLoader.PHONE_DISPLAY_NAME);
      cursor.moveToPosition(currentPosition);
      return !currentName.equals(previousName);
    }
  }

  private static Uri getContactUri(Cursor cursor) {
    long contactId = cursor.getLong(SearchContactsCursorLoader.PHONE_ID);
    String lookupKey = cursor.getString(SearchContactsCursorLoader.PHONE_LOOKUP_KEY);
    return Contacts.getLookupUri(contactId, lookupKey);
  }

  // TODO: handle CNAP and cequint types.
  // TODO: unify this into a utility method with CallLogAdapter#getNumberType
  private static String getLabel(Resources resources, Cursor cursor) {
    int numberType = cursor.getInt(SearchContactsCursorLoader.PHONE_TYPE);
    String numberLabel = cursor.getString(SearchContactsCursorLoader.PHONE_LABEL);

    // Returns empty label instead of "custom" if the custom label is empty.
    if (numberType == Phone.TYPE_CUSTOM && TextUtils.isEmpty(numberLabel)) {
      return "";
    }
    return (String) Phone.getTypeLabel(resources, numberType, numberLabel);
  }

  private void setCallToAction(Cursor cursor) {
    currentAction = getCallToAction(cursor);
    switch (currentAction) {
      case CallToAction.NONE:
        callToActionView.setVisibility(View.GONE);
        callToActionView.setOnClickListener(null);
        break;
      case CallToAction.SHARE_AND_CALL:
        callToActionView.setVisibility(View.VISIBLE);
        callToActionView.setImageDrawable(context.getDrawable(R.drawable.ic_phone_attach));
        callToActionView.setOnClickListener(this);
        break;
      case CallToAction.VIDEO_CALL:
        callToActionView.setVisibility(View.VISIBLE);
        callToActionView.setImageDrawable(
            context.getDrawable(R.drawable.quantum_ic_videocam_white_24));
        callToActionView.setOnClickListener(this);
        break;
      default:
        throw Assert.createIllegalStateFailException(
            "Invalid Call to action type: " + currentAction);
    }
  }

  private static @CallToAction int getCallToAction(Cursor cursor) {
    int carrierPresence = cursor.getInt(SearchContactsCursorLoader.PHONE_CARRIER_PRESENCE);
    if ((carrierPresence & Phone.CARRIER_PRESENCE_VT_CAPABLE) == 1) {
      return CallToAction.VIDEO_CALL;
    }

    // TODO: enriched calling
    return CallToAction.NONE;
  }

  @Override
  public void onClick(View view) {
    if (view == callToActionView) {
      switch (currentAction) {
        case CallToAction.SHARE_AND_CALL:
          callToActionView.setVisibility(View.VISIBLE);
          callToActionView.setImageDrawable(context.getDrawable(R.drawable.ic_phone_attach));
          // TODO: open call composer.
          break;
        case CallToAction.VIDEO_CALL:
          callToActionView.setVisibility(View.VISIBLE);
          callToActionView.setImageDrawable(
              context.getDrawable(R.drawable.quantum_ic_videocam_white_24));
          // TODO: place a video call
          break;
        case CallToAction.NONE:
        default:
          throw Assert.createIllegalStateFailException(
              "Invalid Call to action type: " + currentAction);
      }
    } else {
      // TODO: set the correct call initiation type.
      TelecomUtil.placeCall(context, new CallIntentBuilder(number, Type.REGULAR_SEARCH).build());
    }
  }
}