Release 1.25.0 -- Buddy Idle Time, RTF
[siplcs.git] / src / purple / purple-mime.c
blob41054188fb3ef112f891d8e366dd5602252a1a73
1 /**
2 * @file purple-mime.c
4 * pidgin-sipe
6 * Copyright (C) 2010-2015 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 = NULL;
74 guchar *content_decoded = NULL;
75 gsize length = 0;
77 GSList *fields = mime_fields_to_nameval(parts->data);
79 purple_mime_part_get_data_decoded(parts->data,
80 &content_decoded,
81 &length);
82 if (content_decoded) {
83 content = (gchar *) content_decoded;
84 } else {
85 /* Unknown encoding in Content-Transfer-Encoding
86 * field; revert to the plain content extraction. */
87 content = purple_mime_part_get_data(parts->data);
88 length = purple_mime_part_get_length(parts->data);
91 (*callback)(user_data, fields, content, length);
93 sipe_utils_nameval_free(fields);
94 g_free(content_decoded);
96 parts = parts->next;
98 purple_mime_document_free(mime);
100 g_free(doc);
104 Local Variables:
105 mode: c
106 c-file-style: "bsd"
107 indent-tabs-mode: t
108 tab-width: 8
109 End: