blob: e2d89f4a17eb69be1302eab164bb90078aea7ba0 [file] [log] [blame]
Mindy Pereira6f92de62011-12-19 11:31:48 -08001/**
2 * Copyright (c) 2011, Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.email.providers;
18
Mindy Pereira6f92de62011-12-19 11:31:48 -080019import android.provider.BaseColumns;
20
Paul Westbrook82ea6da2011-12-15 11:03:51 -080021import java.lang.String;
22
Mindy Pereira6f92de62011-12-19 11:31:48 -080023
24public class UIProvider {
Paul Westbrook82ea6da2011-12-15 11:03:51 -080025 // The actual content provider should define its own authority
26 //public static final String AUTHORITY = "com.android.email.providers";
Mindy Pereira6f92de62011-12-19 11:31:48 -080027
28 public static final String ACCOUNT_LIST_TYPE =
Paul Westbrook82ea6da2011-12-15 11:03:51 -080029 "vnd.android.cursor.dir/vnd.com.android.mail.account";
Mindy Pereira6f92de62011-12-19 11:31:48 -080030 public static final String ACCOUNT_TYPE =
Paul Westbrook82ea6da2011-12-15 11:03:51 -080031 "vnd.android.cursor.item/vnd.com.android.mail.account";
Mindy Pereira6f92de62011-12-19 11:31:48 -080032
33 public static final String[] ACCOUNTS_PROJECTION = {
34 BaseColumns._ID,
35 AccountColumns.NAME,
36 AccountColumns.PROVIDER_VERSION,
37 AccountColumns.URI,
38 AccountColumns.CAPABILITIES,
39 AccountColumns.FOLDER_LIST_URI,
40 AccountColumns.SEARCH_URI,
41 AccountColumns.ACCOUNT_FROM_ADDRESSES_URI,
Paul Westbrook82ea6da2011-12-15 11:03:51 -080042 AccountColumns.SAVE_NEW_DRAFT_URI,
Mindy Pereira3a565bf2011-12-21 11:26:21 -080043 AccountColumns.SEND_MESSAGE_URI
Mindy Pereira6f92de62011-12-19 11:31:48 -080044 };
45
46 public static final class AccountCapabilities {
Paul Westbrook82ea6da2011-12-15 11:03:51 -080047 public static final int SYNCABLE_FOLDERS = 0x0001;
48 public static final int REPORT_SPAM = 0x0002;
49 public static final int ARCHIVE = 0x0004;
50 public static final int MUTE = 0x0008;
51 public static final int SERVER_SEARCH = 0x0010;
52 public static final int FOLDER_SERVER_SEARCH = 0x0020;
53 public static final int SANITIZED_HTML = 0x0040;
54 public static final int DRAFT_SYNCHRONIZATION = 0x0080;
55 public static final int MULTIPLE_FROM_ADDRESSES = 0x0100;
56 public static final int SMART_REPLY = 0x0200;
57 public static final int LOCAL_SEARCH = 0x0400;
58 public static final int THREADED_CONVERSATIONS = 0x0800;
Mindy Pereira6f92de62011-12-19 11:31:48 -080059 }
60
61 public static final class AccountColumns {
Paul Westbrook82ea6da2011-12-15 11:03:51 -080062 /**
63 * This string column contains the human visible name for the account.
64 */
Mindy Pereira6f92de62011-12-19 11:31:48 -080065 public static final String NAME = "name";
Paul Westbrook82ea6da2011-12-15 11:03:51 -080066
67 /**
68 * This integer column returns the version of the UI provider schema from which this
69 * account provider will return results.
70 */
Mindy Pereira6f92de62011-12-19 11:31:48 -080071 public static final String PROVIDER_VERSION = "providerVersion";
Paul Westbrook82ea6da2011-12-15 11:03:51 -080072
73 /**
74 * This string column contains the uri to directly access the information for this account.
75 */
Mindy Pereira6f92de62011-12-19 11:31:48 -080076 public static final String URI = "uri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -080077
78 /**
79 * This integer column contains a bit field of the possible cabibilities that this account
80 * supports.
81 */
Mindy Pereira6f92de62011-12-19 11:31:48 -080082 public static final String CAPABILITIES = "capabilities";
Paul Westbrook82ea6da2011-12-15 11:03:51 -080083
84 /**
Mindy Pereira750cc732011-12-21 13:32:29 -080085 * This string column contains the content provider uri to return the
86 * list of top level folders for this account.
Paul Westbrook82ea6da2011-12-15 11:03:51 -080087 */
Mindy Pereira6f92de62011-12-19 11:31:48 -080088 public static final String FOLDER_LIST_URI = "folderListUri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -080089
90 /**
91 * This string column contains the content provider uri that can be queried for search
92 * results.
93 */
Mindy Pereira6f92de62011-12-19 11:31:48 -080094 public static final String SEARCH_URI = "searchUri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -080095
96 /**
97 * This string column contains the content provider uri that can be queried to access the
98 * from addresses for this account.
99 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800100 public static final String ACCOUNT_FROM_ADDRESSES_URI = "accountFromAddressesUri";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800101
102 /**
103 * This string column contains the content provider uri that can be used to save (insert)
104 * new draft messages for this account.
105 */
Mindy Pereira6f92de62011-12-19 11:31:48 -0800106 public static final String SAVE_NEW_DRAFT_URI = "saveNewDraftUri";
107
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800108 /**
109 * This string column contains the content provider uri that can be used to send
110 * a message for this account.
111 * NOTE: This might be better to be an update operation on the messageUri.
112 */
113 public static final String SEND_MESSAGE_URI = "sendMessageUri";
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800114 }
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800115
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800116 // We define a "folder" as anything that contains a list of conversations.
117 public static final String FOLDER_LIST_TYPE =
118 "vnd.android.cursor.dir/vnd.com.android.mail.folder";
119 public static final String FOLDER_TYPE =
Mindy Pereira750cc732011-12-21 13:32:29 -0800120 "vnd.android.cursor.item/vnd.com.android.mail.folder";
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800121
122 public static final String[] FOLDERS_PROJECTION = {
123 BaseColumns._ID,
124 FolderColumns.NAME,
Mindy Pereira750cc732011-12-21 13:32:29 -0800125 FolderColumns.HAS_CHILDREN,
Mindy Pereira0973b202011-12-21 15:48:12 -0800126 FolderColumns.CAPABILITIES,
127 FolderColumns.SYNC_FREQUENCY,
128 FolderColumns.SYNC_WINDOW,
Mindy Pereira750cc732011-12-21 13:32:29 -0800129 FolderColumns.CONVERSATION_LIST_URI,
130 FolderColumns.CHILD_FOLDERS_LIST_URI
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800131 };
132
Mindy Pereira0973b202011-12-21 15:48:12 -0800133 public static final class FolderCapabilities {
134 public static final int SYNCABLE = 0x0001;
135 public static final int PARENT = 0x0002;
136 public static final int CAN_HOLD_MAIL = 0x0004;
137 public static final int CAN_ACCEPT_MOVED_MESSAGES = 0x0008;
138 }
139
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800140 public static final class FolderColumns {
141 /**
142 * This string column contains the human visible name for the folder.
143 */
144 public static final String NAME = "name";
145 /**
Mindy Pereira0973b202011-12-21 15:48:12 -0800146 * This int column represents the capabilities of the folder specified by
147 * FolderCapabilities flags.
148 */
149 public static String CAPABILITIES = "capabilities";
150 /**
Mindy Pereira750cc732011-12-21 13:32:29 -0800151 * This boolean column represents whether or not this folder has any
152 * child folders.
153 */
154 public static String HAS_CHILDREN = "hasChildren";
155 /**
Mindy Pereira0973b202011-12-21 15:48:12 -0800156 * This int column represents how often the folder should be synced.
157 */
158 public static String SYNC_FREQUENCY = "syncFrequency";
159 /**
160 * This int column represents how large the sync window is.
161 */
162 public static String SYNC_WINDOW = "syncWindow";
163 /**
Mindy Pereira750cc732011-12-21 13:32:29 -0800164 * This string column contains the content provider uri to return the
165 * list of conversations for this folder.
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800166 */
167 public static final String CONVERSATION_LIST_URI = "conversationListUri";
Mindy Pereira750cc732011-12-21 13:32:29 -0800168 /**
169 * This string column contains the content provider uri to return the
170 * list of child folders of this folder.
171 */
172 public static String CHILD_FOLDERS_LIST_URI = "childFoldersListUri";
Mindy Pereira3a565bf2011-12-21 11:26:21 -0800173
174 public FolderColumns() {};
Mindy Pereira6f92de62011-12-19 11:31:48 -0800175 }
176
Mindy Pereiraa1406072011-12-22 10:54:06 -0800177 // We define a "folder" as anything that contains a list of conversations.
178 public static final String CONVERSATION_LIST_TYPE =
179 "vnd.android.cursor.dir/vnd.com.android.mail.conversation";
180 public static final String CONVERSATION_TYPE =
181 "vnd.android.cursor.item/vnd.com.android.mail.conversation";
182
183 public static final String[] CONVERSATION_PROJECTION = {
184 BaseColumns._ID,
185 ConversationColumns.SUBJECT,
186 ConversationColumns.MESSAGE_LIST_URI
187 };
188
189 public static final class ConversationColumns {
190 /**
191 * This string column contains the subject string for a conversation.
192 */
193 public static final String SUBJECT = "subject";
194 /**
195 * This string column contains the content provider uri to return the
196 * list of messages for this conversation.
197 */
198 public static final String MESSAGE_LIST_URI = "messageListUri";
199 public ConversationColumns() {};
200 }
201
Mindy Pereira6f92de62011-12-19 11:31:48 -0800202 /**
203 * Returns a uri that, when queried, will return a cursor with a list of information for the
204 * list of configured accounts.
205 * @return
206 */
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800207 // TODO: create a static registry for the starting point for the UI provider.
208// public static Uri getAccountsUri() {
209// return Uri.parse(BASE_URI_STRING + "/");
210// }
211
212 public static final class DraftType {
213 public static final String COMPOSE = "compose";
214 public static final String REPLY = "reply";
215 public static final String REPLY_ALL = "replyAll";
216 public static final String FORWARD = "forward";
217
218 private DraftType() {}
Mindy Pereira6f92de62011-12-19 11:31:48 -0800219 }
220
Mindy Pereiraa1406072011-12-22 10:54:06 -0800221 public static final String[] MESSAGE_PROJECTION = {
222 BaseColumns._ID,
223 MessageColumns.URI,
224 MessageColumns.MESSAGE_ID,
225 MessageColumns.CONVERSATION_ID,
226 MessageColumns.SUBJECT,
227 MessageColumns.SNIPPET,
228 MessageColumns.FROM,
229 MessageColumns.TO,
230 MessageColumns.CC,
231 MessageColumns.BCC,
232 MessageColumns.REPLY_TO,
233 MessageColumns.DATE_RECEIVED_MS,
234 MessageColumns.BODY_HTML,
235 MessageColumns.BODY_TEXT,
236 MessageColumns.EMBEDS_EXTERNAL_RESOURCES,
237 MessageColumns.REF_MESSAGE_ID,
238 MessageColumns.DRAFT_TYPE,
239 MessageColumns.INCLUDE_QUOTED_TEXT,
240 MessageColumns.QUOTE_START_POS,
241 MessageColumns.CLIENT_CREATED,
242 MessageColumns.CUSTOM_FROM_ADDRESS
243 };
244
245 // We define a "folder" as anything that contains a list of conversations.
246 public static final String MESSAGE_LIST_TYPE =
247 "vnd.android.cursor.dir/vnd.com.android.mail.message";
248 public static final String MESSAGE_TYPE =
249 "vnd.android.cursor.item/vnd.com.android.mail.message";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800250
251 public static final class MessageColumns {
252 public static final String ID = "_id";
253 public static final String URI = "uri";
254 public static final String MESSAGE_ID = "messageId";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800255 public static final String CONVERSATION_ID = "conversationId";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800256 public static final String SUBJECT = "subject";
257 public static final String SNIPPET = "snippet";
258 public static final String FROM = "fromAddress";
259 public static final String TO = "toAddresses";
260 public static final String CC = "ccAddresses";
261 public static final String BCC = "bccAddresses";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800262 public static final String REPLY_TO = "replyToAddress";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800263 public static final String DATE_RECEIVED_MS = "dateReceivedMs";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800264 public static final String BODY_HTML = "bodyHtml";
265 public static final String BODY_TEXT = "bodyText";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800266 public static final String EMBEDS_EXTERNAL_RESOURCES = "bodyEmbedsExternalResources";
267 public static final String REF_MESSAGE_ID = "refMessageId";
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800268 public static final String DRAFT_TYPE = "draftType";
Mindy Pereira6f92de62011-12-19 11:31:48 -0800269 public static final String INCLUDE_QUOTED_TEXT = "includeQuotedText";
270 public static final String QUOTE_START_POS = "quoteStartPos";
271 public static final String CLIENT_CREATED = "clientCreated";
272 public static final String CUSTOM_FROM_ADDRESS = "customFromAddress";
273
274 // TODO: Add attachments, flags
275
276 private MessageColumns() {}
277 }
Paul Westbrook82ea6da2011-12-15 11:03:51 -0800278}