blob: d8c5290d2fbea8d654407e8060b478455b183057 [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;
Mindy Pereira6f92de62011-12-19 11:31:48 -080023import android.provider.BaseColumns;
Mindy Pereira82cc5662012-01-09 17:29:30 -080024import android.text.TextUtils;
Paul Westbrook334e64a2012-02-23 13:26:35 -080025import android.net.Uri;
Mindy Pereira82cc5662012-01-09 17:29:30 -080026
27import com.android.common.contacts.DataUsageStatUpdater;
Mindy Pereira6f92de62011-12-19 11:31:48 -080028
Paul Westbrook334e64a2012-02-23 13:26:35 -080029import java.lang.String;
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 -080032
33public class UIProvider {
Mindy Pereira82cc5662012-01-09 17:29:30 -080034 public static final String EMAIL_SEPARATOR = "\n";
Mindy Pereira326c6602012-01-04 15:32:42 -080035 public static final long INVALID_CONVERSATION_ID = -1;
36 public static final long INVALID_MESSAGE_ID = -1;
37
Marc Blank9ace18a2012-02-21 16:34:07 -080038 /**
39 * Values for the current state of a Folder/Account; note that it's possible that more than one
40 * sync is in progress
41 */
42 public static final class SyncStatus {
43 // No sync in progress
Paul Westbrookc808fac2012-02-22 16:42:18 -080044 public static final int NO_SYNC = 0;
Marc Blank9ace18a2012-02-21 16:34:07 -080045 // A user-requested sync/refresh is in progress
Paul Westbrookc808fac2012-02-22 16:42:18 -080046 public static final int USER_REFRESH = 1<<0;
Marc Blank9ace18a2012-02-21 16:34:07 -080047 // A user-requested query is in progress
Paul Westbrookc808fac2012-02-22 16:42:18 -080048 public static final int USER_QUERY = 1<<1;
Marc Blank9ace18a2012-02-21 16:34:07 -080049 // A user request for additional results is in progress
Paul Westbrookc808fac2012-02-22 16:42:18 -080050 public static final int USER_MORE_RESULTS = 1<<2;
Marc Blank9ace18a2012-02-21 16:34:07 -080051 // A background sync is in progress
Paul Westbrookc808fac2012-02-22 16:42:18 -080052 public static final int BACKGROUND_SYNC = 1<<3;
Marc Blank9ace18a2012-02-21 16:34:07 -080053 }
54
55 /**
56 * Values for the result of the last attempted sync of a Folder/Account
57 */
58 public static final class LastSyncResult {
59 // The sync completed successfully
60 public static final int SUCCESS = 0;
61 // The sync wasn't completed due to a connection error
62 public static final int CONNECTION_ERROR = 1;
63 // The sync wasn't completed due to an authentication error
64 public static final int AUTH_ERROR = 2;
65 // The sync wasn't completed due to a security error
66 public static final int SECURITY_ERROR = 3;
67 // The sync wasn't completed due to a low memory condition
68 public static final int STORAGE_ERROR = 4;
69 // The sync wasn't completed due to an internal error/exception
70 public static final int INTERNAL_ERROR = 5;
71 }
72
Paul Westbrook82ea6da2011-12-15 11:03:51 -080073 // The actual content provider should define its own authority
Andy Huang30e2c242012-01-06 18:14:30 -080074 public static final String AUTHORITY = "com.android.mail.providers";
Mindy Pereira6f92de62011-12-19 11:31:48 -080075
76 public static final String ACCOUNT_LIST_TYPE =
Paul Westbrook82ea6da2011-12-15 11:03:51 -080077 "vnd.android.cursor.dir/vnd.com.android.mail.account";
Mindy Pereira6f92de62011-12-19 11:31:48 -080078 public static final String ACCOUNT_TYPE =
Paul Westbrook82ea6da2011-12-15 11:03:51 -080079 "vnd.android.cursor.item/vnd.com.android.mail.account";
Mindy Pereira6f92de62011-12-19 11:31:48 -080080
81 public static final String[] ACCOUNTS_PROJECTION = {
82 BaseColumns._ID,
83 AccountColumns.NAME,
84 AccountColumns.PROVIDER_VERSION,
85 AccountColumns.URI,
86 AccountColumns.CAPABILITIES,
87 AccountColumns.FOLDER_LIST_URI,
88 AccountColumns.SEARCH_URI,
89 AccountColumns.ACCOUNT_FROM_ADDRESSES_URI,
Mindy Pereira33fe9082012-01-09 16:24:30 -080090 AccountColumns.SAVE_DRAFT_URI,
Mindy Pereira7ed1c112012-01-18 10:59:25 -080091 AccountColumns.SEND_MAIL_URI,
Mindy Pereira96b5c352012-02-01 11:33:40 -080092 AccountColumns.EXPUNGE_MESSAGE_URI,
Mindy Pereira9600dac2012-02-17 15:59:25 -080093 AccountColumns.UNDO_URI,
Marc Blank9ace18a2012-02-21 16:34:07 -080094 AccountColumns.SETTINGS_INTENT_URI,
Paul Westbrook94e440d2012-02-24 11:03:47 -080095 AccountColumns.SYNC_STATUS,
96 AccountColumns.HELP_INTENT_URI
Mindy Pereira6f92de62011-12-19 11:31:48 -080097 };
98
Mindy Pereira33fe9082012-01-09 16:24:30 -080099 public static final int ACCOUNT_ID_COLUMN = 0;
100 public static final int ACCOUNT_NAME_COLUMN = 1;
101 public static final int ACCOUNT_PROVIDER_VERISON_COLUMN = 2;
102 public static final int ACCOUNT_URI_COLUMN = 3;
103 public static final int ACCOUNT_CAPABILITIES_COLUMN = 4;
104 public static final int ACCOUNT_FOLDER_LIST_URI_COLUMN = 5;
105 public static final int ACCOUNT_SEARCH_URI_COLUMN = 6;
106 public static final int ACCOUNT_FROM_ADDRESSES_URI_COLUMN = 7;
107 public static final int ACCOUNT_SAVE_DRAFT_URI_COLUMN = 8;
108 public static final int ACCOUNT_SEND_MESSAGE_URI_COLUMN = 9;
Mindy Pereira82cc5662012-01-09 17:29:30 -0800109 public static final int ACCOUNT_EXPUNGE_MESSAGE_URI_COLUMN = 10;
Mindy Pereira96b5c352012-02-01 11:33:40 -0800110 public static final int ACCOUNT_UNDO_URI_COLUMN = 11;
Marc Blank9ace18a2012-02-21 16:34:07 -0800111 public static final int ACCOUNT_SETTINGS_INTENT_URI_COLUMN = 12;
112 public static final int ACCOUNT_SYNC_STATUS_COLUMN = 13;
Paul Westbrook94e440d2012-02-24 11:03:47 -0800113 public static final int ACCOUNT_HELP_INTENT_URI_COLUMN = 14;
Mindy Pereira33fe9082012-01-09 16:24:30 -0800114
Mindy Pereira6f92de62011-12-19 11:31:48 -0800115 public static final class AccountCapabilities {
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800116 /**
117 * Whether folders can be synchronized back to the server.
118 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800119 public static final int SYNCABLE_FOLDERS = 0x0001;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800120 /**
121 * Whether the server allows reporting spam back.
122 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800123 public static final int REPORT_SPAM = 0x0002;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800124 /**
125 * Whether the server supports a concept of Archive: removing mail from the Inbox but
126 * keeping it around.
127 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800128 public static final int ARCHIVE = 0x0004;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800129 /**
130 * Whether the server will stop notifying on updates to this thread? This requires
131 * THREADED_CONVERSATIONS to be true, otherwise it should be ignored.
132 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800133 public static final int MUTE = 0x0008;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800134 /**
135 * Whether the server supports searching over all messages. This requires SYNCABLE_FOLDERS
136 * to be true, otherwise it should be ignored.
137 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800138 public static final int SERVER_SEARCH = 0x0010;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800139 /**
140 * Whether the server supports constraining search to a single folder. Requires
141 * SYNCABLE_FOLDERS, otherwise it should be ignored.
142 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800143 public static final int FOLDER_SERVER_SEARCH = 0x0020;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800144 /**
145 * Whether the server sends us sanitized HTML (guaranteed to not contain malicious HTML).
146 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800147 public static final int SANITIZED_HTML = 0x0040;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800148 /**
149 * Whether the server allows synchronization of draft messages. This does NOT require
150 * SYNCABLE_FOLDERS to be set.
151 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800152 public static final int DRAFT_SYNCHRONIZATION = 0x0080;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800153 /**
154 * Does the server allow the user to compose mails (and reply) using addresses other than
155 * their account name? For instance, GMail allows users to set FROM addresses that are
156 * different from account@gmail.com address. For instance, user@gmail.com could have another
157 * FROM: address like user@android.com. If the user has enabled multiple FROM address, he
158 * can compose (and reply) using either address.
159 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800160 public static final int MULTIPLE_FROM_ADDRESSES = 0x0100;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800161 /**
162 * Whether the server allows the original message to be included in the reply by setting a
163 * flag on the reply. If we can avoid including the entire previous message, we save on
164 * bandwidth (replies are shorter).
165 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800166 public static final int SMART_REPLY = 0x0200;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800167 /**
168 * Does this account support searching locally, on the device? This requires the backend
169 * storage to support a mechanism for searching.
170 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800171 public static final int LOCAL_SEARCH = 0x0400;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800172 /**
173 * Whether the server supports a notion of threaded conversations: where replies to messages
174 * are tagged to keep conversations grouped. This could be full threading (each message
175 * lists its parent) or conversation-level threading (each message lists one conversation
176 * which it belongs to)
177 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800178 public static final int THREADED_CONVERSATIONS = 0x0800;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800179 /**
180 * Whether the server supports allowing a conversation to be in multiple folders. (Or allows
181 * multiple labels on a single conversation, since labels and folders are interchangeable
182 * in this application.)
183 */
Mindy Pereira84648892012-02-03 08:29:55 -0800184 public static final int MULTIPLE_FOLDERS_PER_CONV = 0x1000;
Mindy Pereira343ffeb2012-02-22 10:12:14 -0800185 /**
186 * Whether the provider supports undoing operations. If it doesn't, never show the undo bar.
187 */
188 public static final int UNDO = 0x2000;
Paul Westbrook94e440d2012-02-24 11:03:47 -0800189 /**
190 * Whether the account provides help content.
191 */
192 public static final int HELP_CONTENT = 0x4000;
Mindy Pereira6f92de62011-12-19 11:31:48 -0800193 }
194
195 public static final class AccountColumns {
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800196 /**
197 * This string column contains the human visible name for the account.
198 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800199 public static final String NAME = "name";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800200
201 /**
202 * This integer column returns the version of the UI provider schema from which this
203 * account provider will return results.
204 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800205 public static final String PROVIDER_VERSION = "providerVersion";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800206
207 /**
208 * This string column contains the uri to directly access the information for this account.
209 */
Mindy Pereira6349a042012-01-04 11:25:01 -0800210 public static final String URI = "accountUri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800211
212 /**
213 * This integer column contains a bit field of the possible cabibilities that this account
214 * supports.
215 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800216 public static final String CAPABILITIES = "capabilities";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800217
218 /**
Mindy Pereira750cc732011-12-21 13:32:29 -0800219 * This string column contains the content provider uri to return the
220 * list of top level folders for this account.
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800221 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800222 public static final String FOLDER_LIST_URI = "folderListUri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800223
224 /**
225 * This string column contains the content provider uri that can be queried for search
226 * results.
227 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800228 public static final String SEARCH_URI = "searchUri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800229
230 /**
231 * This string column contains the content provider uri that can be queried to access the
232 * from addresses for this account.
233 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800234 public static final String ACCOUNT_FROM_ADDRESSES_URI = "accountFromAddressesUri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800235
236 /**
237 * This string column contains the content provider uri that can be used to save (insert)
Mindy Pereira82cc5662012-01-09 17:29:30 -0800238 * new draft messages for this account. NOTE: This might be better to
239 * be an update operation on the messageUri.
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800240 */
Mindy Pereira33fe9082012-01-09 16:24:30 -0800241 public static final String SAVE_DRAFT_URI = "saveDraftUri";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800242
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800243 /**
244 * This string column contains the content provider uri that can be used to send
245 * a message for this account.
246 * NOTE: This might be better to be an update operation on the messageUri.
247 */
Mindy Pereira7ed1c112012-01-18 10:59:25 -0800248 public static final String SEND_MAIL_URI = "sendMailUri";
Mindy Pereira82cc5662012-01-09 17:29:30 -0800249
250 /**
251 * This string column contains the content provider uri that can be used
252 * to expunge a message from this account. NOTE: This might be better to
253 * be an update operation on the messageUri.
254 */
255 public static final String EXPUNGE_MESSAGE_URI = "expungeMessageUri";
Mindy Pereira96b5c352012-02-01 11:33:40 -0800256
257 /**
258 * This string column contains the content provider uri that can be used
259 * to undo the last committed action.
260 */
Mindy Pereira9600dac2012-02-17 15:59:25 -0800261 public static final String UNDO_URI = "undoUri";
Paul Westbrook2861b6a2012-02-15 15:25:34 -0800262
263 /**
Paul Westbrook9912eee2012-02-22 14:49:03 -0800264 * Uri for EDIT intent that will cause the settings screens for this account type to be
Paul Westbrook2861b6a2012-02-15 15:25:34 -0800265 * shown.
266 * TODO: When we want to support a heterogeneous set of account types, this value may need
267 * to be moved to a global content provider.
268 */
269 public static String SETTINGS_INTENT_URI = "accountSettingsIntentUri";
Marc Blank9ace18a2012-02-21 16:34:07 -0800270
271 /**
Paul Westbrook94e440d2012-02-24 11:03:47 -0800272 * Uri for VIEW intent that will cause the help screens for this account type to be
273 * shown.
274 * TODO: When we want to support a heterogeneous set of account types, this value may need
275 * to be moved to a global content provider.
276 */
277 public static String HELP_INTENT_URI = "helpIntentUri";
278
279 /**
Marc Blank9ace18a2012-02-21 16:34:07 -0800280 * This int column contains the current sync status of the account (the logical AND of the
281 * sync status of folders in this account)
282 */
283 public static final String SYNC_STATUS = "syncStatus";
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800284 }
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800285
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800286 // We define a "folder" as anything that contains a list of conversations.
287 public static final String FOLDER_LIST_TYPE =
288 "vnd.android.cursor.dir/vnd.com.android.mail.folder";
289 public static final String FOLDER_TYPE =
Mindy Pereira750cc732011-12-21 13:32:29 -0800290 "vnd.android.cursor.item/vnd.com.android.mail.folder";
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800291
292 public static final String[] FOLDERS_PROJECTION = {
293 BaseColumns._ID,
Mindy Pereira6349a042012-01-04 11:25:01 -0800294 FolderColumns.URI,
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800295 FolderColumns.NAME,
Mindy Pereira750cc732011-12-21 13:32:29 -0800296 FolderColumns.HAS_CHILDREN,
Mindy Pereira0973b202011-12-21 15:48:12 -0800297 FolderColumns.CAPABILITIES,
Mindy Pereira0973b202011-12-21 15:48:12 -0800298 FolderColumns.SYNC_WINDOW,
Mindy Pereira750cc732011-12-21 13:32:29 -0800299 FolderColumns.CONVERSATION_LIST_URI,
Mindy Pereirabd8f51c2012-01-06 13:41:48 -0800300 FolderColumns.CHILD_FOLDERS_LIST_URI,
301 FolderColumns.UNREAD_COUNT,
Marc Blankc8a99422012-01-19 14:27:47 -0800302 FolderColumns.TOTAL_COUNT,
Mindy Pereira77528642012-02-17 15:51:10 -0800303 FolderColumns.REFRESH_URI,
Marc Blank9ace18a2012-02-21 16:34:07 -0800304 FolderColumns.SYNC_STATUS,
305 FolderColumns.LAST_SYNC_RESULT
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800306 };
307
Mindy Pereira818143e2012-01-11 13:59:49 -0800308 public static final int FOLDER_ID_COLUMN = 0;
309 public static final int FOLDER_URI_COLUMN = 1;
310 public static final int FOLDER_NAME_COLUMN = 2;
311 public static final int FOLDER_HAS_CHILDREN_COLUMN = 3;
312 public static final int FOLDER_CAPABILITIES_COLUMN = 4;
Mindy Pereira621b4bd2012-02-23 13:48:50 -0800313 public static final int FOLDER_SYNC_WINDOW_COLUMN = 5;
314 public static final int FOLDER_CONVERSATION_LIST_URI_COLUMN = 6;
315 public static final int FOLDER_CHILD_FOLDERS_LIST_COLUMN = 7;
316 public static final int FOLDER_UNREAD_COUNT_COLUMN = 8;
317 public static final int FOLDER_TOTAL_COUNT_COLUMN = 9;
318 public static final int FOLDER_REFRESH_URI_COLUMN = 10;
319 public static final int FOLDER_SYNC_STATUS_COLUMN = 11;
320 public static final int FOLDER_LAST_SYNC_RESULT_COLUMN = 12;
Mindy Pereira818143e2012-01-11 13:59:49 -0800321
Mindy Pereira0973b202011-12-21 15:48:12 -0800322 public static final class FolderCapabilities {
323 public static final int SYNCABLE = 0x0001;
324 public static final int PARENT = 0x0002;
325 public static final int CAN_HOLD_MAIL = 0x0004;
326 public static final int CAN_ACCEPT_MOVED_MESSAGES = 0x0008;
Paul Westbrook334e64a2012-02-23 13:26:35 -0800327 /**
328 * For accounts that support archive, this will indicate that this folder supports
329 * the archive functionality.
330 */
331 public static final int ARCHIVE = 0x0010;
332
333 /**
334 * For accounts that support report spam, this will indicate that this folder supports
335 * the report spam functionality.
336 */
337 public static final int REPORT_SPAM = 0x0020;
338
339 /**
340 * For accounts that support mute, this will indicate if a mute is performed from within
341 * this folder, the action is destructive.
342 */
343 public static final int DESTRUCTIVE_MUTE = 0x0040;
Mindy Pereira0973b202011-12-21 15:48:12 -0800344 }
345
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800346 public static final class FolderColumns {
Mindy Pereira77528642012-02-17 15:51:10 -0800347 public static final String URI = "folderUri";
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800348 /**
349 * This string column contains the human visible name for the folder.
350 */
351 public static final String NAME = "name";
352 /**
Mindy Pereira0973b202011-12-21 15:48:12 -0800353 * This int column represents the capabilities of the folder specified by
354 * FolderCapabilities flags.
355 */
356 public static String CAPABILITIES = "capabilities";
357 /**
Mindy Pereirafc2277e2012-01-11 10:23:44 -0800358 * This int column represents whether or not this folder has any
Mindy Pereira750cc732011-12-21 13:32:29 -0800359 * child folders.
360 */
361 public static String HAS_CHILDREN = "hasChildren";
362 /**
Mindy Pereira0973b202011-12-21 15:48:12 -0800363 * This int column represents how large the sync window is.
364 */
365 public static String SYNC_WINDOW = "syncWindow";
366 /**
Mindy Pereira750cc732011-12-21 13:32:29 -0800367 * This string column contains the content provider uri to return the
368 * list of conversations for this folder.
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800369 */
370 public static final String CONVERSATION_LIST_URI = "conversationListUri";
Mindy Pereira750cc732011-12-21 13:32:29 -0800371 /**
372 * This string column contains the content provider uri to return the
373 * list of child folders of this folder.
374 */
Mindy Pereira77528642012-02-17 15:51:10 -0800375 public static final String CHILD_FOLDERS_LIST_URI = "childFoldersListUri";
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800376
Mindy Pereira77528642012-02-17 15:51:10 -0800377 public static final String UNREAD_COUNT = "unreadCount";
Mindy Pereirabd8f51c2012-01-06 13:41:48 -0800378
Mindy Pereira77528642012-02-17 15:51:10 -0800379 public static final String TOTAL_COUNT = "totalCount";
Mindy Pereira9c002102012-02-17 14:45:58 -0800380 /**
381 * This string column contains the content provider uri to force a
382 * refresh of this folder.
383 */
Mindy Pereira77528642012-02-17 15:51:10 -0800384 public static final String REFRESH_URI = "refreshUri";
385 /**
Marc Blank9ace18a2012-02-21 16:34:07 -0800386 * This int column contains current sync status of the folder; some combination of the
387 * SyncStatus bits defined above
Mindy Pereira77528642012-02-17 15:51:10 -0800388 */
Marc Blank9ace18a2012-02-21 16:34:07 -0800389 public static final String SYNC_STATUS = "syncStatus";
390 /**
391 * This int column contains the sync status of the last sync attempt; one of the
392 * LastSyncStatus values defined above
393 */
394 public static final String LAST_SYNC_RESULT = "lastSyncResult";
Mindy Pereirabd8f51c2012-01-06 13:41:48 -0800395
Vikram Aggarwalff7d02a2012-01-11 16:37:45 -0800396 public FolderColumns() {}
Mindy Pereira6f92de62011-12-19 11:31:48 -0800397 }
398
Mindy Pereiraa1406072011-12-22 10:54:06 -0800399 // We define a "folder" as anything that contains a list of conversations.
400 public static final String CONVERSATION_LIST_TYPE =
401 "vnd.android.cursor.dir/vnd.com.android.mail.conversation";
402 public static final String CONVERSATION_TYPE =
403 "vnd.android.cursor.item/vnd.com.android.mail.conversation";
404
Mindy Pereira9cdc4062012-02-02 14:18:08 -0800405
Mindy Pereiraa1406072011-12-22 10:54:06 -0800406 public static final String[] CONVERSATION_PROJECTION = {
407 BaseColumns._ID,
Mindy Pereira6349a042012-01-04 11:25:01 -0800408 ConversationColumns.URI,
Mindy Pereiraf9573c52011-12-22 14:02:49 -0800409 ConversationColumns.MESSAGE_LIST_URI,
Mindy Pereiraa1406072011-12-22 10:54:06 -0800410 ConversationColumns.SUBJECT,
Mindy Pereiraf9573c52011-12-22 14:02:49 -0800411 ConversationColumns.SNIPPET,
412 ConversationColumns.SENDER_INFO,
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800413 ConversationColumns.DATE_RECEIVED_MS,
Mindy Pereira4db59c52012-01-12 09:45:13 -0800414 ConversationColumns.HAS_ATTACHMENTS,
415 ConversationColumns.NUM_MESSAGES,
416 ConversationColumns.NUM_DRAFTS,
417 ConversationColumns.SENDING_STATE,
Marc Blankc8a99422012-01-19 14:27:47 -0800418 ConversationColumns.PRIORITY,
419 ConversationColumns.READ,
Mindy Pereira36b6c8b2012-02-03 14:16:07 -0800420 ConversationColumns.STARRED,
421 ConversationColumns.FOLDER_LIST
Mindy Pereiraa1406072011-12-22 10:54:06 -0800422 };
423
Mindy Pereirafdd984b2011-12-29 09:43:45 -0800424 // These column indexes only work when the caller uses the
425 // default CONVERSATION_PROJECTION defined above.
Mindy Pereirafa7ef6e2011-12-29 14:18:15 -0800426 public static final int CONVERSATION_ID_COLUMN = 0;
Mindy Pereira3263fa92012-01-04 10:15:32 -0800427 public static final int CONVERSATION_URI_COLUMN = 1;
428 public static final int CONVERSATION_MESSAGE_LIST_URI_COLUMN = 2;
429 public static final int CONVERSATION_SUBJECT_COLUMN = 3;
430 public static final int CONVERSATION_SNIPPET_COLUMN = 4;
431 public static final int CONVERSATION_SENDER_INFO_COLUMN = 5;
432 public static final int CONVERSATION_DATE_RECEIVED_MS_COLUMN = 6;
433 public static final int CONVERSATION_HAS_ATTACHMENTS_COLUMN = 7;
Mindy Pereira4db59c52012-01-12 09:45:13 -0800434 public static final int CONVERSATION_NUM_MESSAGES_COLUMN = 8;
435 public static final int CONVERSATION_NUM_DRAFTS_COLUMN = 9;
436 public static final int CONVERSATION_SENDING_STATE_COLUMN = 10;
437 public static final int CONVERSATION_PRIORITY_COLUMN = 11;
Marc Blankc8a99422012-01-19 14:27:47 -0800438 public static final int CONVERSATION_READ_COLUMN = 12;
439 public static final int CONVERSATION_STARRED_COLUMN = 13;
Mindy Pereira36b6c8b2012-02-03 14:16:07 -0800440 public static final int CONVERSATION_FOLDER_LIST_COLUMN = 14;
Mindy Pereira4db59c52012-01-12 09:45:13 -0800441
442 public static final class ConversationSendingState {
Mindy Pereiraa4571372012-01-12 14:04:21 -0800443 public static final int OTHER = 0;
444 public static final int SENDING = 1;
445 public static final int SENT = 2;
Mindy Pereira4db59c52012-01-12 09:45:13 -0800446 public static final int SEND_ERROR = -1;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800447 }
Mindy Pereira4db59c52012-01-12 09:45:13 -0800448
449 public static final class ConversationPriority {
450 public static final int LOW = 0;
451 public static final int HIGH = 1;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800452 }
Mindy Pereirafa7ef6e2011-12-29 14:18:15 -0800453
Marc Blankc8a99422012-01-19 14:27:47 -0800454 public static final class ConversationFlags {
455 public static final int READ = 1<<0;
456 public static final int STARRED = 1<<1;
457 public static final int REPLIED = 1<<2;
458 public static final int FORWARDED = 1<<3;
Vikram Aggarwal859681b2012-02-03 10:02:24 -0800459 }
Marc Blankc8a99422012-01-19 14:27:47 -0800460
Mindy Pereiraa1406072011-12-22 10:54:06 -0800461 public static final class ConversationColumns {
Mindy Pereira6349a042012-01-04 11:25:01 -0800462 public static final String URI = "conversationUri";
Mindy Pereiraa1406072011-12-22 10:54:06 -0800463 /**
Mindy Pereiraa1406072011-12-22 10:54:06 -0800464 * This string column contains the content provider uri to return the
465 * list of messages for this conversation.
466 */
467 public static final String MESSAGE_LIST_URI = "messageListUri";
Mindy Pereira27a0cf02011-12-22 13:16:32 -0800468 /**
469 * This string column contains the subject string for a conversation.
470 */
471 public static final String SUBJECT = "subject";
472 /**
473 * This string column contains the snippet string for a conversation.
474 */
475 public static final String SNIPPET = "snippet";
476 /**
477 * This string column contains the sender info string for a
478 * conversation.
479 */
480 public static final String SENDER_INFO = "senderInfo";
481 /**
482 * This long column contains the time in ms of the latest update to a
483 * conversation.
484 */
485 public static final String DATE_RECEIVED_MS = "dateReceivedMs";
486
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800487 /**
488 * This boolean column contains whether any messages in this conversation
489 * have attachments.
490 */
491 public static final String HAS_ATTACHMENTS = "hasAttachments";
492
Mindy Pereira4db59c52012-01-12 09:45:13 -0800493 /**
494 * This int column contains the number of messages in this conversation.
495 * For unthreaded, this will always be 1.
496 */
497 public static String NUM_MESSAGES = "numMessages";
498
499 /**
500 * This int column contains the number of drafts associated with this
501 * conversation.
502 */
503 public static String NUM_DRAFTS = "numDrafts";
504
505 /**
506 * This int column contains the state of drafts and replies associated
507 * with this conversation. Use ConversationSendingState to interpret
508 * this field.
509 */
510 public static String SENDING_STATE = "sendingState";
511
512 /**
513 * This int column contains the priority of this conversation. Use
514 * ConversationPriority to interpret this field.
515 */
516 public static String PRIORITY = "priority";
517
Marc Blankc8a99422012-01-19 14:27:47 -0800518 /**
519 * This boolean column indicates whether the conversation has been read
520 */
521 public static String READ = "read";
522
523 /**
524 * This boolean column indicates whether the conversation has been read
525 */
526 public static String STARRED = "starred";
527
Mindy Pereira36b6c8b2012-02-03 14:16:07 -0800528 /**
529 * This string column contains a csv of all folders associated with this
530 * conversation
531 */
532 public static final String FOLDER_LIST = "folderList";
533
Paul Westbrook334e64a2012-02-23 13:26:35 -0800534 private ConversationColumns() {
Andy Huang732600e2012-01-10 17:47:17 -0800535 }
Mindy Pereiraa1406072011-12-22 10:54:06 -0800536 }
537
Mindy Pereira6f92de62011-12-19 11:31:48 -0800538 /**
Paul Westbrook334e64a2012-02-23 13:26:35 -0800539 * List of operations that can can be performed on a conversation. These operations are applied
540 * with {@link ContentProvider#update(Uri, ContentValues, String, String[])}
541 * where the conversation uri is specified, and the ContentValues specifies the operation to
542 * be performed.
543 * <p/>
544 * The operation to be performed is specified in the ContentValues by
545 * the {@link ConversationOperations#OPERATION_KEY}
546 * <p/>
547 * Note not all UI providers will support these operations. {@link AccountCapabilities} can
548 * be used to determine which operations are supported.
Mindy Pereira6f92de62011-12-19 11:31:48 -0800549 */
Paul Westbrook334e64a2012-02-23 13:26:35 -0800550 public static final class ConversationOperations {
551 /**
552 * ContentValues key used to specify the operation to be performed
553 */
554 public static final String OPERATION_KEY = "operation";
555
556 /**
557 * Archive operation
558 */
559 public static final String ARCHIVE = "archive";
560
561 /**
562 * Mute operation
563 */
564 public static final String MUTE = "mute";
565
566 /**
567 * Report spam operation
568 */
569 public static final String REPORT_SPAM = "report_spam";
570
571 private ConversationOperations() {
572 }
573 }
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800574
575 public static final class DraftType {
Andy Huang97c25be2012-01-12 15:12:09 -0800576 public static final int NOT_A_DRAFT = 0;
577 public static final int COMPOSE = 1;
578 public static final int REPLY = 2;
579 public static final int REPLY_ALL = 3;
580 public static final int FORWARD = 4;
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800581
582 private DraftType() {}
Mindy Pereira6f92de62011-12-19 11:31:48 -0800583 }
584
Mindy Pereiraa1406072011-12-22 10:54:06 -0800585 public static final String[] MESSAGE_PROJECTION = {
586 BaseColumns._ID,
Mindy Pereira326c6602012-01-04 15:32:42 -0800587 MessageColumns.SERVER_ID,
Mindy Pereiraa1406072011-12-22 10:54:06 -0800588 MessageColumns.URI,
Mindy Pereiraa1406072011-12-22 10:54:06 -0800589 MessageColumns.CONVERSATION_ID,
590 MessageColumns.SUBJECT,
591 MessageColumns.SNIPPET,
592 MessageColumns.FROM,
593 MessageColumns.TO,
594 MessageColumns.CC,
595 MessageColumns.BCC,
596 MessageColumns.REPLY_TO,
597 MessageColumns.DATE_RECEIVED_MS,
598 MessageColumns.BODY_HTML,
599 MessageColumns.BODY_TEXT,
600 MessageColumns.EMBEDS_EXTERNAL_RESOURCES,
601 MessageColumns.REF_MESSAGE_ID,
602 MessageColumns.DRAFT_TYPE,
Mindy Pereira3ce64e72012-01-13 14:29:45 -0800603 MessageColumns.APPEND_REF_MESSAGE_CONTENT,
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800604 MessageColumns.HAS_ATTACHMENTS,
Mindy Pereira326c6602012-01-04 15:32:42 -0800605 MessageColumns.ATTACHMENT_LIST_URI,
Mindy Pereiraf944e962012-01-17 11:43:36 -0800606 MessageColumns.MESSAGE_FLAGS,
Mindy Pereira7ed1c112012-01-18 10:59:25 -0800607 MessageColumns.JOINED_ATTACHMENT_INFOS,
608 MessageColumns.SAVE_MESSAGE_URI,
609 MessageColumns.SEND_MESSAGE_URI
Mindy Pereiraa1406072011-12-22 10:54:06 -0800610 };
611
Mindy Pereiraf944e962012-01-17 11:43:36 -0800612 /** Separates attachment info parts in strings in a message. */
613 public static final String MESSAGE_ATTACHMENT_INFO_SEPARATOR = "\n";
Mindy Pereiraa1406072011-12-22 10:54:06 -0800614 public static final String MESSAGE_LIST_TYPE =
615 "vnd.android.cursor.dir/vnd.com.android.mail.message";
616 public static final String MESSAGE_TYPE =
617 "vnd.android.cursor.item/vnd.com.android.mail.message";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800618
Mindy Pereira6349a042012-01-04 11:25:01 -0800619 public static final int MESSAGE_ID_COLUMN = 0;
Mindy Pereira326c6602012-01-04 15:32:42 -0800620 public static final int MESSAGE_SERVER_ID_COLUMN = 1;
621 public static final int MESSAGE_URI_COLUMN = 2;
622 public static final int MESSAGE_CONVERSATION_ID_COLUMN = 3;
623 public static final int MESSAGE_SUBJECT_COLUMN = 4;
624 public static final int MESSAGE_SNIPPET_COLUMN = 5;
625 public static final int MESSAGE_FROM_COLUMN = 6;
626 public static final int MESSAGE_TO_COLUMN = 7;
627 public static final int MESSAGE_CC_COLUMN = 8;
628 public static final int MESSAGE_BCC_COLUMN = 9;
629 public static final int MESSAGE_REPLY_TO_COLUMN = 10;
630 public static final int MESSAGE_DATE_RECEIVED_MS_COLUMN = 11;
Mindy Pereira16668162012-01-11 16:11:19 -0800631 public static final int MESSAGE_BODY_HTML_COLUMN = 12;
632 public static final int MESSAGE_BODY_TEXT_COLUMN = 13;
Mindy Pereira326c6602012-01-04 15:32:42 -0800633 public static final int MESSAGE_EMBEDS_EXTERNAL_RESOURCES_COLUMN = 14;
634 public static final int MESSAGE_REF_MESSAGE_ID_COLUMN = 15;
635 public static final int MESSAGE_DRAFT_TYPE_COLUMN = 16;
Mindy Pereira3ce64e72012-01-13 14:29:45 -0800636 public static final int MESSAGE_APPEND_REF_MESSAGE_CONTENT_COLUMN = 17;
637 public static final int MESSAGE_HAS_ATTACHMENTS_COLUMN = 18;
638 public static final int MESSAGE_ATTACHMENT_LIST_URI_COLUMN = 19;
639 public static final int MESSAGE_FLAGS_COLUMN = 20;
Mindy Pereiraf944e962012-01-17 11:43:36 -0800640 public static final int MESSAGE_JOINED_ATTACHMENT_INFOS_COLUMN = 21;
Mindy Pereira7ed1c112012-01-18 10:59:25 -0800641 public static final int MESSAGE_SAVE_URI_COLUMN = 22;
642 public static final int MESSAGE_SEND_URI_COLUMN = 23;
Mindy Pereira6349a042012-01-04 11:25:01 -0800643
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800644 public static final class MessageFlags {
Andy Huangdb977472012-01-11 19:53:25 -0800645 public static final int STARRED = 1 << 0;
646 public static final int UNREAD = 1 << 1;
647 public static final int REPLIED = 1 << 2;
648 public static final int FORWARDED = 1 << 3;
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800649 }
650
Mindy Pereira6f92de62011-12-19 11:31:48 -0800651 public static final class MessageColumns {
Andy Huangdb977472012-01-11 19:53:25 -0800652 /**
653 * This string column contains a content provider URI that points to this single message.
654 */
Mindy Pereira6349a042012-01-04 11:25:01 -0800655 public static final String URI = "messageUri";
Andy Huangdb977472012-01-11 19:53:25 -0800656 /**
657 * This string column contains a server-assigned ID for this message.
658 */
659 public static final String SERVER_ID = "serverMessageId";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800660 public static final String CONVERSATION_ID = "conversationId";
Andy Huangdb977472012-01-11 19:53:25 -0800661 /**
662 * This string column contains the subject of a message.
663 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800664 public static final String SUBJECT = "subject";
Andy Huangdb977472012-01-11 19:53:25 -0800665 /**
666 * This string column contains a snippet of the message body.
667 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800668 public static final String SNIPPET = "snippet";
Andy Huangdb977472012-01-11 19:53:25 -0800669 /**
670 * This string column contains the single email address (and optionally name) of the sender.
671 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800672 public static final String FROM = "fromAddress";
Andy Huangdb977472012-01-11 19:53:25 -0800673 /**
674 * This string column contains a comma-delimited list of "To:" recipient email addresses.
675 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800676 public static final String TO = "toAddresses";
Andy Huangdb977472012-01-11 19:53:25 -0800677 /**
678 * This string column contains a comma-delimited list of "CC:" recipient email addresses.
679 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800680 public static final String CC = "ccAddresses";
Andy Huangdb977472012-01-11 19:53:25 -0800681 /**
682 * This string column contains a comma-delimited list of "BCC:" recipient email addresses.
683 * This value will be null for incoming messages.
684 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800685 public static final String BCC = "bccAddresses";
Andy Huangdb977472012-01-11 19:53:25 -0800686 /**
687 * This string column contains the single email address (and optionally name) of the
688 * sender's reply-to address.
689 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800690 public static final String REPLY_TO = "replyToAddress";
Andy Huangdb977472012-01-11 19:53:25 -0800691 /**
692 * This long column contains the timestamp (in millis) of receipt of the message.
693 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800694 public static final String DATE_RECEIVED_MS = "dateReceivedMs";
Andy Huangdb977472012-01-11 19:53:25 -0800695 /**
696 * This string column contains the HTML form of the message body, if available. If not,
697 * a provider must populate BODY_TEXT.
698 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800699 public static final String BODY_HTML = "bodyHtml";
Andy Huangdb977472012-01-11 19:53:25 -0800700 /**
701 * This string column contains the plaintext form of the message body, if HTML is not
702 * otherwise available. If HTML is available, this value should be left empty (null).
703 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800704 public static final String BODY_TEXT = "bodyText";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800705 public static final String EMBEDS_EXTERNAL_RESOURCES = "bodyEmbedsExternalResources";
Mindy Pereira3ce64e72012-01-13 14:29:45 -0800706 /**
707 * This string column contains an opaque string used by the sendMessage api.
708 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800709 public static final String REF_MESSAGE_ID = "refMessageId";
Andy Huangdb977472012-01-11 19:53:25 -0800710 /**
Andy Huang97c25be2012-01-12 15:12:09 -0800711 * This integer column contains the type of this draft, or zero (0) if this message is not a
712 * draft. See {@link DraftType} for possible values.
Andy Huangdb977472012-01-11 19:53:25 -0800713 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800714 public static final String DRAFT_TYPE = "draftType";
Andy Huangdb977472012-01-11 19:53:25 -0800715 /**
716 * This boolean column indicates whether an outgoing message should trigger special quoted
717 * text processing upon send. The value should default to zero (0) for protocols that do
718 * not support or require this flag, and for all incoming messages.
719 */
Mindy Pereira3ce64e72012-01-13 14:29:45 -0800720 public static final String APPEND_REF_MESSAGE_CONTENT = "appendRefMessageContent";
Andy Huangdb977472012-01-11 19:53:25 -0800721 /**
722 * This boolean column indicates whether a message has attachments. The list of attachments
723 * can be retrieved using the URI in {@link MessageColumns#ATTACHMENT_LIST_URI}.
724 */
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800725 public static final String HAS_ATTACHMENTS = "hasAttachments";
Andy Huangdb977472012-01-11 19:53:25 -0800726 /**
Mindy Pereira7ed1c112012-01-18 10:59:25 -0800727 * This string column contains the content provider URI for the list of
728 * attachments associated with this message.
Andy Huangdb977472012-01-11 19:53:25 -0800729 */
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800730 public static final String ATTACHMENT_LIST_URI = "attachmentListUri";
Andy Huangdb977472012-01-11 19:53:25 -0800731 /**
732 * This long column is a bit field of flags defined in {@link MessageFlags}.
733 */
Andy Huang732600e2012-01-10 17:47:17 -0800734 public static final String MESSAGE_FLAGS = "messageFlags";
Mindy Pereiraf944e962012-01-17 11:43:36 -0800735 /**
736 * This string column contains a specially formatted string representing all
737 * attachments that we added to a message that is being sent or saved.
738 */
Mindy Pereira84554ec2012-01-17 14:44:44 -0800739 public static final String JOINED_ATTACHMENT_INFOS = "joinedAttachmentInfos";
Mindy Pereira7ed1c112012-01-18 10:59:25 -0800740 /**
741 * This string column contains the content provider URI for saving this
742 * message.
743 */
744 public static final String SAVE_MESSAGE_URI = "saveMessageUri";
745 /**
746 * This string column contains content provider URI for sending this
747 * message.
748 */
749 public static final String SEND_MESSAGE_URI = "sendMessageUri";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800750
751 private MessageColumns() {}
752 }
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800753
754 // We define a "folder" as anything that contains a list of conversations.
755 public static final String ATTACHMENT_LIST_TYPE =
756 "vnd.android.cursor.dir/vnd.com.android.mail.attachment";
757 public static final String ATTACHMENT_TYPE =
758 "vnd.android.cursor.item/vnd.com.android.mail.attachment";
759
760 public static final String[] ATTACHMENT_PROJECTION = {
761 BaseColumns._ID,
762 AttachmentColumns.NAME,
763 AttachmentColumns.SIZE,
Mindy Pereira7a07fb42012-01-11 10:32:48 -0800764 AttachmentColumns.URI,
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800765 AttachmentColumns.ORIGIN_EXTRAS,
766 AttachmentColumns.CONTENT_TYPE,
767 AttachmentColumns.SYNCED
768 };
Mindy Pereira82cc5662012-01-09 17:29:30 -0800769 private static final String EMAIL_SEPARATOR_PATTERN = "\n";
Mindy Pereira7a07fb42012-01-11 10:32:48 -0800770 public static final int ATTACHMENT_ID_COLUMN = 0;
771 public static final int ATTACHMENT_NAME_COLUMN = 1;
772 public static final int ATTACHMENT_SIZE_COLUMN = 2;
773 public static final int ATTACHMENT_URI_COLUMN = 3;
Mindy Pereiraf944e962012-01-17 11:43:36 -0800774 public static final int ATTACHMENT_ORIGIN_EXTRAS_COLUMN = 4;
775 public static final int ATTACHMENT_CONTENT_TYPE_COLUMN = 5;
776 public static final int ATTACHMENT_SYNCED_COLUMN = 6;
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800777
778 public static final class AttachmentColumns {
779 public static final String NAME = "name";
780 public static final String SIZE = "size";
Mindy Pereira7a07fb42012-01-11 10:32:48 -0800781 public static final String URI = "uri";
Mindy Pereiraf30cc092011-12-29 14:02:40 -0800782 public static final String ORIGIN_EXTRAS = "originExtras";
783 public static final String CONTENT_TYPE = "contentType";
784 public static final String SYNCED = "synced";
785 }
Mindy Pereira013194c2012-01-06 15:09:33 -0800786
787 public static int getMailMaxAttachmentSize(String account) {
788 // TODO: query the account to see what the max attachment size is?
789 return 5 * 1024 * 1024;
790 }
791
792 public static String getAttachmentTypeSetting() {
793 // TODO: query the account to see what kinds of attachments it supports?
794 return "com.google.android.gm.allowAddAnyAttachment";
795 }
Mindy Pereira82cc5662012-01-09 17:29:30 -0800796
797 public static void incrementRecipientsTimesContacted(Context context, String addressString) {
798 DataUsageStatUpdater statsUpdater = new DataUsageStatUpdater(context);
799 ArrayList<String> recipients = new ArrayList<String>();
800 String[] addresses = TextUtils.split(addressString, EMAIL_SEPARATOR_PATTERN);
801 for (String address : addresses) {
802 recipients.add(address);
803 }
804 statsUpdater.updateWithAddress(recipients);
805 }
Marc Blankb31ab5a2012-02-01 12:28:29 -0800806
807 public static final String[] UNDO_PROJECTION = {
808 ConversationColumns.MESSAGE_LIST_URI
809 };
810 public static final int UNDO_MESSAGE_LIST_COLUMN = 0;
Marc Blankdd10bc82012-02-01 19:10:46 -0800811
812 // Parameter used to indicate the sequence number for an undoable operation
813 public static final String SEQUENCE_QUERY_PARAMETER = "seq";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800814}