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
27 #include "sipe-mime.h"
28 #include "sipe-core.h"
30 void sipe_mime_init(void)
35 void sipe_mime_shutdown(void)
41 GSList
* mime_fields_to_nameval(PurpleMimePart
* part
)
43 GList
*keys
= purple_mime_part_get_fields(part
);
44 GSList
*fields
= NULL
;
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
);
58 void sipe_mime_parts_foreach(const gchar
*type
,
60 sipe_mime_parts_cb callback
,
63 gchar
*doc
= g_strdup_printf("Content-Type: %s\r\n\r\n%s", type
, body
);
64 PurpleMimeDocument
*mime
= purple_mime_document_parse(doc
);
67 GList
* parts
= purple_mime_document_get_parts(mime
);
70 const gchar
*content_type
= purple_mime_part_get_field(parts
->data
,
73 const gchar
*content
= NULL
;
74 guchar
*content_decoded
= NULL
;
77 GSList
*fields
= mime_fields_to_nameval(parts
->data
);
79 purple_mime_part_get_data_decoded(parts
->data
,
82 if (content_decoded
) {
83 content
= (gchar
*) content_decoded
;
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
);
98 purple_mime_document_free(mime
);