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
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
= 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
);
83 purple_mime_document_free(mime
);