blob: 4229482f21882d8a59919332aff478b5f1715c67 [file] [log] [blame]
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.phone;
18
19import android.accounts.Account;
20import android.app.ActionBar;
21import android.app.ProgressDialog;
22import android.content.ContentProviderOperation;
Wenyi Wangc32e0af2015-09-17 18:25:25 -070023import android.content.ContentProviderResult;
Santos Cordon7d4ddf62013-07-10 11:58:08 -070024import android.content.ContentResolver;
25import android.content.ContentValues;
Wenyi Wangc32e0af2015-09-17 18:25:25 -070026import android.content.Context;
Santos Cordon7d4ddf62013-07-10 11:58:08 -070027import android.content.DialogInterface;
28import android.content.DialogInterface.OnCancelListener;
29import android.content.DialogInterface.OnClickListener;
30import android.content.Intent;
31import android.content.OperationApplicationException;
32import android.database.Cursor;
33import android.net.Uri;
34import android.os.Bundle;
35import android.os.RemoteException;
36import android.provider.ContactsContract;
37import android.provider.ContactsContract.CommonDataKinds.Email;
38import android.provider.ContactsContract.CommonDataKinds.GroupMembership;
39import android.provider.ContactsContract.CommonDataKinds.Phone;
40import android.provider.ContactsContract.CommonDataKinds.StructuredName;
41import android.provider.ContactsContract.Data;
42import android.provider.ContactsContract.RawContacts;
Tyler Gunn4d45d1c2014-09-12 22:17:53 -070043import android.telecom.PhoneAccount;
Santos Cordon7d4ddf62013-07-10 11:58:08 -070044import android.text.TextUtils;
45import android.util.Log;
46import android.view.ContextMenu;
47import android.view.KeyEvent;
48import android.view.Menu;
49import android.view.MenuItem;
50import android.view.View;
51import android.widget.AdapterView;
52import android.widget.CursorAdapter;
53import android.widget.ListView;
54import android.widget.SimpleCursorAdapter;
55import android.widget.TextView;
Wenyi Wangc32e0af2015-09-17 18:25:25 -070056import android.widget.Toast;
Santos Cordon7d4ddf62013-07-10 11:58:08 -070057
58import java.util.ArrayList;
59
60/**
61 * SIM Address Book UI for the Phone app.
62 */
63public class SimContacts extends ADNList {
64 private static final String LOG_TAG = "SimContacts";
65
Santos Cordon7d4ddf62013-07-10 11:58:08 -070066 static final ContentValues sEmptyContentValues = new ContentValues();
67
68 private static final int MENU_IMPORT_ONE = 1;
69 private static final int MENU_IMPORT_ALL = 2;
70 private ProgressDialog mProgressDialog;
71
72 private Account mAccount;
73
74 private static class NamePhoneTypePair {
75 final String name;
76 final int phoneType;
77 public NamePhoneTypePair(String nameWithPhoneType) {
78 // Look for /W /H /M or /O at the end of the name signifying the type
79 int nameLen = nameWithPhoneType.length();
80 if (nameLen - 2 >= 0 && nameWithPhoneType.charAt(nameLen - 2) == '/') {
81 char c = Character.toUpperCase(nameWithPhoneType.charAt(nameLen - 1));
82 if (c == 'W') {
83 phoneType = Phone.TYPE_WORK;
84 } else if (c == 'M' || c == 'O') {
85 phoneType = Phone.TYPE_MOBILE;
86 } else if (c == 'H') {
87 phoneType = Phone.TYPE_HOME;
88 } else {
89 phoneType = Phone.TYPE_OTHER;
90 }
91 name = nameWithPhoneType.substring(0, nameLen - 2);
92 } else {
93 phoneType = Phone.TYPE_OTHER;
94 name = nameWithPhoneType;
95 }
96 }
97 }
98
99 private class ImportAllSimContactsThread extends Thread
100 implements OnCancelListener, OnClickListener {
101
102 boolean mCanceled = false;
103
104 public ImportAllSimContactsThread() {
105 super("ImportAllSimContactsThread");
106 }
107
108 @Override
109 public void run() {
110 final ContentValues emptyContentValues = new ContentValues();
111 final ContentResolver resolver = getContentResolver();
112
113 mCursor.moveToPosition(-1);
114 while (!mCanceled && mCursor.moveToNext()) {
115 actuallyImportOneSimContact(mCursor, resolver, mAccount);
116 mProgressDialog.incrementProgressBy(1);
117 }
118
119 mProgressDialog.dismiss();
120 finish();
121 }
122
123 public void onCancel(DialogInterface dialog) {
124 mCanceled = true;
125 }
126
127 public void onClick(DialogInterface dialog, int which) {
128 if (which == DialogInterface.BUTTON_NEGATIVE) {
129 mCanceled = true;
130 mProgressDialog.dismiss();
131 } else {
132 Log.e(LOG_TAG, "Unknown button event has come: " + dialog.toString());
133 }
134 }
135 }
136
Wenyi Wangc32e0af2015-09-17 18:25:25 -0700137 private static boolean actuallyImportOneSimContact(
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700138 final Cursor cursor, final ContentResolver resolver, Account account) {
139 final NamePhoneTypePair namePhoneTypePair =
140 new NamePhoneTypePair(cursor.getString(NAME_COLUMN));
141 final String name = namePhoneTypePair.name;
142 final int phoneType = namePhoneTypePair.phoneType;
143 final String phoneNumber = cursor.getString(NUMBER_COLUMN);
144 final String emailAddresses = cursor.getString(EMAILS_COLUMN);
145 final String[] emailAddressArray;
146 if (!TextUtils.isEmpty(emailAddresses)) {
147 emailAddressArray = emailAddresses.split(",");
148 } else {
149 emailAddressArray = null;
150 }
151
152 final ArrayList<ContentProviderOperation> operationList =
153 new ArrayList<ContentProviderOperation>();
154 ContentProviderOperation.Builder builder =
155 ContentProviderOperation.newInsert(RawContacts.CONTENT_URI);
156 String myGroupsId = null;
157 if (account != null) {
158 builder.withValue(RawContacts.ACCOUNT_NAME, account.name);
159 builder.withValue(RawContacts.ACCOUNT_TYPE, account.type);
160 } else {
161 builder.withValues(sEmptyContentValues);
162 }
163 operationList.add(builder.build());
164
165 builder = ContentProviderOperation.newInsert(Data.CONTENT_URI);
166 builder.withValueBackReference(StructuredName.RAW_CONTACT_ID, 0);
167 builder.withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
168 builder.withValue(StructuredName.DISPLAY_NAME, name);
169 operationList.add(builder.build());
170
171 builder = ContentProviderOperation.newInsert(Data.CONTENT_URI);
172 builder.withValueBackReference(Phone.RAW_CONTACT_ID, 0);
173 builder.withValue(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
174 builder.withValue(Phone.TYPE, phoneType);
175 builder.withValue(Phone.NUMBER, phoneNumber);
176 builder.withValue(Data.IS_PRIMARY, 1);
177 operationList.add(builder.build());
178
179 if (emailAddresses != null) {
180 for (String emailAddress : emailAddressArray) {
181 builder = ContentProviderOperation.newInsert(Data.CONTENT_URI);
182 builder.withValueBackReference(Email.RAW_CONTACT_ID, 0);
183 builder.withValue(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE);
184 builder.withValue(Email.TYPE, Email.TYPE_MOBILE);
185 builder.withValue(Email.DATA, emailAddress);
186 operationList.add(builder.build());
187 }
188 }
189
190 if (myGroupsId != null) {
191 builder = ContentProviderOperation.newInsert(Data.CONTENT_URI);
192 builder.withValueBackReference(GroupMembership.RAW_CONTACT_ID, 0);
193 builder.withValue(Data.MIMETYPE, GroupMembership.CONTENT_ITEM_TYPE);
194 builder.withValue(GroupMembership.GROUP_SOURCE_ID, myGroupsId);
195 operationList.add(builder.build());
196 }
197
198 try {
Wenyi Wangc32e0af2015-09-17 18:25:25 -0700199 final ContentProviderResult[] results = resolver.applyBatch(ContactsContract.AUTHORITY,
200 operationList);
201 return results.length > 0; // Batch operations either all succeed or all fail.
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700202 } catch (RemoteException e) {
203 Log.e(LOG_TAG, String.format("%s: %s", e.toString(), e.getMessage()));
204 } catch (OperationApplicationException e) {
205 Log.e(LOG_TAG, String.format("%s: %s", e.toString(), e.getMessage()));
206 }
Wenyi Wangc32e0af2015-09-17 18:25:25 -0700207 return false;
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700208 }
209
210 private void importOneSimContact(int position) {
211 final ContentResolver resolver = getContentResolver();
Wenyi Wangc32e0af2015-09-17 18:25:25 -0700212 final Context context = getApplicationContext();
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700213 if (mCursor.moveToPosition(position)) {
Wenyi Wangc32e0af2015-09-17 18:25:25 -0700214 if (actuallyImportOneSimContact(mCursor, resolver, mAccount)){
215 Toast.makeText(context, R.string.singleContactImportedMsg, Toast.LENGTH_SHORT)
216 .show();
217 } else {
218 Toast.makeText(context, R.string.failedToImportSingleContactMsg, Toast.LENGTH_SHORT)
219 .show();
220 }
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700221 } else {
222 Log.e(LOG_TAG, "Failed to move the cursor to the position \"" + position + "\"");
Wenyi Wangc32e0af2015-09-17 18:25:25 -0700223 Toast.makeText(context, R.string.failedToImportSingleContactMsg, Toast.LENGTH_SHORT)
224 .show();
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700225 }
226 }
227
228 /* Followings are overridden methods */
229
230 @Override
231 protected void onCreate(Bundle icicle) {
232 super.onCreate(icicle);
233
234 Intent intent = getIntent();
235 if (intent != null) {
236 final String accountName = intent.getStringExtra("account_name");
237 final String accountType = intent.getStringExtra("account_type");
238 if (!TextUtils.isEmpty(accountName) && !TextUtils.isEmpty(accountType)) {
239 mAccount = new Account(accountName, accountType);
240 }
241 }
242
243 registerForContextMenu(getListView());
244
245 ActionBar actionBar = getActionBar();
246 if (actionBar != null) {
247 // android.R.id.home will be triggered in onOptionsItemSelected()
248 actionBar.setDisplayHomeAsUpEnabled(true);
249 }
250 }
251
252 @Override
253 protected CursorAdapter newAdapter() {
254 return new SimpleCursorAdapter(this, R.layout.sim_import_list_entry, mCursor,
255 new String[] { "name" }, new int[] { android.R.id.text1 });
256 }
257
258 @Override
259 protected Uri resolveIntent() {
Brian Attwellc35836d2014-10-06 16:09:31 -0700260 final Intent intent = getIntent();
Jay Shraunerc46700b2014-11-25 14:03:44 -0800261 int subId = -1;
Brian Attwellc35836d2014-10-06 16:09:31 -0700262 if (intent.hasExtra("subscription_id")) {
Jay Shraunerc46700b2014-11-25 14:03:44 -0800263 subId = intent.getIntExtra("subscription_id", -1);
264 }
265 if (subId != -1) {
Brian Attwellc35836d2014-10-06 16:09:31 -0700266 intent.setData(Uri.parse("content://icc/adn/subId/" + subId));
267 } else {
268 intent.setData(Uri.parse("content://icc/adn"));
269 }
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700270 if (Intent.ACTION_PICK.equals(intent.getAction())) {
271 // "index" is 1-based
272 mInitialSelection = intent.getIntExtra("index", 0) - 1;
273 }
274 return intent.getData();
275 }
276
277 @Override
278 public boolean onCreateOptionsMenu(Menu menu) {
279 super.onCreateOptionsMenu(menu);
280 menu.add(0, MENU_IMPORT_ALL, 0, R.string.importAllSimEntries);
281 return true;
282 }
283
284 @Override
285 public boolean onPrepareOptionsMenu(Menu menu) {
286 MenuItem item = menu.findItem(MENU_IMPORT_ALL);
287 if (item != null) {
288 item.setVisible(mCursor != null && mCursor.getCount() > 0);
289 }
290 return super.onPrepareOptionsMenu(menu);
291 }
292
293 @Override
294 public boolean onOptionsItemSelected(MenuItem item) {
295 switch (item.getItemId()) {
296 case android.R.id.home:
Jay Shrauner3a124e62014-07-17 09:58:34 -0700297 onBackPressed();
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700298 return true;
299 case MENU_IMPORT_ALL:
300 CharSequence title = getString(R.string.importAllSimEntries);
301 CharSequence message = getString(R.string.importingSimContacts);
302
303 ImportAllSimContactsThread thread = new ImportAllSimContactsThread();
304
305 // TODO: need to show some error dialog.
306 if (mCursor == null) {
307 Log.e(LOG_TAG, "cursor is null. Ignore silently.");
308 break;
309 }
310 mProgressDialog = new ProgressDialog(this);
311 mProgressDialog.setTitle(title);
312 mProgressDialog.setMessage(message);
313 mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
314 mProgressDialog.setButton(DialogInterface.BUTTON_NEGATIVE,
315 getString(R.string.cancel), thread);
316 mProgressDialog.setProgress(0);
317 mProgressDialog.setMax(mCursor.getCount());
318 mProgressDialog.show();
319
320 thread.start();
321
322 return true;
323 }
324 return super.onOptionsItemSelected(item);
325 }
326
327 @Override
328 public boolean onContextItemSelected(MenuItem item) {
329 switch (item.getItemId()) {
330 case MENU_IMPORT_ONE:
331 ContextMenu.ContextMenuInfo menuInfo = item.getMenuInfo();
332 if (menuInfo instanceof AdapterView.AdapterContextMenuInfo) {
333 int position = ((AdapterView.AdapterContextMenuInfo)menuInfo).position;
334 importOneSimContact(position);
335 return true;
336 }
337 }
338 return super.onContextItemSelected(item);
339 }
340
341 @Override
342 public void onCreateContextMenu(ContextMenu menu, View v,
343 ContextMenu.ContextMenuInfo menuInfo) {
344 if (menuInfo instanceof AdapterView.AdapterContextMenuInfo) {
345 AdapterView.AdapterContextMenuInfo itemInfo =
346 (AdapterView.AdapterContextMenuInfo) menuInfo;
347 TextView textView = (TextView) itemInfo.targetView.findViewById(android.R.id.text1);
348 if (textView != null) {
349 menu.setHeaderTitle(textView.getText());
350 }
351 menu.add(0, MENU_IMPORT_ONE, 0, R.string.importSimEntry);
352 }
353 }
354
355 @Override
356 public void onListItemClick(ListView l, View v, int position, long id) {
357 importOneSimContact(position);
358 }
359
360 @Override
361 public boolean onKeyDown(int keyCode, KeyEvent event) {
362 switch (keyCode) {
363 case KeyEvent.KEYCODE_CALL: {
364 if (mCursor != null && mCursor.moveToPosition(getSelectedItemPosition())) {
365 String phoneNumber = mCursor.getString(NUMBER_COLUMN);
366 if (phoneNumber == null || !TextUtils.isGraphic(phoneNumber)) {
367 // There is no number entered.
368 //TODO play error sound or something...
369 return true;
370 }
371 Intent intent = new Intent(Intent.ACTION_CALL_PRIVILEGED,
Jay Shrauner137458b2014-09-05 14:27:25 -0700372 Uri.fromParts(PhoneAccount.SCHEME_TEL, phoneNumber, null));
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700373 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
374 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
375 startActivity(intent);
376 finish();
377 return true;
378 }
379 }
380 }
381 return super.onKeyDown(keyCode, event);
382 }
383}