blob: 4bf7f02345bdc3aec6fa1b9b83fa9b0f613df449 [file] [log] [blame]
Vikram Aggarwal4f9a4c52012-01-11 15:04:55 -08001/*******************************************************************************
2 * Copyright (C) 2011 Google Inc.
3 * Licensed to The Android Open Source Project.
Mindy Pereira6f92de62011-12-19 11:31:48 -08004 *
Vikram Aggarwal4f9a4c52012-01-11 15:04:55 -08005 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
Mindy Pereira6f92de62011-12-19 11:31:48 -08008 *
Vikram Aggarwal4f9a4c52012-01-11 15:04:55 -08009 * http://www.apache.org/licenses/LICENSE-2.0
Mindy Pereira6f92de62011-12-19 11:31:48 -080010 *
Vikram Aggarwal4f9a4c52012-01-11 15:04:55 -080011 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *******************************************************************************/
Mindy Pereira6f92de62011-12-19 11:31:48 -080017
Andy Huang30e2c242012-01-06 18:14:30 -080018package com.android.mail.providers;
Mindy Pereira6f92de62011-12-19 11:31:48 -080019
Paul Westbrook334e64a2012-02-23 13:26:35 -080020import android.content.ContentProvider;
21import android.content.ContentValues;
Mindy Pereira82cc5662012-01-09 17:29:30 -080022import android.content.Context;
Andy Huange0b83b82012-03-06 19:57:04 -080023import android.content.Intent;
Marc Blank48a4aed2012-03-10 14:07:00 -080024import android.net.Uri;
Mindy Pereira6f92de62011-12-19 11:31:48 -080025import android.provider.BaseColumns;
Mindy Pereira82cc5662012-01-09 17:29:30 -080026import android.text.TextUtils;
27
28import com.android.common.contacts.DataUsageStatUpdater;
Mindy Pereira6f92de62011-12-19 11:31:48 -080029
Mindy Pereira82cc5662012-01-09 17:29:30 -080030import java.util.ArrayList;
Paul Westbrook82ea6da2011-12-15 11:03:51 -080031
Mindy Pereira6f92de62011-12-19 11:31:48 -080032public class UIProvider {
Mindy Pereira82cc5662012-01-09 17:29:30 -080033 public static final String EMAIL_SEPARATOR = "\n";
Mindy Pereira326c6602012-01-04 15:32:42 -080034 public static final long INVALID_CONVERSATION_ID = -1;
35 public static final long INVALID_MESSAGE_ID = -1;
36
Marc Blank9ace18a2012-02-21 16:34:07 -080037 /**
38 * Values for the current state of a Folder/Account; note that it's possible that more than one
39 * sync is in progress
40 */
41 public static final class SyncStatus {
42 // No sync in progress
Paul Westbrookc808fac2012-02-22 16:42:18 -080043 public static final int NO_SYNC = 0;
Marc Blank9ace18a2012-02-21 16:34:07 -080044 // A user-requested sync/refresh is in progress
Paul Westbrookc808fac2012-02-22 16:42:18 -080045 public static final int USER_REFRESH = 1<<0;
Marc Blank9ace18a2012-02-21 16:34:07 -080046 // A user-requested query is in progress
Paul Westbrookc808fac2012-02-22 16:42:18 -080047 public static final int USER_QUERY = 1<<1;
Marc Blank9ace18a2012-02-21 16:34:07 -080048 // A user request for additional results is in progress
Paul Westbrookc808fac2012-02-22 16:42:18 -080049 public static final int USER_MORE_RESULTS = 1<<2;
Marc Blank9ace18a2012-02-21 16:34:07 -080050 // A background sync is in progress
Paul Westbrookc808fac2012-02-22 16:42:18 -080051 public static final int BACKGROUND_SYNC = 1<<3;
Marc Blank9ace18a2012-02-21 16:34:07 -080052 }
53
54 /**
55 * Values for the result of the last attempted sync of a Folder/Account
56 */
57 public static final class LastSyncResult {
58 // The sync completed successfully
59 public static final int SUCCESS = 0;
60 // The sync wasn't completed due to a connection error
61 public static final int CONNECTION_ERROR = 1;
62 // The sync wasn't completed due to an authentication error
63 public static final int AUTH_ERROR = 2;
64 // The sync wasn't completed due to a security error
65 public static final int SECURITY_ERROR = 3;
66 // The sync wasn't completed due to a low memory condition
67 public static final int STORAGE_ERROR = 4;
68 // The sync wasn't completed due to an internal error/exception
69 public static final int INTERNAL_ERROR = 5;
70 }
71
Paul Westbrook82ea6da2011-12-15 11:03:51 -080072 // The actual content provider should define its own authority
Andy Huang30e2c242012-01-06 18:14:30 -080073 public static final String AUTHORITY = "com.android.mail.providers";
Mindy Pereira6f92de62011-12-19 11:31:48 -080074
75 public static final String ACCOUNT_LIST_TYPE =
Paul Westbrook82ea6da2011-12-15 11:03:51 -080076 "vnd.android.cursor.dir/vnd.com.android.mail.account";
Mindy Pereira6f92de62011-12-19 11:31:48 -080077 public static final String ACCOUNT_TYPE =
Paul Westbrook82ea6da2011-12-15 11:03:51 -080078 "vnd.android.cursor.item/vnd.com.android.mail.account";
Mindy Pereira6f92de62011-12-19 11:31:48 -080079
80 public static final String[] ACCOUNTS_PROJECTION = {
81 BaseColumns._ID,
82 AccountColumns.NAME,
83 AccountColumns.PROVIDER_VERSION,
84 AccountColumns.URI,
85 AccountColumns.CAPABILITIES,
86 AccountColumns.FOLDER_LIST_URI,
87 AccountColumns.SEARCH_URI,
88 AccountColumns.ACCOUNT_FROM_ADDRESSES_URI,
Mindy Pereira33fe9082012-01-09 16:24:30 -080089 AccountColumns.SAVE_DRAFT_URI,
Mindy Pereira7ed1c112012-01-18 10:59:25 -080090 AccountColumns.SEND_MAIL_URI,
Mindy Pereira96b5c352012-02-01 11:33:40 -080091 AccountColumns.EXPUNGE_MESSAGE_URI,
Mindy Pereira9600dac2012-02-17 15:59:25 -080092 AccountColumns.UNDO_URI,
Marc Blank9ace18a2012-02-21 16:34:07 -080093 AccountColumns.SETTINGS_INTENT_URI,
Paul Westbrook63eef792012-02-27 14:01:06 -080094 AccountColumns.SETTINGS_QUERY_URI,
Paul Westbrook94e440d2012-02-24 11:03:47 -080095 AccountColumns.SYNC_STATUS,
Mindy Pereira23755e22012-02-27 13:58:04 -080096 AccountColumns.HELP_INTENT_URI,
Mindy Pereira898cd382012-03-06 08:42:47 -080097 AccountColumns.COMPOSE_URI,
Vikram Aggarwal27e85f22012-03-05 16:29:17 -080098 AccountColumns.MIME_TYPE,
99 AccountColumns.RECENT_FOLDER_LIST_URI
Mindy Pereira6f92de62011-12-19 11:31:48 -0800100 };
101
Mindy Pereira33fe9082012-01-09 16:24:30 -0800102 public static final int ACCOUNT_ID_COLUMN = 0;
103 public static final int ACCOUNT_NAME_COLUMN = 1;
104 public static final int ACCOUNT_PROVIDER_VERISON_COLUMN = 2;
105 public static final int ACCOUNT_URI_COLUMN = 3;
106 public static final int ACCOUNT_CAPABILITIES_COLUMN = 4;
107 public static final int ACCOUNT_FOLDER_LIST_URI_COLUMN = 5;
108 public static final int ACCOUNT_SEARCH_URI_COLUMN = 6;
109 public static final int ACCOUNT_FROM_ADDRESSES_URI_COLUMN = 7;
110 public static final int ACCOUNT_SAVE_DRAFT_URI_COLUMN = 8;
111 public static final int ACCOUNT_SEND_MESSAGE_URI_COLUMN = 9;
Mindy Pereira82cc5662012-01-09 17:29:30 -0800112 public static final int ACCOUNT_EXPUNGE_MESSAGE_URI_COLUMN = 10;
Mindy Pereira96b5c352012-02-01 11:33:40 -0800113 public static final int ACCOUNT_UNDO_URI_COLUMN = 11;
Marc Blank9ace18a2012-02-21 16:34:07 -0800114 public static final int ACCOUNT_SETTINGS_INTENT_URI_COLUMN = 12;
Paul Westbrook63eef792012-02-27 14:01:06 -0800115 public static final int ACCOUNT_SETTINGS_QUERY_URI_COLUMN = 13;
116 public static final int ACCOUNT_SYNC_STATUS_COLUMN = 14;
117 public static final int ACCOUNT_HELP_INTENT_URI_COLUMN = 15;
118 public static final int ACCOUNT_COMPOSE_INTENT_URI_COLUMN = 16;
Mindy Pereira898cd382012-03-06 08:42:47 -0800119 public static final int ACCOUNT_MIME_TYPE_COLUMN = 17;
Vikram Aggarwal27e85f22012-03-05 16:29:17 -0800120 public static final int ACCOUNT_RECENT_FOLDER_LIST_URI_COLUMN = 18;
Mindy Pereira33fe9082012-01-09 16:24:30 -0800121
Mindy Pereira6f92de62011-12-19 11:31:48 -0800122 public static final class AccountCapabilities {
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800123 /**
124 * Whether folders can be synchronized back to the server.
125 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800126 public static final int SYNCABLE_FOLDERS = 0x0001;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800127 /**
128 * Whether the server allows reporting spam back.
129 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800130 public static final int REPORT_SPAM = 0x0002;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800131 /**
132 * Whether the server supports a concept of Archive: removing mail from the Inbox but
133 * keeping it around.
134 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800135 public static final int ARCHIVE = 0x0004;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800136 /**
137 * Whether the server will stop notifying on updates to this thread? This requires
138 * THREADED_CONVERSATIONS to be true, otherwise it should be ignored.
139 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800140 public static final int MUTE = 0x0008;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800141 /**
142 * Whether the server supports searching over all messages. This requires SYNCABLE_FOLDERS
143 * to be true, otherwise it should be ignored.
144 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800145 public static final int SERVER_SEARCH = 0x0010;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800146 /**
147 * Whether the server supports constraining search to a single folder. Requires
148 * SYNCABLE_FOLDERS, otherwise it should be ignored.
149 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800150 public static final int FOLDER_SERVER_SEARCH = 0x0020;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800151 /**
152 * Whether the server sends us sanitized HTML (guaranteed to not contain malicious HTML).
153 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800154 public static final int SANITIZED_HTML = 0x0040;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800155 /**
156 * Whether the server allows synchronization of draft messages. This does NOT require
157 * SYNCABLE_FOLDERS to be set.
158 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800159 public static final int DRAFT_SYNCHRONIZATION = 0x0080;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800160 /**
161 * Does the server allow the user to compose mails (and reply) using addresses other than
162 * their account name? For instance, GMail allows users to set FROM addresses that are
163 * different from account@gmail.com address. For instance, user@gmail.com could have another
164 * FROM: address like user@android.com. If the user has enabled multiple FROM address, he
165 * can compose (and reply) using either address.
166 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800167 public static final int MULTIPLE_FROM_ADDRESSES = 0x0100;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800168 /**
169 * Whether the server allows the original message to be included in the reply by setting a
170 * flag on the reply. If we can avoid including the entire previous message, we save on
171 * bandwidth (replies are shorter).
172 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800173 public static final int SMART_REPLY = 0x0200;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800174 /**
175 * Does this account support searching locally, on the device? This requires the backend
176 * storage to support a mechanism for searching.
177 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800178 public static final int LOCAL_SEARCH = 0x0400;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800179 /**
180 * Whether the server supports a notion of threaded conversations: where replies to messages
181 * are tagged to keep conversations grouped. This could be full threading (each message
182 * lists its parent) or conversation-level threading (each message lists one conversation
183 * which it belongs to)
184 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800185 public static final int THREADED_CONVERSATIONS = 0x0800;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800186 /**
187 * Whether the server supports allowing a conversation to be in multiple folders. (Or allows
Mindy Pereira30fd47b2012-03-09 09:24:00 -0800188 * multiple folders on a single conversation)
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800189 */
Mindy Pereira84648892012-02-03 08:29:55 -0800190 public static final int MULTIPLE_FOLDERS_PER_CONV = 0x1000;
Mindy Pereira343ffeb2012-02-22 10:12:14 -0800191 /**
192 * Whether the provider supports undoing operations. If it doesn't, never show the undo bar.
193 */
194 public static final int UNDO = 0x2000;
Paul Westbrook94e440d2012-02-24 11:03:47 -0800195 /**
196 * Whether the account provides help content.
197 */
198 public static final int HELP_CONTENT = 0x4000;
Mindy Pereira7f0a9622012-02-29 15:00:34 -0800199 /**
200 * Whether the account provides a mechanism for marking conversations as important.
201 */
202 public static final int MARK_IMPORTANT = 0x8000;
Mindy Pereira6f92de62011-12-19 11:31:48 -0800203 }
204
205 public static final class AccountColumns {
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800206 /**
207 * This string column contains the human visible name for the account.
208 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800209 public static final String NAME = "name";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800210
211 /**
Vikram Aggarwal6dde1782012-03-12 17:16:48 -0700212 * This integer contains the type of the account: Google versus non google. This is not
213 * returned by the UIProvider, rather this is a notion in the system.
214 */
215 public static final String TYPE = "type";
216
217 /**
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800218 * This integer column returns the version of the UI provider schema from which this
219 * account provider will return results.
220 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800221 public static final String PROVIDER_VERSION = "providerVersion";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800222
223 /**
224 * This string column contains the uri to directly access the information for this account.
225 */
Mindy Pereira6349a042012-01-04 11:25:01 -0800226 public static final String URI = "accountUri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800227
228 /**
Andy Huange0b83b82012-03-06 19:57:04 -0800229 * This integer column contains a bit field of the possible capabilities that this account
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800230 * supports.
231 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800232 public static final String CAPABILITIES = "capabilities";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800233
234 /**
Mindy Pereira750cc732011-12-21 13:32:29 -0800235 * This string column contains the content provider uri to return the
236 * list of top level folders for this account.
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800237 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800238 public static final String FOLDER_LIST_URI = "folderListUri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800239
240 /**
241 * This string column contains the content provider uri that can be queried for search
242 * results.
Paul Westbrook8130e6f2012-03-06 13:51:01 -0800243 * The supported query parameters are limited to those listed
244 * in {@link #SearchQueryParameters}
Paul Westbrook1475a7a2012-03-08 15:06:27 -0800245 * The cursor returned from this query is expected have one row, where the columnm are a
246 * subset of the columns specified in {@link #FolderColumns}
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800247 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800248 public static final String SEARCH_URI = "searchUri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800249
250 /**
251 * This string column contains the content provider uri that can be queried to access the
252 * from addresses for this account.
253 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800254 public static final String ACCOUNT_FROM_ADDRESSES_URI = "accountFromAddressesUri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800255
256 /**
257 * This string column contains the content provider uri that can be used to save (insert)
Mindy Pereira82cc5662012-01-09 17:29:30 -0800258 * new draft messages for this account. NOTE: This might be better to
259 * be an update operation on the messageUri.
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800260 */
Mindy Pereira33fe9082012-01-09 16:24:30 -0800261 public static final String SAVE_DRAFT_URI = "saveDraftUri";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800262
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800263 /**
264 * This string column contains the content provider uri that can be used to send
265 * a message for this account.
266 * NOTE: This might be better to be an update operation on the messageUri.
267 */
Mindy Pereira7ed1c112012-01-18 10:59:25 -0800268 public static final String SEND_MAIL_URI = "sendMailUri";
Mindy Pereira82cc5662012-01-09 17:29:30 -0800269
270 /**
271 * This string column contains the content provider uri that can be used
272 * to expunge a message from this account. NOTE: This might be better to
273 * be an update operation on the messageUri.
274 */
275 public static final String EXPUNGE_MESSAGE_URI = "expungeMessageUri";
Mindy Pereira96b5c352012-02-01 11:33:40 -0800276
277 /**
278 * This string column contains the content provider uri that can be used
279 * to undo the last committed action.
280 */
Mindy Pereira9600dac2012-02-17 15:59:25 -0800281 public static final String UNDO_URI = "undoUri";
Paul Westbrook2861b6a2012-02-15 15:25:34 -0800282
283 /**
Paul Westbrook9912eee2012-02-22 14:49:03 -0800284 * Uri for EDIT intent that will cause the settings screens for this account type to be
Paul Westbrook2861b6a2012-02-15 15:25:34 -0800285 * shown.
286 * TODO: When we want to support a heterogeneous set of account types, this value may need
287 * to be moved to a global content provider.
288 */
289 public static String SETTINGS_INTENT_URI = "accountSettingsIntentUri";
Marc Blank9ace18a2012-02-21 16:34:07 -0800290
291 /**
Paul Westbrook63eef792012-02-27 14:01:06 -0800292 * This string column contains the content provider uri that can be used to query user
293 * settings/preferences.
294 *
Vikram Aggarwal27e85f22012-03-05 16:29:17 -0800295 * The cursor returned by this query support columns declared in {@link #SettingsColumns}
Paul Westbrook63eef792012-02-27 14:01:06 -0800296 */
297 public static final String SETTINGS_QUERY_URI = "accountSettingsQueryUri";
298
299 /**
Paul Westbrook94e440d2012-02-24 11:03:47 -0800300 * Uri for VIEW intent that will cause the help screens for this account type to be
301 * shown.
302 * TODO: When we want to support a heterogeneous set of account types, this value may need
303 * to be moved to a global content provider.
304 */
305 public static String HELP_INTENT_URI = "helpIntentUri";
306
307 /**
Marc Blank9ace18a2012-02-21 16:34:07 -0800308 * This int column contains the current sync status of the account (the logical AND of the
309 * sync status of folders in this account)
310 */
311 public static final String SYNC_STATUS = "syncStatus";
Mindy Pereira23755e22012-02-27 13:58:04 -0800312 /**
313 * Uri for VIEW intent that will cause the compose screens for this type
314 * of account to be shown.
315 */
316 public static final String COMPOSE_URI = "composeUri";
Mindy Pereira898cd382012-03-06 08:42:47 -0800317 /**
318 * Mime-type defining this account.
319 */
320 public static final String MIME_TYPE = "mimeType";
Vikram Aggarwal27e85f22012-03-05 16:29:17 -0800321 /**
322 * URI for location of recent folders viewed on this account.
323 */
324 public static final String RECENT_FOLDER_LIST_URI = "recentFolderListUri";
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800325 }
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800326
Paul Westbrook8130e6f2012-03-06 13:51:01 -0800327 public static final class SearchQueryParameters {
328 /**
329 * Parameter used to specify the search query.
330 */
331 public static final String QUERY = "query";
332
333 /**
334 * If specified, the query results will be limited to this folder.
335 */
336 public static final String FOLDER = "folder";
337
338 private SearchQueryParameters() {}
339 }
340
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800341 // We define a "folder" as anything that contains a list of conversations.
342 public static final String FOLDER_LIST_TYPE =
343 "vnd.android.cursor.dir/vnd.com.android.mail.folder";
344 public static final String FOLDER_TYPE =
Mindy Pereira750cc732011-12-21 13:32:29 -0800345 "vnd.android.cursor.item/vnd.com.android.mail.folder";
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800346
347 public static final String[] FOLDERS_PROJECTION = {
348 BaseColumns._ID,
Mindy Pereira6349a042012-01-04 11:25:01 -0800349 FolderColumns.URI,
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800350 FolderColumns.NAME,
Mindy Pereira750cc732011-12-21 13:32:29 -0800351 FolderColumns.HAS_CHILDREN,
Mindy Pereira0973b202011-12-21 15:48:12 -0800352 FolderColumns.CAPABILITIES,
Mindy Pereira0973b202011-12-21 15:48:12 -0800353 FolderColumns.SYNC_WINDOW,
Mindy Pereira750cc732011-12-21 13:32:29 -0800354 FolderColumns.CONVERSATION_LIST_URI,
Mindy Pereirabd8f51c2012-01-06 13:41:48 -0800355 FolderColumns.CHILD_FOLDERS_LIST_URI,
356 FolderColumns.UNREAD_COUNT,
Marc Blankc8a99422012-01-19 14:27:47 -0800357 FolderColumns.TOTAL_COUNT,
Mindy Pereira77528642012-02-17 15:51:10 -0800358 FolderColumns.REFRESH_URI,
Marc Blank9ace18a2012-02-21 16:34:07 -0800359 FolderColumns.SYNC_STATUS,
Mindy Pereira78664722012-03-05 13:53:07 -0800360 FolderColumns.LAST_SYNC_RESULT,
361 FolderColumns.TYPE,
Mindy Pereira9275a062012-03-08 15:12:14 -0800362 FolderColumns.ICON_RES_ID,
363 FolderColumns.BG_COLOR,
Marc Blank48a4aed2012-03-10 14:07:00 -0800364 FolderColumns.FG_COLOR,
365 FolderColumns.LOAD_MORE_URI
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800366 };
367
Mindy Pereira818143e2012-01-11 13:59:49 -0800368 public static final int FOLDER_ID_COLUMN = 0;
369 public static final int FOLDER_URI_COLUMN = 1;
370 public static final int FOLDER_NAME_COLUMN = 2;
371 public static final int FOLDER_HAS_CHILDREN_COLUMN = 3;
372 public static final int FOLDER_CAPABILITIES_COLUMN = 4;
Mindy Pereira621b4bd2012-02-23 13:48:50 -0800373 public static final int FOLDER_SYNC_WINDOW_COLUMN = 5;
374 public static final int FOLDER_CONVERSATION_LIST_URI_COLUMN = 6;
375 public static final int FOLDER_CHILD_FOLDERS_LIST_COLUMN = 7;
376 public static final int FOLDER_UNREAD_COUNT_COLUMN = 8;
377 public static final int FOLDER_TOTAL_COUNT_COLUMN = 9;
378 public static final int FOLDER_REFRESH_URI_COLUMN = 10;
379 public static final int FOLDER_SYNC_STATUS_COLUMN = 11;
380 public static final int FOLDER_LAST_SYNC_RESULT_COLUMN = 12;
Mindy Pereira78664722012-03-05 13:53:07 -0800381 public static final int FOLDER_TYPE_COLUMN = 13;
382 public static final int FOLDER_ICON_RES_ID_COLUMN = 14;
Mindy Pereira9275a062012-03-08 15:12:14 -0800383 public static final int FOLDER_BG_COLOR_COLUMN = 15;
384 public static final int FOLDER_FG_COLOR_COLUMN = 16;
Marc Blank48a4aed2012-03-10 14:07:00 -0800385 public static final int FOLDER_LOAD_MORE_URI_COLUMN = 17;
Mindy Pereira78664722012-03-05 13:53:07 -0800386
387 public static final class FolderType {
388 public static final int DEFAULT = 0;
389 public static final int INBOX = 1;
390 public static final int DRAFT = 2;
391 public static final int OUTBOX = 3;
392 public static final int SENT = 4;
393 public static final int TRASH = 5;
394 public static final int SPAM = 6;
395 }
Mindy Pereira818143e2012-01-11 13:59:49 -0800396
Mindy Pereira0973b202011-12-21 15:48:12 -0800397 public static final class FolderCapabilities {
398 public static final int SYNCABLE = 0x0001;
399 public static final int PARENT = 0x0002;
400 public static final int CAN_HOLD_MAIL = 0x0004;
401 public static final int CAN_ACCEPT_MOVED_MESSAGES = 0x0008;
Paul Westbrook334e64a2012-02-23 13:26:35 -0800402 /**
403 * For accounts that support archive, this will indicate that this folder supports
404 * the archive functionality.
405 */
406 public static final int ARCHIVE = 0x0010;
407
408 /**
409 * For accounts that support report spam, this will indicate that this folder supports
410 * the report spam functionality.
411 */
412 public static final int REPORT_SPAM = 0x0020;
413
414 /**
415 * For accounts that support mute, this will indicate if a mute is performed from within
416 * this folder, the action is destructive.
417 */
418 public static final int DESTRUCTIVE_MUTE = 0x0040;
Mindy Pereira0973b202011-12-21 15:48:12 -0800419 }
420
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800421 public static final class FolderColumns {
Mindy Pereira77528642012-02-17 15:51:10 -0800422 public static final String URI = "folderUri";
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800423 /**
424 * This string column contains the human visible name for the folder.
425 */
426 public static final String NAME = "name";
427 /**
Mindy Pereira0973b202011-12-21 15:48:12 -0800428 * This int column represents the capabilities of the folder specified by
429 * FolderCapabilities flags.
430 */
431 public static String CAPABILITIES = "capabilities";
432 /**
Mindy Pereirafc2277e2012-01-11 10:23:44 -0800433 * This int column represents whether or not this folder has any
Mindy Pereira750cc732011-12-21 13:32:29 -0800434 * child folders.
435 */
436 public static String HAS_CHILDREN = "hasChildren";
437 /**
Mindy Pereira0973b202011-12-21 15:48:12 -0800438 * This int column represents how large the sync window is.
439 */
440 public static String SYNC_WINDOW = "syncWindow";
441 /**
Mindy Pereira750cc732011-12-21 13:32:29 -0800442 * This string column contains the content provider uri to return the
443 * list of conversations for this folder.
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800444 */
445 public static final String CONVERSATION_LIST_URI = "conversationListUri";
Mindy Pereira750cc732011-12-21 13:32:29 -0800446 /**
447 * This string column contains the content provider uri to return the
448 * list of child folders of this folder.
449 */
Mindy Pereira77528642012-02-17 15:51:10 -0800450 public static final String CHILD_FOLDERS_LIST_URI = "childFoldersListUri";
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800451
Mindy Pereira77528642012-02-17 15:51:10 -0800452 public static final String UNREAD_COUNT = "unreadCount";
Mindy Pereirabd8f51c2012-01-06 13:41:48 -0800453
Mindy Pereira77528642012-02-17 15:51:10 -0800454 public static final String TOTAL_COUNT = "totalCount";
Mindy Pereira9c002102012-02-17 14:45:58 -0800455 /**
456 * This string column contains the content provider uri to force a
457 * refresh of this folder.
458 */
Mindy Pereira77528642012-02-17 15:51:10 -0800459 public static final String REFRESH_URI = "refreshUri";
460 /**
Marc Blank9ace18a2012-02-21 16:34:07 -0800461 * This int column contains current sync status of the folder; some combination of the
462 * SyncStatus bits defined above
Mindy Pereira77528642012-02-17 15:51:10 -0800463 */
Marc Blank9ace18a2012-02-21 16:34:07 -0800464 public static final String SYNC_STATUS = "syncStatus";
465 /**
466 * This int column contains the sync status of the last sync attempt; one of the
467 * LastSyncStatus values defined above
468 */
469 public static final String LAST_SYNC_RESULT = "lastSyncResult";
Mindy Pereira78664722012-03-05 13:53:07 -0800470 /**
471 * This long column contains the icon res id for this folder, or 0 if there is none.
472 */
473 public static final String ICON_RES_ID = "iconResId";
474 /**
475 * This int column contains the type of the folder. Zero is default.
476 */
477 public static final String TYPE = "type";
Mindy Pereira9275a062012-03-08 15:12:14 -0800478 /**
479 * String representing the integer background color associated with this
480 * folder, or null.
481 */
482 public static final String BG_COLOR = "bgColor";
483 /**
484 * String representing the integer of the foreground color associated
485 * with this folder, or null.
486 */
487 public static final String FG_COLOR = "fgColor";
Marc Blank48a4aed2012-03-10 14:07:00 -0800488 /**
489 * String with the content provider Uri used to request more items in the folder, or null.
490 */
491 public static final String LOAD_MORE_URI = "loadMoreUri";
Vikram Aggarwalff7d02a2012-01-11 16:37:45 -0800492 public FolderColumns() {}
Mindy Pereira6f92de62011-12-19 11:31:48 -0800493 }
494
Mindy Pereiraa1406072011-12-22 10:54:06 -0800495 // We define a "folder" as anything that contains a list of conversations.
496 public static final String CONVERSATION_LIST_TYPE =
497 "vnd.android.cursor.dir/vnd.com.android.mail.conversation";
498 public static final String CONVERSATION_TYPE =
499 "vnd.android.cursor.item/vnd.com.android.mail.conversation";
500
Mindy Pereira9cdc4062012-02-02 14:18:08 -0800501
Mindy Pereiraa1406072011-12-22 10:54:06 -0800502 public static final String[] CONVERSATION_PROJECTION = {
503 BaseColumns._ID,
Mindy Pereira6349a042012-01-04 11:25:01 -0800504 ConversationColumns.URI,
Mindy Pereiraf9573c52011-12-22 14:02:49 -0800505 ConversationColumns.MESSAGE_LIST_URI,
Mindy Pereiraa1406072011-12-22 10:54:06 -0800506 ConversationColumns.SUBJECT,
Mindy Pereiraf9573c52011-12-22 14:02:49 -0800507 ConversationColumns.SNIPPET,
508 ConversationColumns.SENDER_INFO,
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800509 ConversationColumns.DATE_RECEIVED_MS,
Mindy Pereira4db59c52012-01-12 09:45:13 -0800510 ConversationColumns.HAS_ATTACHMENTS,
511 ConversationColumns.NUM_MESSAGES,
512 ConversationColumns.NUM_DRAFTS,
513 ConversationColumns.SENDING_STATE,
Marc Blankc8a99422012-01-19 14:27:47 -0800514 ConversationColumns.PRIORITY,
515 ConversationColumns.READ,
Mindy Pereira36b6c8b2012-02-03 14:16:07 -0800516 ConversationColumns.STARRED,
Mindy Pereiracc8211d2012-03-12 10:35:37 -0700517 ConversationColumns.FOLDER_LIST,
518 ConversationColumns.RAW_FOLDERS
Mindy Pereiraa1406072011-12-22 10:54:06 -0800519 };
520
Mindy Pereirafdd984b2011-12-29 09:43:45 -0800521 // These column indexes only work when the caller uses the
522 // default CONVERSATION_PROJECTION defined above.
Mindy Pereirafa7ef6e2011-12-29 14:18:15 -0800523 public static final int CONVERSATION_ID_COLUMN = 0;
Mindy Pereira3263fa92012-01-04 10:15:32 -0800524 public static final int CONVERSATION_URI_COLUMN = 1;
525 public static final int CONVERSATION_MESSAGE_LIST_URI_COLUMN = 2;
526 public static final int CONVERSATION_SUBJECT_COLUMN = 3;
527 public static final int CONVERSATION_SNIPPET_COLUMN = 4;
528 public static final int CONVERSATION_SENDER_INFO_COLUMN = 5;
529 public static final int CONVERSATION_DATE_RECEIVED_MS_COLUMN = 6;
530 public static final int CONVERSATION_HAS_ATTACHMENTS_COLUMN = 7;
Mindy Pereira4db59c52012-01-12 09:45:13 -0800531 public static final int CONVERSATION_NUM_MESSAGES_COLUMN = 8;
532 public static final int CONVERSATION_NUM_DRAFTS_COLUMN = 9;
533 public static final int CONVERSATION_SENDING_STATE_COLUMN = 10;
534 public static final int CONVERSATION_PRIORITY_COLUMN = 11;
Marc Blankc8a99422012-01-19 14:27:47 -0800535 public static final int CONVERSATION_READ_COLUMN = 12;
536 public static final int CONVERSATION_STARRED_COLUMN = 13;
Mindy Pereira36b6c8b2012-02-03 14:16:07 -0800537 public static final int CONVERSATION_FOLDER_LIST_COLUMN = 14;
Mindy Pereiracc8211d2012-03-12 10:35:37 -0700538 public static final int CONVERSATION_RAW_FOLDERS_COLUMN = 15;
Mindy Pereira4db59c52012-01-12 09:45:13 -0800539
540 public static final class ConversationSendingState {
Mindy Pereiraa4571372012-01-12 14:04:21 -0800541 public static final int OTHER = 0;
542 public static final int SENDING = 1;
543 public static final int SENT = 2;
Mindy Pereira4db59c52012-01-12 09:45:13 -0800544 public static final int SEND_ERROR = -1;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800545 }
Mindy Pereira4db59c52012-01-12 09:45:13 -0800546
547 public static final class ConversationPriority {
548 public static final int LOW = 0;
549 public static final int HIGH = 1;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800550 }
Mindy Pereirafa7ef6e2011-12-29 14:18:15 -0800551
Marc Blankc8a99422012-01-19 14:27:47 -0800552 public static final class ConversationFlags {
553 public static final int READ = 1<<0;
554 public static final int STARRED = 1<<1;
555 public static final int REPLIED = 1<<2;
556 public static final int FORWARDED = 1<<3;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800557 }
Marc Blankc8a99422012-01-19 14:27:47 -0800558
Mindy Pereiraa1406072011-12-22 10:54:06 -0800559 public static final class ConversationColumns {
Mindy Pereira6349a042012-01-04 11:25:01 -0800560 public static final String URI = "conversationUri";
Mindy Pereiraa1406072011-12-22 10:54:06 -0800561 /**
Mindy Pereiraa1406072011-12-22 10:54:06 -0800562 * This string column contains the content provider uri to return the
563 * list of messages for this conversation.
564 */
565 public static final String MESSAGE_LIST_URI = "messageListUri";
Mindy Pereira27a0cf02011-12-22 13:16:32 -0800566 /**
567 * This string column contains the subject string for a conversation.
568 */
569 public static final String SUBJECT = "subject";
570 /**
571 * This string column contains the snippet string for a conversation.
572 */
573 public static final String SNIPPET = "snippet";
574 /**
575 * This string column contains the sender info string for a
576 * conversation.
577 */
578 public static final String SENDER_INFO = "senderInfo";
579 /**
580 * This long column contains the time in ms of the latest update to a
581 * conversation.
582 */
583 public static final String DATE_RECEIVED_MS = "dateReceivedMs";
584
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800585 /**
586 * This boolean column contains whether any messages in this conversation
587 * have attachments.
588 */
589 public static final String HAS_ATTACHMENTS = "hasAttachments";
590
Mindy Pereira4db59c52012-01-12 09:45:13 -0800591 /**
592 * This int column contains the number of messages in this conversation.
593 * For unthreaded, this will always be 1.
594 */
595 public static String NUM_MESSAGES = "numMessages";
596
597 /**
598 * This int column contains the number of drafts associated with this
599 * conversation.
600 */
601 public static String NUM_DRAFTS = "numDrafts";
602
603 /**
604 * This int column contains the state of drafts and replies associated
605 * with this conversation. Use ConversationSendingState to interpret
606 * this field.
607 */
608 public static String SENDING_STATE = "sendingState";
609
610 /**
611 * This int column contains the priority of this conversation. Use
612 * ConversationPriority to interpret this field.
613 */
614 public static String PRIORITY = "priority";
615
Marc Blankc8a99422012-01-19 14:27:47 -0800616 /**
617 * This boolean column indicates whether the conversation has been read
618 */
619 public static String READ = "read";
620
621 /**
622 * This boolean column indicates whether the conversation has been read
623 */
624 public static String STARRED = "starred";
625
Mindy Pereira36b6c8b2012-02-03 14:16:07 -0800626 /**
Mindy Pereiracc8211d2012-03-12 10:35:37 -0700627 * This string column contains a csv of all folder uris associated with this
Mindy Pereira36b6c8b2012-02-03 14:16:07 -0800628 * conversation
629 */
630 public static final String FOLDER_LIST = "folderList";
631
Mindy Pereiracc8211d2012-03-12 10:35:37 -0700632 /**
633 * This string column contains a serialized list of all folders
Mindy Pereirab5080d52012-03-09 11:26:44 -0800634 * separated by a Folder.FOLDER_SEPARATOR that are associated with this
635 * conversation. The folders should be only those that the provider
636 * wants to have displayed.
Mindy Pereiracc8211d2012-03-12 10:35:37 -0700637 */
Mindy Pereira183718b2012-03-12 11:00:14 -0700638 public static final String RAW_FOLDERS = "rawFolders";
Paul Westbrook334e64a2012-02-23 13:26:35 -0800639 private ConversationColumns() {
Andy Huang732600e2012-01-10 17:47:17 -0800640 }
Mindy Pereiraa1406072011-12-22 10:54:06 -0800641 }
642
Mindy Pereira6f92de62011-12-19 11:31:48 -0800643 /**
Paul Westbrook334e64a2012-02-23 13:26:35 -0800644 * List of operations that can can be performed on a conversation. These operations are applied
645 * with {@link ContentProvider#update(Uri, ContentValues, String, String[])}
646 * where the conversation uri is specified, and the ContentValues specifies the operation to
647 * be performed.
648 * <p/>
649 * The operation to be performed is specified in the ContentValues by
650 * the {@link ConversationOperations#OPERATION_KEY}
651 * <p/>
652 * Note not all UI providers will support these operations. {@link AccountCapabilities} can
653 * be used to determine which operations are supported.
Mindy Pereira6f92de62011-12-19 11:31:48 -0800654 */
Paul Westbrook334e64a2012-02-23 13:26:35 -0800655 public static final class ConversationOperations {
656 /**
657 * ContentValues key used to specify the operation to be performed
658 */
659 public static final String OPERATION_KEY = "operation";
660
661 /**
662 * Archive operation
663 */
664 public static final String ARCHIVE = "archive";
665
666 /**
667 * Mute operation
668 */
669 public static final String MUTE = "mute";
670
671 /**
672 * Report spam operation
673 */
674 public static final String REPORT_SPAM = "report_spam";
675
676 private ConversationOperations() {
677 }
678 }
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800679
680 public static final class DraftType {
Andy Huang97c25be2012-01-12 15:12:09 -0800681 public static final int NOT_A_DRAFT = 0;
682 public static final int COMPOSE = 1;
683 public static final int REPLY = 2;
684 public static final int REPLY_ALL = 3;
685 public static final int FORWARD = 4;
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800686
687 private DraftType() {}
Mindy Pereira6f92de62011-12-19 11:31:48 -0800688 }
689
Mindy Pereiraa1406072011-12-22 10:54:06 -0800690 public static final String[] MESSAGE_PROJECTION = {
691 BaseColumns._ID,
Mindy Pereira326c6602012-01-04 15:32:42 -0800692 MessageColumns.SERVER_ID,
Mindy Pereiraa1406072011-12-22 10:54:06 -0800693 MessageColumns.URI,
Mindy Pereiraa1406072011-12-22 10:54:06 -0800694 MessageColumns.CONVERSATION_ID,
695 MessageColumns.SUBJECT,
696 MessageColumns.SNIPPET,
697 MessageColumns.FROM,
698 MessageColumns.TO,
699 MessageColumns.CC,
700 MessageColumns.BCC,
701 MessageColumns.REPLY_TO,
702 MessageColumns.DATE_RECEIVED_MS,
703 MessageColumns.BODY_HTML,
704 MessageColumns.BODY_TEXT,
705 MessageColumns.EMBEDS_EXTERNAL_RESOURCES,
706 MessageColumns.REF_MESSAGE_ID,
707 MessageColumns.DRAFT_TYPE,
Mindy Pereira3ce64e72012-01-13 14:29:45 -0800708 MessageColumns.APPEND_REF_MESSAGE_CONTENT,
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800709 MessageColumns.HAS_ATTACHMENTS,
Mindy Pereira326c6602012-01-04 15:32:42 -0800710 MessageColumns.ATTACHMENT_LIST_URI,
Mindy Pereiraf944e962012-01-17 11:43:36 -0800711 MessageColumns.MESSAGE_FLAGS,
Mindy Pereira7ed1c112012-01-18 10:59:25 -0800712 MessageColumns.JOINED_ATTACHMENT_INFOS,
713 MessageColumns.SAVE_MESSAGE_URI,
Paul Westbrook104f7292012-02-28 16:07:07 -0800714 MessageColumns.SEND_MESSAGE_URI,
715 MessageColumns.ALWAYS_SHOW_IMAGES
Mindy Pereiraa1406072011-12-22 10:54:06 -0800716 };
717
Mindy Pereiraf944e962012-01-17 11:43:36 -0800718 /** Separates attachment info parts in strings in a message. */
719 public static final String MESSAGE_ATTACHMENT_INFO_SEPARATOR = "\n";
Mindy Pereiraa1406072011-12-22 10:54:06 -0800720 public static final String MESSAGE_LIST_TYPE =
721 "vnd.android.cursor.dir/vnd.com.android.mail.message";
722 public static final String MESSAGE_TYPE =
723 "vnd.android.cursor.item/vnd.com.android.mail.message";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800724
Mindy Pereira6349a042012-01-04 11:25:01 -0800725 public static final int MESSAGE_ID_COLUMN = 0;
Mindy Pereira326c6602012-01-04 15:32:42 -0800726 public static final int MESSAGE_SERVER_ID_COLUMN = 1;
727 public static final int MESSAGE_URI_COLUMN = 2;
728 public static final int MESSAGE_CONVERSATION_ID_COLUMN = 3;
729 public static final int MESSAGE_SUBJECT_COLUMN = 4;
730 public static final int MESSAGE_SNIPPET_COLUMN = 5;
731 public static final int MESSAGE_FROM_COLUMN = 6;
732 public static final int MESSAGE_TO_COLUMN = 7;
733 public static final int MESSAGE_CC_COLUMN = 8;
734 public static final int MESSAGE_BCC_COLUMN = 9;
735 public static final int MESSAGE_REPLY_TO_COLUMN = 10;
736 public static final int MESSAGE_DATE_RECEIVED_MS_COLUMN = 11;
Mindy Pereira16668162012-01-11 16:11:19 -0800737 public static final int MESSAGE_BODY_HTML_COLUMN = 12;
738 public static final int MESSAGE_BODY_TEXT_COLUMN = 13;
Mindy Pereira326c6602012-01-04 15:32:42 -0800739 public static final int MESSAGE_EMBEDS_EXTERNAL_RESOURCES_COLUMN = 14;
740 public static final int MESSAGE_REF_MESSAGE_ID_COLUMN = 15;
741 public static final int MESSAGE_DRAFT_TYPE_COLUMN = 16;
Mindy Pereira3ce64e72012-01-13 14:29:45 -0800742 public static final int MESSAGE_APPEND_REF_MESSAGE_CONTENT_COLUMN = 17;
743 public static final int MESSAGE_HAS_ATTACHMENTS_COLUMN = 18;
744 public static final int MESSAGE_ATTACHMENT_LIST_URI_COLUMN = 19;
745 public static final int MESSAGE_FLAGS_COLUMN = 20;
Mindy Pereiraf944e962012-01-17 11:43:36 -0800746 public static final int MESSAGE_JOINED_ATTACHMENT_INFOS_COLUMN = 21;
Mindy Pereira7ed1c112012-01-18 10:59:25 -0800747 public static final int MESSAGE_SAVE_URI_COLUMN = 22;
748 public static final int MESSAGE_SEND_URI_COLUMN = 23;
Paul Westbrook104f7292012-02-28 16:07:07 -0800749 public static final int ALWAYS_SHOW_IMAGES_COLUMN = 24;
Mindy Pereira6349a042012-01-04 11:25:01 -0800750
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800751 public static final class MessageFlags {
Andy Huangdb977472012-01-11 19:53:25 -0800752 public static final int STARRED = 1 << 0;
753 public static final int UNREAD = 1 << 1;
754 public static final int REPLIED = 1 << 2;
755 public static final int FORWARDED = 1 << 3;
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800756 }
757
Mindy Pereira6f92de62011-12-19 11:31:48 -0800758 public static final class MessageColumns {
Andy Huangdb977472012-01-11 19:53:25 -0800759 /**
760 * This string column contains a content provider URI that points to this single message.
761 */
Mindy Pereira6349a042012-01-04 11:25:01 -0800762 public static final String URI = "messageUri";
Andy Huangdb977472012-01-11 19:53:25 -0800763 /**
764 * This string column contains a server-assigned ID for this message.
765 */
766 public static final String SERVER_ID = "serverMessageId";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800767 public static final String CONVERSATION_ID = "conversationId";
Andy Huangdb977472012-01-11 19:53:25 -0800768 /**
769 * This string column contains the subject of a message.
770 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800771 public static final String SUBJECT = "subject";
Andy Huangdb977472012-01-11 19:53:25 -0800772 /**
773 * This string column contains a snippet of the message body.
774 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800775 public static final String SNIPPET = "snippet";
Andy Huangdb977472012-01-11 19:53:25 -0800776 /**
777 * This string column contains the single email address (and optionally name) of the sender.
778 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800779 public static final String FROM = "fromAddress";
Andy Huangdb977472012-01-11 19:53:25 -0800780 /**
781 * This string column contains a comma-delimited list of "To:" recipient email addresses.
782 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800783 public static final String TO = "toAddresses";
Andy Huangdb977472012-01-11 19:53:25 -0800784 /**
785 * This string column contains a comma-delimited list of "CC:" recipient email addresses.
786 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800787 public static final String CC = "ccAddresses";
Andy Huangdb977472012-01-11 19:53:25 -0800788 /**
789 * This string column contains a comma-delimited list of "BCC:" recipient email addresses.
790 * This value will be null for incoming messages.
791 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800792 public static final String BCC = "bccAddresses";
Andy Huangdb977472012-01-11 19:53:25 -0800793 /**
794 * This string column contains the single email address (and optionally name) of the
795 * sender's reply-to address.
796 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800797 public static final String REPLY_TO = "replyToAddress";
Andy Huangdb977472012-01-11 19:53:25 -0800798 /**
799 * This long column contains the timestamp (in millis) of receipt of the message.
800 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800801 public static final String DATE_RECEIVED_MS = "dateReceivedMs";
Andy Huangdb977472012-01-11 19:53:25 -0800802 /**
803 * This string column contains the HTML form of the message body, if available. If not,
804 * a provider must populate BODY_TEXT.
805 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800806 public static final String BODY_HTML = "bodyHtml";
Andy Huangdb977472012-01-11 19:53:25 -0800807 /**
808 * This string column contains the plaintext form of the message body, if HTML is not
809 * otherwise available. If HTML is available, this value should be left empty (null).
810 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800811 public static final String BODY_TEXT = "bodyText";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800812 public static final String EMBEDS_EXTERNAL_RESOURCES = "bodyEmbedsExternalResources";
Mindy Pereira3ce64e72012-01-13 14:29:45 -0800813 /**
814 * This string column contains an opaque string used by the sendMessage api.
815 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800816 public static final String REF_MESSAGE_ID = "refMessageId";
Andy Huangdb977472012-01-11 19:53:25 -0800817 /**
Andy Huang97c25be2012-01-12 15:12:09 -0800818 * This integer column contains the type of this draft, or zero (0) if this message is not a
819 * draft. See {@link DraftType} for possible values.
Andy Huangdb977472012-01-11 19:53:25 -0800820 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800821 public static final String DRAFT_TYPE = "draftType";
Andy Huangdb977472012-01-11 19:53:25 -0800822 /**
823 * This boolean column indicates whether an outgoing message should trigger special quoted
824 * text processing upon send. The value should default to zero (0) for protocols that do
825 * not support or require this flag, and for all incoming messages.
826 */
Mindy Pereira3ce64e72012-01-13 14:29:45 -0800827 public static final String APPEND_REF_MESSAGE_CONTENT = "appendRefMessageContent";
Andy Huangdb977472012-01-11 19:53:25 -0800828 /**
829 * This boolean column indicates whether a message has attachments. The list of attachments
830 * can be retrieved using the URI in {@link MessageColumns#ATTACHMENT_LIST_URI}.
831 */
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800832 public static final String HAS_ATTACHMENTS = "hasAttachments";
Andy Huangdb977472012-01-11 19:53:25 -0800833 /**
Mindy Pereira7ed1c112012-01-18 10:59:25 -0800834 * This string column contains the content provider URI for the list of
835 * attachments associated with this message.
Andy Huangdb977472012-01-11 19:53:25 -0800836 */
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800837 public static final String ATTACHMENT_LIST_URI = "attachmentListUri";
Andy Huangdb977472012-01-11 19:53:25 -0800838 /**
839 * This long column is a bit field of flags defined in {@link MessageFlags}.
840 */
Andy Huang732600e2012-01-10 17:47:17 -0800841 public static final String MESSAGE_FLAGS = "messageFlags";
Mindy Pereiraf944e962012-01-17 11:43:36 -0800842 /**
843 * This string column contains a specially formatted string representing all
844 * attachments that we added to a message that is being sent or saved.
845 */
Mindy Pereira84554ec2012-01-17 14:44:44 -0800846 public static final String JOINED_ATTACHMENT_INFOS = "joinedAttachmentInfos";
Mindy Pereira7ed1c112012-01-18 10:59:25 -0800847 /**
848 * This string column contains the content provider URI for saving this
849 * message.
850 */
851 public static final String SAVE_MESSAGE_URI = "saveMessageUri";
852 /**
853 * This string column contains content provider URI for sending this
854 * message.
855 */
856 public static final String SEND_MESSAGE_URI = "sendMessageUri";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800857
Paul Westbrook104f7292012-02-28 16:07:07 -0800858 /**
859 * This integer column represents whether the user has specified that images should always
860 * be shown. The value of "1" indicates that the user has specified that images should be
861 * shown, while the value of "0" indicates that the user should be prompted before loading
862 * any external images.
863 */
864 public static final String ALWAYS_SHOW_IMAGES = "alwaysShowImages";
865
Mindy Pereira6f92de62011-12-19 11:31:48 -0800866 private MessageColumns() {}
867 }
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800868
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800869 public static final String ATTACHMENT_LIST_TYPE =
870 "vnd.android.cursor.dir/vnd.com.android.mail.attachment";
871 public static final String ATTACHMENT_TYPE =
872 "vnd.android.cursor.item/vnd.com.android.mail.attachment";
873
874 public static final String[] ATTACHMENT_PROJECTION = {
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800875 AttachmentColumns.NAME,
876 AttachmentColumns.SIZE,
Mindy Pereira7a07fb42012-01-11 10:32:48 -0800877 AttachmentColumns.URI,
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800878 AttachmentColumns.CONTENT_TYPE,
Andy Huange0b83b82012-03-06 19:57:04 -0800879 AttachmentColumns.STATE,
880 AttachmentColumns.DESTINATION,
881 AttachmentColumns.DOWNLOADED_SIZE,
882 AttachmentColumns.CONTENT_URI,
883 AttachmentColumns.THUMBNAIL_URI,
884 AttachmentColumns.PREVIEW_INTENT
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800885 };
Mindy Pereira82cc5662012-01-09 17:29:30 -0800886 private static final String EMAIL_SEPARATOR_PATTERN = "\n";
Andy Huang109369d2012-03-07 20:05:31 -0800887 public static final int ATTACHMENT_NAME_COLUMN = 0;
888 public static final int ATTACHMENT_SIZE_COLUMN = 1;
889 public static final int ATTACHMENT_URI_COLUMN = 2;
890 public static final int ATTACHMENT_CONTENT_TYPE_COLUMN = 3;
891 public static final int ATTACHMENT_STATE_COLUMN = 4;
892 public static final int ATTACHMENT_DESTINATION_COLUMN = 5;
893 public static final int ATTACHMENT_DOWNLOADED_SIZE_COLUMN = 6;
894 public static final int ATTACHMENT_CONTENT_URI_COLUMN = 7;
895 public static final int ATTACHMENT_THUMBNAIL_URI_COLUMN = 8;
896 public static final int ATTACHMENT_PREVIEW_INTENT_COLUMN = 9;
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800897
Andy Huange0b83b82012-03-06 19:57:04 -0800898 /**
899 * Valid states for the {@link AttachmentColumns#STATE} column.
900 *
901 */
902 public static final class AttachmentState {
903 /**
904 * The full attachment is not present on device. When used as a command,
905 * setting this state will tell the provider to cancel a download in
906 * progress.
907 * <p>
908 * Valid next states: {@link #DOWNLOADING}
909 */
910 public static final int NOT_SAVED = 0;
911 /**
912 * The most recent attachment download attempt failed. The current UI
913 * design does not require providers to persist this state, but
914 * providers must return this state at least once after a download
915 * failure occurs. This state may not be used as a command.
916 * <p>
917 * Valid next states: {@link #DOWNLOADING}
918 */
919 public static final int FAILED = 1;
920 /**
921 * The attachment is currently being downloaded by the provider.
922 * {@link AttachmentColumns#DOWNLOADED_SIZE} should reflect the current
923 * download progress while in this state. When used as a command,
924 * setting this state will tell the provider to initiate a download to
925 * the accompanying destination in {@link AttachmentColumns#DESTINATION}
926 * .
927 * <p>
928 * Valid next states: {@link #NOT_SAVED}, {@link #FAILED},
929 * {@link #SAVED}
930 */
931 public static final int DOWNLOADING = 2;
932 /**
933 * The attachment was successfully downloaded to the destination in
934 * {@link AttachmentColumns#DESTINATION}. If a provider later detects
935 * that a download is missing, it should reset the state to
936 * {@link #NOT_SAVED}. This state may not be used as a command on its
937 * own. To move a file from cache to external, update
938 * {@link AttachmentColumns#DESTINATION}.
939 * <p>
940 * Valid next states: {@link #NOT_SAVED}
941 */
942 public static final int SAVED = 3;
943
944 private AttachmentState() {}
945 }
946
947 public static final class AttachmentDestination {
948
949 /**
950 * The attachment will be or is already saved to the app-private cache partition.
951 */
952 public static final int CACHE = 0;
953 /**
954 * The attachment will be or is already saved to external shared device storage.
955 */
956 public static final int EXTERNAL = 1;
957
958 private AttachmentDestination() {}
959 }
960
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800961 public static final class AttachmentColumns {
Andy Huange0b83b82012-03-06 19:57:04 -0800962 /**
963 * This string column is the attachment's file name, intended for display in UI. It is not
964 * the full path of the file.
965 */
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800966 public static final String NAME = "name";
Andy Huange0b83b82012-03-06 19:57:04 -0800967 /**
968 * This integer column is the file size of the attachment, in bytes.
969 */
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800970 public static final String SIZE = "size";
Andy Huange0b83b82012-03-06 19:57:04 -0800971 /**
972 * This column is a {@link Uri} that can be queried to monitor download state and progress
973 * for this individual attachment (resulting cursor has one single row for this attachment).
974 */
Mindy Pereira7a07fb42012-01-11 10:32:48 -0800975 public static final String URI = "uri";
Andy Huange0b83b82012-03-06 19:57:04 -0800976 /**
977 * This string column is the MIME type of the attachment.
978 */
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800979 public static final String CONTENT_TYPE = "contentType";
Andy Huange0b83b82012-03-06 19:57:04 -0800980 /**
981 * This integer column is the current downloading state of the
982 * attachment as defined in {@link AttachmentState}.
983 * <p>
984 * Providers must accept updates to {@link URI} with new values of
985 * this column to initiate or cancel downloads.
986 */
987 public static final String STATE = "state";
988 /**
989 * This integer column is the file destination for the current download
990 * in progress (when {@link #STATE} is
991 * {@link AttachmentState#DOWNLOADING}) or the resulting downloaded file
992 * ( when {@link #STATE} is {@link AttachmentState#SAVED}), as defined
993 * in {@link AttachmentDestination}. This value is undefined in any
994 * other state.
995 * <p>
996 * Providers must accept updates to {@link URI} with new values of
997 * this column to move an existing downloaded file.
998 */
999 public static final String DESTINATION = "destination";
1000 /**
1001 * This integer column is the current number of bytes downloaded when
1002 * {@link #STATE} is {@link AttachmentState#DOWNLOADING}. This value is
1003 * undefined in any other state.
1004 */
1005 public static final String DOWNLOADED_SIZE = "downloadedSize";
1006 /**
1007 * This column is a {@link Uri} that points to the downloaded local file
1008 * when {@link #STATE} is {@link AttachmentState#SAVED}. This value is
1009 * undefined in any other state.
1010 */
1011 public static final String CONTENT_URI = "contentUri";
1012 /**
1013 * This column is a {@link Uri} that points to a local thumbnail file
1014 * for the attachment. Providers that do not support downloading
1015 * attachment thumbnails may leave this null.
1016 */
1017 public static final String THUMBNAIL_URI = "thumbnailUri";
1018 /**
1019 * This column is an {@link Intent} to launch a preview activity that
1020 * allows the user to efficiently view an attachment without having to
1021 * first download the entire file. Providers that do not support
1022 * previewing attachments may leave this null. The intent is represented
1023 * as a byte-array blob generated by writing an Intent to a parcel and
1024 * then marshaling that parcel.
1025 */
1026 public static final String PREVIEW_INTENT = "previewIntent";
1027
1028 private AttachmentColumns() {}
Mindy Pereiraf30cc092011-12-29 14:02:40 -08001029 }
Mindy Pereira013194c2012-01-06 15:09:33 -08001030
1031 public static int getMailMaxAttachmentSize(String account) {
1032 // TODO: query the account to see what the max attachment size is?
1033 return 5 * 1024 * 1024;
1034 }
1035
1036 public static String getAttachmentTypeSetting() {
1037 // TODO: query the account to see what kinds of attachments it supports?
1038 return "com.google.android.gm.allowAddAnyAttachment";
1039 }
Mindy Pereira82cc5662012-01-09 17:29:30 -08001040
1041 public static void incrementRecipientsTimesContacted(Context context, String addressString) {
1042 DataUsageStatUpdater statsUpdater = new DataUsageStatUpdater(context);
1043 ArrayList<String> recipients = new ArrayList<String>();
1044 String[] addresses = TextUtils.split(addressString, EMAIL_SEPARATOR_PATTERN);
1045 for (String address : addresses) {
1046 recipients.add(address);
1047 }
1048 statsUpdater.updateWithAddress(recipients);
1049 }
Marc Blankb31ab5a2012-02-01 12:28:29 -08001050
1051 public static final String[] UNDO_PROJECTION = {
1052 ConversationColumns.MESSAGE_LIST_URI
1053 };
1054 public static final int UNDO_MESSAGE_LIST_COLUMN = 0;
Marc Blankdd10bc82012-02-01 19:10:46 -08001055
1056 // Parameter used to indicate the sequence number for an undoable operation
1057 public static final String SEQUENCE_QUERY_PARAMETER = "seq";
Paul Westbrook63eef792012-02-27 14:01:06 -08001058
1059
1060 public static final String[] SETTINGS_PROJECTION = {
1061 SettingsColumns.SIGNATURE,
1062 SettingsColumns.AUTO_ADVANCE,
1063 SettingsColumns.MESSAGE_TEXT_SIZE,
1064 SettingsColumns.SNAP_HEADERS,
1065 SettingsColumns.REPLY_BEHAVIOR,
1066 SettingsColumns.HIDE_CHECKBOXES,
1067 SettingsColumns.CONFIRM_DELETE,
1068 SettingsColumns.CONFIRM_ARCHIVE,
1069 SettingsColumns.CONFIRM_SEND,
Mindy Pereira9783a742012-03-01 09:13:07 -08001070 SettingsColumns.DEFAULT_INBOX
Paul Westbrook63eef792012-02-27 14:01:06 -08001071 };
1072
Mindy Pereira8bd82152012-03-01 10:06:35 -08001073 public static final int SETTINGS_SIGNATURE_COLUMN = 0;
1074 public static final int SETTINGS_AUTO_ADVANCE_COLUMN = 1;
1075 public static final int SETTINGS_MESSAGE_TEXT_SIZE_COLUMN = 2;
1076 public static final int SETTINGS_SNAP_HEADERS_COLUMN = 3;
1077 public static final int SETTINGS_REPLY_BEHAVIOR_COLUMN = 4;
1078 public static final int SETTINGS_HIDE_CHECKBOXES_COLUMN = 5;
1079 public static final int SETTINGS_CONFIRM_DELETE_COLUMN = 6;
1080 public static final int SETTINGS_CONFIRM_ARCHIVE_COLUMN = 7;
1081 public static final int SETTINGS_CONFIRM_SEND_COLUMN = 8;
1082 public static final int SETTINGS_DEFAULT_INBOX_COLUMN = 9;
1083
Paul Westbrook63eef792012-02-27 14:01:06 -08001084 public static final class AutoAdvance {
1085 public static final int UNSET = 0;
1086 public static final int OLDER = 1;
1087 public static final int NEWER = 2;
1088 public static final int LIST = 3;
1089 }
1090
1091 public static final class SnapHeaderValue {
1092 public static final int ALWAYS = 0;
1093 public static final int PORTRAIT_ONLY = 1;
1094 public static final int NEVER = 2;
1095 }
1096
1097 public static final class MessageTextSize {
1098 public static final int TINY = -2;
1099 public static final int SMALL = -1;
1100 public static final int NORMAL = 0;
1101 public static final int LARGE = 1;
1102 public static final int HUGE = 2;
1103 }
1104
1105 public static final class DefaultReplyBehavior {
1106 public static final int REPLY = 0;
1107 public static final int REPLY_ALL = 1;
1108 }
1109
1110 public static final class SettingsColumns {
1111 /**
1112 * String column containing the contents of the signature for this account. If no
1113 * signature has been specified, the value will be null.
1114 */
1115 public static final String SIGNATURE = "signature";
1116
1117 /**
1118 * Integer column containing the user's specified auto-advance policy. This value will be
1119 * one of the values in {@link UIProvider.AutoAdvance}
1120 */
1121 public static final String AUTO_ADVANCE = "auto_advance";
1122
1123 /**
1124 * Integer column containing the user's specified message text size preference. This value
1125 * will be one of the values in {@link UIProvider.MessageTextSize}
1126 */
1127 public static final String MESSAGE_TEXT_SIZE = "message_text_size";
1128
1129 /**
1130 * Integer column contaning the user's specified snap header preference. This value
1131 * will be one of the values in {@link UIProvider.SnapHeaderValue}
1132 */
1133 public static final String SNAP_HEADERS = "snap_headers";
1134
1135 /**
1136 * Integer column containing the user's specified default reply behavior. This value will
1137 * be one of the values in {@link UIProvider.DefaultReplyBehavior}
1138 */
1139 public static final String REPLY_BEHAVIOR = "reply_behavior";
1140
1141 /**
Mindy Pereira8bd82152012-03-01 10:06:35 -08001142 * Integer column containing the user's specified checkbox preference. A
1143 * non zero value means to hide checkboxes.
Paul Westbrook63eef792012-02-27 14:01:06 -08001144 */
1145 public static final String HIDE_CHECKBOXES = "hide_checkboxes";
1146
1147 /**
1148 * Integer column containing the user's specified confirm delete preference value.
Mindy Pereira8bd82152012-03-01 10:06:35 -08001149 * A non zero value indicates that the user has indicated that a confirmation should
Paul Westbrook63eef792012-02-27 14:01:06 -08001150 * be shown when a delete action is performed.
1151 */
1152 public static final String CONFIRM_DELETE = "confirm_delete";
1153
1154 /**
1155 * Integer column containing the user's specified confirm archive preference value.
Mindy Pereira8bd82152012-03-01 10:06:35 -08001156 * A non zero value indicates that the user has indicated that a confirmation should
Paul Westbrook63eef792012-02-27 14:01:06 -08001157 * be shown when an archive action is performed.
1158 */
1159 public static final String CONFIRM_ARCHIVE = "confirm_archive";
1160
1161 /**
1162 * Integer column containing the user's specified confirm send preference value.
Mindy Pereira8bd82152012-03-01 10:06:35 -08001163 * A non zero value indicates that the user has indicated that a confirmation should
Paul Westbrook63eef792012-02-27 14:01:06 -08001164 * be shown when a send action is performed.
1165 */
1166 public static final String CONFIRM_SEND = "confirm_send";
Mindy Pereira9783a742012-03-01 09:13:07 -08001167 /**
1168 * String folder containing the serialized default inbox folder for an account.
1169 */
1170 public static final String DEFAULT_INBOX = "default_inbox";
Paul Westbrook63eef792012-02-27 14:01:06 -08001171 }
Paul Westbrook82ea6da2011-12-15 11:03:51 -08001172}