blob: a6f23a853e2dc09194020e1ca77fc0be2b257c6a [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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
Debashish Chatterjee29c15752011-07-04 09:48:13 +010017
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080018package android.provider;
19
20import android.content.ContentResolver;
21import android.content.ContentValues;
22import android.content.Context;
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -080023import android.database.Cursor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import android.net.Uri;
Daisuke Miyakawae23362a2012-05-06 16:54:25 -070025import android.provider.ContactsContract.CommonDataKinds.Callable;
Daisuke Miyakawaf4685912011-06-25 12:31:13 -070026import android.provider.ContactsContract.CommonDataKinds.Phone;
27import android.provider.ContactsContract.DataUsageFeedback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029
Chiao Cheng509e1f12012-08-01 15:40:55 -070030import com.android.internal.telephony.CallerInfo;
31import com.android.internal.telephony.PhoneConstants;
32
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033/**
34 * The CallLog provider contains information about placed and received calls.
35 */
36public class CallLog {
37 public static final String AUTHORITY = "call_log";
38
39 /**
40 * The content:// style URL for this provider
41 */
42 public static final Uri CONTENT_URI =
43 Uri.parse("content://" + AUTHORITY);
44
45 /**
46 * Contains the recent calls.
47 */
48 public static class Calls implements BaseColumns {
49 /**
50 * The content:// style URL for this table
51 */
52 public static final Uri CONTENT_URI =
53 Uri.parse("content://call_log/calls");
54
55 /**
56 * The content:// style URL for filtering this table on phone numbers
57 */
58 public static final Uri CONTENT_FILTER_URI =
59 Uri.parse("content://call_log/calls/filter");
60
61 /**
Chiao Cheng509e1f12012-08-01 15:40:55 -070062 * Query parameter used to limit the number of call logs returned.
63 * <p>
64 * TYPE: integer
65 */
66 public static final String LIMIT_PARAM_KEY = "limit";
67
68 /**
69 * Query parameter used to specify the starting record to return.
70 * <p>
71 * TYPE: integer
72 */
73 public static final String OFFSET_PARAM_KEY = "offset";
74
75 /**
Flavio Lerda9ef78f02011-06-29 10:51:59 +010076 * An optional URI parameter which instructs the provider to allow the operation to be
77 * applied to voicemail records as well.
78 * <p>
79 * TYPE: Boolean
80 * <p>
81 * Using this parameter with a value of {@code true} will result in a security error if the
82 * calling package does not have appropriate permissions to access voicemails.
83 *
84 * @hide
85 */
86 public static final String ALLOW_VOICEMAILS_PARAM_KEY = "allow_voicemails";
87
88 /**
89 * Content uri with {@link #ALLOW_VOICEMAILS_PARAM_KEY} set. This can directly be used to
90 * access call log entries that includes voicemail records.
91 *
92 * @hide
93 */
94 public static final Uri CONTENT_URI_WITH_VOICEMAIL = CONTENT_URI.buildUpon()
95 .appendQueryParameter(ALLOW_VOICEMAILS_PARAM_KEY, "true")
96 .build();
97
98 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 * The default sort order for this table
100 */
101 public static final String DEFAULT_SORT_ORDER = "date DESC";
102
103 /**
104 * The MIME type of {@link #CONTENT_URI} and {@link #CONTENT_FILTER_URI}
105 * providing a directory of calls.
106 */
107 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/calls";
108
109 /**
110 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single
111 * call.
112 */
113 public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/calls";
114
115 /**
Yusuf T. Mobilef6737d32009-05-15 10:56:36 -0700116 * The type of the call (incoming, outgoing or missed).
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117 * <P>Type: INTEGER (int)</P>
118 */
119 public static final String TYPE = "type";
120
Debashish Chatterjee412359f2011-06-06 17:35:59 +0100121 /** Call log type for incoming calls. */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122 public static final int INCOMING_TYPE = 1;
Debashish Chatterjee412359f2011-06-06 17:35:59 +0100123 /** Call log type for outgoing calls. */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124 public static final int OUTGOING_TYPE = 2;
Debashish Chatterjee412359f2011-06-06 17:35:59 +0100125 /** Call log type for missed calls. */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126 public static final int MISSED_TYPE = 3;
Debashish Chatterjee412359f2011-06-06 17:35:59 +0100127 /**
128 * Call log type for voicemails.
129 * @hide
130 */
131 public static final int VOICEMAIL_TYPE = 4;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132
133 /**
134 * The phone number as the user entered it.
135 * <P>Type: TEXT</P>
136 */
137 public static final String NUMBER = "number";
138
139 /**
Yorke Lee49e1cf92013-09-10 14:39:24 -0700140 * The number presenting rules set by the network.
141 *
142 * <p>
143 * Allowed values:
144 * <ul>
145 * <li>{@link #PRESENTATION_ALLOWED}</li>
146 * <li>{@link #PRESENTATION_RESTRICTED}</li>
147 * <li>{@link #PRESENTATION_UNKNOWN}</li>
148 * <li>{@link #PRESENTATION_PAYPHONE}</li>
149 * </ul>
150 * </p>
151 *
Jay Shraunerd88eb712013-06-10 10:10:11 -0700152 * <P>Type: INTEGER</P>
153 */
154 public static final String NUMBER_PRESENTATION = "presentation";
155
156 /** Number is allowed to display for caller id. */
157 public static final int PRESENTATION_ALLOWED = 1;
158 /** Number is blocked by user. */
159 public static final int PRESENTATION_RESTRICTED = 2;
160 /** Number is not specified or unknown by network. */
161 public static final int PRESENTATION_UNKNOWN = 3;
162 /** Number is a pay phone. */
163 public static final int PRESENTATION_PAYPHONE = 4;
164
165 /**
Bai Tao224744c2010-08-31 09:59:13 +0800166 * The ISO 3166-1 two letters country code of the country where the
167 * user received or made the call.
168 * <P>
169 * Type: TEXT
170 * </P>
171 *
172 * @hide
173 */
174 public static final String COUNTRY_ISO = "countryiso";
175
176 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177 * The date the call occured, in milliseconds since the epoch
178 * <P>Type: INTEGER (long)</P>
179 */
180 public static final String DATE = "date";
181
182 /**
183 * The duration of the call in seconds
184 * <P>Type: INTEGER (long)</P>
185 */
186 public static final String DURATION = "duration";
187
188 /**
189 * Whether or not the call has been acknowledged
190 * <P>Type: INTEGER (boolean)</P>
191 */
192 public static final String NEW = "new";
193
194 /**
195 * The cached name associated with the phone number, if it exists.
196 * This value is not guaranteed to be current, if the contact information
197 * associated with this number has changed.
198 * <P>Type: TEXT</P>
199 */
200 public static final String CACHED_NAME = "name";
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800201
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800202 /**
203 * The cached number type (Home, Work, etc) associated with the
204 * phone number, if it exists.
205 * This value is not guaranteed to be current, if the contact information
206 * associated with this number has changed.
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800207 * <P>Type: INTEGER</P>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208 */
209 public static final String CACHED_NUMBER_TYPE = "numbertype";
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800210
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211 /**
212 * The cached number label, for a custom number type, associated with the
213 * phone number, if it exists.
214 * This value is not guaranteed to be current, if the contact information
215 * associated with this number has changed.
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800216 * <P>Type: TEXT</P>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 */
218 public static final String CACHED_NUMBER_LABEL = "numberlabel";
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800219
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 /**
Debashish Chatterjee412359f2011-06-06 17:35:59 +0100221 * URI of the voicemail entry. Populated only for {@link #VOICEMAIL_TYPE}.
222 * <P>Type: TEXT</P>
223 * @hide
224 */
225 public static final String VOICEMAIL_URI = "voicemail_uri";
226
227 /**
Flavio Lerda651212d2011-07-21 16:53:59 +0100228 * Whether this item has been read or otherwise consumed by the user.
229 * <p>
230 * Unlike the {@link #NEW} field, which requires the user to have acknowledged the
231 * existence of the entry, this implies the user has interacted with the entry.
232 * <P>Type: INTEGER (boolean)</P>
Flavio Lerda651212d2011-07-21 16:53:59 +0100233 */
234 public static final String IS_READ = "is_read";
235
236 /**
Flavio Lerda270f9302011-08-09 12:01:13 +0100237 * A geocoded location for the number associated with this call.
238 * <p>
239 * The string represents a city, state, or country associated with the number.
240 * <P>Type: TEXT</P>
241 * @hide
242 */
243 public static final String GEOCODED_LOCATION = "geocoded_location";
244
245 /**
Flavio Lerda2d538d42011-08-16 08:29:06 +0100246 * The cached URI to look up the contact associated with the phone number, if it exists.
247 * This value is not guaranteed to be current, if the contact information
248 * associated with this number has changed.
249 * <P>Type: TEXT</P>
250 * @hide
251 */
252 public static final String CACHED_LOOKUP_URI = "lookup_uri";
253
254 /**
255 * The cached phone number of the contact which matches this entry, if it exists.
256 * This value is not guaranteed to be current, if the contact information
257 * associated with this number has changed.
258 * <P>Type: TEXT</P>
259 * @hide
260 */
261 public static final String CACHED_MATCHED_NUMBER = "matched_number";
262
263 /**
264 * The cached normalized version of the phone number, if it exists.
265 * This value is not guaranteed to be current, if the contact information
266 * associated with this number has changed.
267 * <P>Type: TEXT</P>
268 * @hide
269 */
270 public static final String CACHED_NORMALIZED_NUMBER = "normalized_number";
271
272 /**
273 * The cached photo id of the picture associated with the phone number, if it exists.
274 * This value is not guaranteed to be current, if the contact information
275 * associated with this number has changed.
276 * <P>Type: INTEGER (long)</P>
277 * @hide
278 */
279 public static final String CACHED_PHOTO_ID = "photo_id";
280
281 /**
Flavio Lerda0fce15b2011-10-01 18:55:33 +0100282 * The cached formatted phone number.
283 * This value is not guaranteed to be present.
284 * <P>Type: TEXT</P>
285 * @hide
286 */
287 public static final String CACHED_FORMATTED_NUMBER = "formatted_number";
288
289 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800290 * Adds a call to the call log.
291 *
292 * @param ci the CallerInfo object to get the target contact from. Can be null
293 * if the contact is unknown.
294 * @param context the context used to get the ContentResolver
295 * @param number the phone number to be added to the calls db
Jay Shraunerd88eb712013-06-10 10:10:11 -0700296 * @param presentation enum value from PhoneConstants.PRESENTATION_xxx, which
297 * is set by the network and denotes the number presenting rules for
The Android Open Source Project10592532009-03-18 17:39:46 -0700298 * "allowed", "payphone", "restricted" or "unknown"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 * @param callType enumerated values for "incoming", "outgoing", or "missed"
300 * @param start time stamp for the call in milliseconds
301 * @param duration call duration in seconds
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800302 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800303 * {@hide}
304 */
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800305 public static Uri addCall(CallerInfo ci, Context context, String number,
The Android Open Source Project10592532009-03-18 17:39:46 -0700306 int presentation, int callType, long start, int duration) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307 final ContentResolver resolver = context.getContentResolver();
Jay Shraunerd88eb712013-06-10 10:10:11 -0700308 int numberPresentation = PRESENTATION_ALLOWED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309
Jay Shraunerd88eb712013-06-10 10:10:11 -0700310 // Remap network specified number presentation types
311 // PhoneConstants.PRESENTATION_xxx to calllog number presentation types
312 // Calls.PRESENTATION_xxx, in order to insulate the persistent calllog
313 // from any future radio changes.
314 // If the number field is empty set the presentation type to Unknown.
Wink Savillea639b312012-07-10 12:37:54 -0700315 if (presentation == PhoneConstants.PRESENTATION_RESTRICTED) {
Jay Shraunerd88eb712013-06-10 10:10:11 -0700316 numberPresentation = PRESENTATION_RESTRICTED;
Wink Savillea639b312012-07-10 12:37:54 -0700317 } else if (presentation == PhoneConstants.PRESENTATION_PAYPHONE) {
Jay Shraunerd88eb712013-06-10 10:10:11 -0700318 numberPresentation = PRESENTATION_PAYPHONE;
Pauyl l Bermane1dc2ba2009-07-10 18:27:36 -0400319 } else if (TextUtils.isEmpty(number)
Wink Savillea639b312012-07-10 12:37:54 -0700320 || presentation == PhoneConstants.PRESENTATION_UNKNOWN) {
Jay Shraunerd88eb712013-06-10 10:10:11 -0700321 numberPresentation = PRESENTATION_UNKNOWN;
322 }
323 if (numberPresentation != PRESENTATION_ALLOWED) {
324 number = "";
325 if (ci != null) {
326 ci.name = "";
327 }
Wink Savilledda53912009-05-28 17:32:34 -0700328 }
Pauyl l Bermane1dc2ba2009-07-10 18:27:36 -0400329
Jay Shraunerd88eb712013-06-10 10:10:11 -0700330 ContentValues values = new ContentValues(6);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800331
332 values.put(NUMBER, number);
Jay Shraunerd88eb712013-06-10 10:10:11 -0700333 values.put(NUMBER_PRESENTATION, Integer.valueOf(numberPresentation));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800334 values.put(TYPE, Integer.valueOf(callType));
335 values.put(DATE, Long.valueOf(start));
336 values.put(DURATION, Long.valueOf(duration));
337 values.put(NEW, Integer.valueOf(1));
Debashish Chatterjee4efaf4b2011-08-11 16:47:16 +0100338 if (callType == MISSED_TYPE) {
339 values.put(IS_READ, Integer.valueOf(0));
340 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800341 if (ci != null) {
342 values.put(CACHED_NAME, ci.name);
343 values.put(CACHED_NUMBER_TYPE, ci.numberType);
344 values.put(CACHED_NUMBER_LABEL, ci.numberLabel);
345 }
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800346
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347 if ((ci != null) && (ci.person_id > 0)) {
Daisuke Miyakawaf4685912011-06-25 12:31:13 -0700348 // Update usage information for the number associated with the contact ID.
349 // We need to use both the number and the ID for obtaining a data ID since other
350 // contacts may have the same number.
351
352 final Cursor cursor;
353
354 // We should prefer normalized one (probably coming from
355 // Phone.NORMALIZED_NUMBER column) first. If it isn't available try others.
356 if (ci.normalizedNumber != null) {
357 final String normalizedPhoneNumber = ci.normalizedNumber;
358 cursor = resolver.query(Phone.CONTENT_URI,
359 new String[] { Phone._ID },
360 Phone.CONTACT_ID + " =? AND " + Phone.NORMALIZED_NUMBER + " =?",
361 new String[] { String.valueOf(ci.person_id), normalizedPhoneNumber},
362 null);
363 } else {
364 final String phoneNumber = ci.phoneNumber != null ? ci.phoneNumber : number;
Daisuke Miyakawae23362a2012-05-06 16:54:25 -0700365 cursor = resolver.query(
366 Uri.withAppendedPath(Callable.CONTENT_FILTER_URI,
367 Uri.encode(phoneNumber)),
Daisuke Miyakawaf4685912011-06-25 12:31:13 -0700368 new String[] { Phone._ID },
Daisuke Miyakawae23362a2012-05-06 16:54:25 -0700369 Phone.CONTACT_ID + " =?",
370 new String[] { String.valueOf(ci.person_id) },
Daisuke Miyakawaf4685912011-06-25 12:31:13 -0700371 null);
372 }
373
374 if (cursor != null) {
375 try {
376 if (cursor.getCount() > 0 && cursor.moveToFirst()) {
377 final Uri feedbackUri = DataUsageFeedback.FEEDBACK_URI.buildUpon()
378 .appendPath(cursor.getString(0))
379 .appendQueryParameter(DataUsageFeedback.USAGE_TYPE,
380 DataUsageFeedback.USAGE_TYPE_CALL)
381 .build();
382 resolver.update(feedbackUri, new ContentValues(), null, null);
383 }
384 } finally {
385 cursor.close();
386 }
387 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388 }
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800389
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800390 Uri result = resolver.insert(CONTENT_URI, values);
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800391
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800392 removeExpiredEntries(context);
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800393
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800394 return result;
395 }
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800396
397 /**
398 * Query the call log database for the last dialed number.
399 * @param context Used to get the content resolver.
400 * @return The last phone number dialed (outgoing) or an empty
401 * string if none exist yet.
402 */
403 public static String getLastOutgoingCall(Context context) {
404 final ContentResolver resolver = context.getContentResolver();
405 Cursor c = null;
406 try {
407 c = resolver.query(
408 CONTENT_URI,
409 new String[] {NUMBER},
410 TYPE + " = " + OUTGOING_TYPE,
411 null,
412 DEFAULT_SORT_ORDER + " LIMIT 1");
413 if (c == null || !c.moveToFirst()) {
414 return "";
415 }
416 return c.getString(0);
417 } finally {
418 if (c != null) c.close();
419 }
420 }
421
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800422 private static void removeExpiredEntries(Context context) {
423 final ContentResolver resolver = context.getContentResolver();
424 resolver.delete(CONTENT_URI, "_id IN " +
Nicolas Cataniab8a2aaf2010-01-14 10:44:02 -0800425 "(SELECT _id FROM calls ORDER BY " + DEFAULT_SORT_ORDER
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800426 + " LIMIT -1 OFFSET 500)", null);
427 }
428 }
429}