aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-folder.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2000-06-16 08:20:45 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-06-16 08:20:45 +0800
commit57689076e4df4aae59ae7459490a65852b4df1f9 (patch)
tree258d9c721ff5a6b7a62609fe300c2585d5b40e3b /camel/providers/imap/camel-imap-folder.c
parenta0b7ca18e2f59c4d536ca8f02055a1ca8a835e60 (diff)
downloadgsoc2013-evolution-57689076e4df4aae59ae7459490a65852b4df1f9.tar
gsoc2013-evolution-57689076e4df4aae59ae7459490a65852b4df1f9.tar.gz
gsoc2013-evolution-57689076e4df4aae59ae7459490a65852b4df1f9.tar.bz2
gsoc2013-evolution-57689076e4df4aae59ae7459490a65852b4df1f9.tar.lz
gsoc2013-evolution-57689076e4df4aae59ae7459490a65852b4df1f9.tar.xz
gsoc2013-evolution-57689076e4df4aae59ae7459490a65852b4df1f9.tar.zst
gsoc2013-evolution-57689076e4df4aae59ae7459490a65852b4df1f9.zip
Started to code the imap summary stuff
svn path=/trunk/; revision=3585
Diffstat (limited to 'camel/providers/imap/camel-imap-folder.c')
-rw-r--r--camel/providers/imap/camel-imap-folder.c90
1 files changed, 83 insertions, 7 deletions
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c
index 860a8aed99..33e4980d24 100644
--- a/camel/providers/imap/camel-imap-folder.c
+++ b/camel/providers/imap/camel-imap-folder.c
@@ -728,13 +728,70 @@ imap_get_message_by_uid (CamelFolder *folder, const gchar *uid, CamelException *
}
#endif
+/* This probably shouldn't go here...but it will for now */
+static gchar *
+get_header_field (gchar *header, gchar *field)
+{
+ gchar *part, *index, *p, *q;
+
+ index = strstrcase(header, field);
+ if (index == NULL)
+ return NULL;
+
+ p = index + strlen (field) + 1;
+ for (q = p; *q; q++)
+ if (*q == '\n' && (*(q + 1) != ' ' || *(q + 1) != '\t'))
+ break;
+
+ part = g_strndup (p, (gint)(q - p));
+
+ /* it may be wrapped on multiple lines, so lets strip out \n's */
+ for (p = part; *p; ) {
+ if (*p == '\r' || *p == '\n')
+ memmove(p, p + 1, strlen (p) - 1);
+ else
+ p++;
+ }
+
+ return part;
+}
+
GPtrArray *
imap_get_summary (CamelFolder *folder, CamelException *ex)
{
- /* TODO: what should we do here?? */
- CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder);
+ /* TODO: code this - loop: "FETCH <i> BODY.PEEK[HEADER]" and parse */
+ /* TODO: Maybe use FETCH ENVELOPE instead */
+ GPtrArray *array = NULL;
+ CamelMessageInfo *info;
+ int i, num, status;
+ char *result;
- return CAMEL_FOLDER_SUMMARY (imap_folder->summary)->messages;
+ num = imap_get_message_count (folder, ex);
+
+ array = g_ptr_array_new ();
+
+ for (i = 0; i < num; i++) {
+ status = camel_imap_command_extended (CAMEL_IMAP_STORE (folder->parent_store), folder,
+ &result, "FETCH %d BODY.PEEK[HEADER]", i);
+
+ if (status != CAMEL_IMAP_OK) {
+ g_free (result);
+ break;
+ }
+
+ info = g_malloc0 (sizeof (CamelMessageInfo));
+ info->subject = get_header_field (result, "\nSubject:");
+ info->to = get_header_field (result, "\nTo:");
+ info->from = get_header_field (result, "\nFrom:");
+ info->uid = NULL; /* FIXME: how can we get the UID? */
+ g_free (result);
+
+ /* still need to get flags and date_sent */
+
+ g_ptr_array_add (array, info);
+ }
+
+ return array;
}
void
@@ -746,12 +803,31 @@ imap_free_summary (CamelFolder *folder, GPtrArray *array)
/* get a single message info, by uid */
static const CamelMessageInfo *
-imap_summary_get_by_uid (CamelFolder *f, const char *uid)
+imap_summary_get_by_uid (CamelFolder *folder, const char *uid)
{
- /* TODO: what do we do here? */
- CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (f);
+ /* TODO: code this - do a "UID FETCH <uid> BODY.PEEK[HEADER]" and parse */
+ CamelMessageInfo *info = NULL;
+ char *result;
+ int status;
+
+ status = camel_imap_command_extended (CAMEL_IMAP_STORE (folder->parent_store), folder,
+ &result, "UID FETCH %s BODY.PEEK[HEADER]", uid);
+
+ if (status != CAMEL_IMAP_OK) {
+ g_free (result);
+ return NULL;
+ }
+
+ info = g_malloc0 (sizeof (CamelMessageInfo));
+ info->subject = get_header_field (result, "\nSubject:");
+ info->to = get_header_field (result, "\nTo:");
+ info->from = get_header_field (result, "\nFrom:");
+ info->uid = g_strdup (uid);
+ g_free (result);
+
+ /* still need to get flags and date_sent */
- return camel_folder_summary_uid(CAMEL_FOLDER_SUMMARY (imap_folder->summary), uid);
+ return info;
}
static GList *