buddy: add interface for number of buddies
[siplcs.git] / src / purple / purple-mime.c
blob0cf137dc010f643eac00b6c6c683be1bb9d6271c
1 /**
2 * @file purple-mime.c
4 * pidgin-sipe
6 * Copyright (C) 2010 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "glib.h"
25 #include "mime.h"
27 #include "sipe-mime.h"
28 #include "sipe-core.h"
30 void sipe_mime_init(void)
32 /* Nothing to do */
35 void sipe_mime_shutdown(void)
37 /* Nothing to do */
40 static
41 GSList * mime_fields_to_nameval(PurpleMimePart* part)
43 GList *keys = purple_mime_part_get_fields(part);
44 GSList *fields = NULL;
46 while (keys) {
47 const char *key = keys->data;
48 const char *value = purple_mime_part_get_field(part, key);
50 fields = sipe_utils_nameval_add(fields, key, value);
52 keys = keys->next;
55 return fields;
58 void sipe_mime_parts_foreach(const gchar *type,
59 const gchar *body,
60 sipe_mime_parts_cb callback,
61 gpointer user_data)
63 gchar *doc = g_strdup_printf("Content-Type: %s\r\n\r\n%s", type, body);
64 PurpleMimeDocument *mime = purple_mime_document_parse(doc);
66 if (mime) {
67 GList* parts = purple_mime_document_get_parts(mime);
69 while (parts) {
70 const gchar *content_type = purple_mime_part_get_field(parts->data,
71 "Content-Type");
72 if (content_type) {
73 const gchar *content = purple_mime_part_get_data(parts->data);
74 gsize length = purple_mime_part_get_length(parts->data);
75 GSList *fields = mime_fields_to_nameval(parts->data);
77 (*callback)(user_data, fields, content, length);
79 sipe_utils_nameval_free(fields);
81 parts = parts->next;
83 purple_mime_document_free(mime);
85 g_free(doc);
89 Local Variables:
90 mode: c
91 c-file-style: "bsd"
92 indent-tabs-mode: t
93 tab-width: 8
94 End: