1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
/*
** Copyright 2010-2014 Double Precision, Inc. See COPYING for
** distribution information.
*/
#include "rfc2045.h"
#include "rfc822/rfc822.h"
#include <ctype.h>
#include <unistd.h>
#include <string.h>
struct doconvtoutf8_info {
struct rfc2045_decodemsgtoutf8_cb *callback;
int err_flag;
};
static void doconvtoutf8_write(const char *p, size_t n,
void *void_arg)
{
struct doconvtoutf8_info *ptr=
(struct doconvtoutf8_info *)void_arg;
if (n && ptr->err_flag == 0)
ptr->err_flag=(*ptr->callback->output_func)
(p, n, ptr->callback->arg);
}
static void doconvtoutf8_write_noeol(const char *p, size_t n,
void *void_arg)
{
while (n)
{
size_t i;
if (*p == '\n')
{
doconvtoutf8_write(" ", 1, void_arg);
++p;
--n;
continue;
}
for (i=0; i<n; ++i)
if (p[i] == '\n')
break;
doconvtoutf8_write(p, i, void_arg);
p += i;
n -= i;
}
}
static void doconvtoutf8_error(const char *p, int n,
void *void_arg)
{
struct doconvtoutf8_info *ptr=(struct doconvtoutf8_info *)void_arg;
ptr->err_flag= -1;
}
static int doconvtoutf8_rfc822hdr(const char *header,
const char *value,
struct rfc2045_decodemsgtoutf8_cb *callback)
{
struct doconvtoutf8_info info;
info.err_flag=0;
info.callback=callback;
if (callback->headerfilter_func &&
(*callback->headerfilter_func)(header, value, callback->arg) == 0)
return 0;
if ((callback->flags & RFC2045_DECODEMSG_NOHEADERNAME) == 0)
{
doconvtoutf8_write(header, strlen(header), &info);
doconvtoutf8_write(": ", 2, &info);
}
rfc822_display_hdrvalue(header, value, "utf-8",
doconvtoutf8_write_noeol,
doconvtoutf8_error,
&info);
doconvtoutf8_write("\n", 1, &info);
if (callback->headerdone_func && info.err_flag == 0)
{
int rc=(*callback->headerdone_func)(header, callback->arg);
if (rc)
info.err_flag=rc;
}
return info.err_flag;
}
static int decode_handler(const char *p, size_t n, void *voidarg)
{
const struct doconvtoutf8_info *ptr=
(const struct doconvtoutf8_info *)voidarg;
int rc=0;
if (n)
rc=(*ptr->callback->output_func)(p, n, ptr->callback->arg);
return rc;
}
int rfc2045_decodemsgtoutf8(struct rfc2045src *src,
struct rfc2045 *p,
struct rfc2045_decodemsgtoutf8_cb *callback)
{
struct rfc2045headerinfo *hi;
int rc;
hi=rfc2045header_start(src, p);
if (hi)
{
char *header;
char *value;
while (rfc2045header_get(hi, &header, &value,
RFC2045H_NOLC |
RFC2045H_KEEPNL) == 0 && header)
{
if (callback->flags & RFC2045_DECODEMSG_NOHEADERS)
continue;
if (doconvtoutf8_rfc822hdr(header, value,
callback) < 0)
return -1;
}
rfc2045header_end(hi);
}
if (p->firstpart)
{
for (p=p->firstpart; p; p=p->next)
{
if (!p->isdummy)
{
if ((rc=rfc2045_decodemsgtoutf8(src, p,
callback))
!= 0)
return rc;
}
}
}
else
{
const char *content_type;
const char *transfer_encoding;
const char *charset;
struct doconvtoutf8_info info;
info.callback=callback;
rfc2045_mimeinfo(p, &content_type, &transfer_encoding,
&charset);
if ((strncmp(content_type, "text/", 5) == 0 ||
strncmp(content_type, "message/", 8) == 0) &&
(callback->flags & RFC2045_DECODEMSG_NOBODY) == 0 &&
(rc=rfc2045_decodetextmimesection(src, p, "utf-8", NULL,
decode_handler,
&info)) != 0)
return rc;
}
return 0;
}
|