summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/mime/src/mimeebod.cpp
blob: 755574b1b0681b7b5625fbab56b485ea4c3b171f (plain)
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsCOMPtr.h"
#include "mimeebod.h"
#include "prmem.h"
#include "plstr.h"
#include "prlog.h"
#include "prio.h"
#include "msgCore.h"
#include "nsMimeStringResources.h"
#include "mimemoz2.h"
#include "nsComponentManagerUtils.h"
#include "nsMsgUtils.h"
#include "nsINetUtil.h"
#include <ctype.h>

#define MIME_SUPERCLASS mimeObjectClass
MimeDefClass(MimeExternalBody, MimeExternalBodyClass, mimeExternalBodyClass,
             &MIME_SUPERCLASS);

#ifdef XP_MACOSX
extern MimeObjectClass mimeMultipartAppleDoubleClass;
#endif

static int MimeExternalBody_initialize(MimeObject*);
static void MimeExternalBody_finalize(MimeObject*);
static int MimeExternalBody_parse_line(const char*, int32_t, MimeObject*);
static int MimeExternalBody_parse_eof(MimeObject*, bool);
static bool MimeExternalBody_displayable_inline_p(MimeObjectClass* clazz,
                                                  MimeHeaders* hdrs);

#if 0
#  if defined(DEBUG) && defined(XP_UNIX)
static int MimeExternalBody_debug_print (MimeObject *, PRFileDesc *, int32_t);
#  endif
#endif /* 0 */

static int MimeExternalBodyClassInitialize(MimeExternalBodyClass* clazz) {
  MimeObjectClass* oclass = (MimeObjectClass*)clazz;

  NS_ASSERTION(!oclass->class_initialized,
               "1.1 <rhp@netscape.com> 19 Mar 1999 12:00");
  oclass->initialize = MimeExternalBody_initialize;
  oclass->finalize = MimeExternalBody_finalize;
  oclass->parse_line = MimeExternalBody_parse_line;
  oclass->parse_eof = MimeExternalBody_parse_eof;
  oclass->displayable_inline_p = MimeExternalBody_displayable_inline_p;

#if 0
#  if defined(DEBUG) && defined(XP_UNIX)
  oclass->debug_print = MimeExternalBody_debug_print;
#  endif
#endif /* 0 */

  return 0;
}

static int MimeExternalBody_initialize(MimeObject* object) {
  return ((MimeObjectClass*)&MIME_SUPERCLASS)->initialize(object);
}

static void MimeExternalBody_finalize(MimeObject* object) {
  MimeExternalBody* bod = (MimeExternalBody*)object;
  if (bod->hdrs) {
    MimeHeaders_free(bod->hdrs);
    bod->hdrs = 0;
  }
  PR_FREEIF(bod->body);

  ((MimeObjectClass*)&MIME_SUPERCLASS)->finalize(object);
}

static int MimeExternalBody_parse_line(const char* line, int32_t length,
                                       MimeObject* obj) {
  MimeExternalBody* bod = (MimeExternalBody*)obj;
  int status = 0;

  NS_ASSERTION(line && *line, "1.1 <rhp@netscape.com> 19 Mar 1999 12:00");
  if (!line || !*line) return -1;

  if (!obj->output_p) return 0;

  /* If we're supposed to write this object, but aren't supposed to convert
   it to HTML, simply pass it through unaltered. */
  if (obj->options && !obj->options->write_html_p && obj->options->output_fn)
    return MimeObject_write(obj, line, length, true);

  /* If we already have a `body' then we're done parsing headers, and all
   subsequent lines get tacked onto the body. */
  if (bod->body) {
    int L = strlen(bod->body);
    char* new_str = (char*)PR_Realloc(bod->body, L + length + 1);
    if (!new_str) return MIME_OUT_OF_MEMORY;
    bod->body = new_str;
    memcpy(bod->body + L, line, length);
    bod->body[L + length] = 0;
    return 0;
  }

  /* Otherwise we don't yet have a body, which means we're not done parsing
   our headers.
   */
  if (!bod->hdrs) {
    bod->hdrs = MimeHeaders_new();
    if (!bod->hdrs) return MIME_OUT_OF_MEMORY;
  }

  status = MimeHeaders_parse_line(line, length, bod->hdrs);
  if (status < 0) return status;

  /* If this line is blank, we're now done parsing headers, and should
   create a dummy body to show that.  Gag.
   */
  if (*line == '\r' || *line == '\n') {
    bod->body = strdup("");
    if (!bod->body) return MIME_OUT_OF_MEMORY;
  }

  return 0;
}

char* MimeExternalBody_make_url(const char* ct, const char* at,
                                const char* lexp, const char* size,
                                const char* perm, const char* dir,
                                const char* mode, const char* name,
                                const char* url, const char* site,
                                const char* svr, const char* subj,
                                const char* body) {
  char* s;
  uint32_t slen;
  if (!at) {
    return 0;
  } else if (!PL_strcasecmp(at, "ftp") || !PL_strcasecmp(at, "anon-ftp")) {
    if (!site || !name) return 0;

    slen = strlen(name) + strlen(site) + (dir ? strlen(dir) : 0) + 20;
    s = (char*)PR_MALLOC(slen);

    if (!s) return 0;
    PL_strncpyz(s, "ftp://", slen);
    PL_strcatn(s, slen, site);
    PL_strcatn(s, slen, "/");
    if (dir) PL_strcatn(s, slen, (dir[0] == '/' ? dir + 1 : dir));
    if (s[strlen(s) - 1] != '/') PL_strcatn(s, slen, "/");
    PL_strcatn(s, slen, name);
    return s;
#ifdef XP_UNIX
  } else if (!PL_strcasecmp(at, "local-file") || !PL_strcasecmp(at, "afs")) {
    if (!name) return 0;

    if (!PL_strcasecmp(at, "afs")) /* only if there is a /afs/ directory */
    {
      nsCOMPtr<nsIFile> fs = do_CreateInstance(NS_LOCAL_FILE_CONTRACTID);
      bool exists = false;
      if (fs) {
        fs->InitWithNativePath("/afs/."_ns);
        fs->Exists(&exists);
      }
      if (!exists) return 0;
    }

    slen = (strlen(name) * 3 + 20);
    s = (char*)PR_MALLOC(slen);
    if (!s) return 0;
    PL_strncpyz(s, "file:", slen);

    nsCString s2;
    MsgEscapeString(nsDependentCString(name), nsINetUtil::ESCAPE_URL_PATH, s2);
    PL_strcatn(s, slen, s2.get());
    return s;
#endif
  } else if (!PL_strcasecmp(at, "mail-server")) {
    if (!svr) return 0;

    slen = (strlen(svr) * 4 + (subj ? strlen(subj) * 4 : 0) +
            (body ? strlen(body) * 4 : 0) +
            25);  // dpv xxx: why 4x? %xx escaping should be 3x
    s = (char*)PR_MALLOC(slen);
    if (!s) return 0;
    PL_strncpyz(s, "mailto:", slen);

    nsCString s2;
    MsgEscapeString(nsDependentCString(svr), nsINetUtil::ESCAPE_XALPHAS, s2);
    PL_strcatn(s, slen, s2.get());

    if (subj) {
      MsgEscapeString(nsDependentCString(subj), nsINetUtil::ESCAPE_XALPHAS, s2);
      PL_strcatn(s, slen, "?subject=");
      PL_strcatn(s, slen, s2.get());
    }
    if (body) {
      MsgEscapeString(nsDependentCString(body), nsINetUtil::ESCAPE_XALPHAS, s2);
      PL_strcatn(s, slen, (subj ? "&body=" : "?body="));
      PL_strcatn(s, slen, s2.get());
    }
    return s;
  } else if (!PL_strcasecmp(at, "url")) /* RFC 2017 */
  {
    if (url)
      return strdup(url); /* it's already quoted and everything */
    else
      return 0;
  } else
    return 0;
}

static int MimeExternalBody_parse_eof(MimeObject* obj, bool abort_p) {
  int status = 0;
  MimeExternalBody* bod = (MimeExternalBody*)obj;

  if (obj->closed_p) return 0;

  /* Run parent method first, to flush out any buffered data. */
  status = ((MimeObjectClass*)&MIME_SUPERCLASS)->parse_eof(obj, abort_p);
  if (status < 0) return status;

#ifdef XP_MACOSX
  if (obj->parent &&
      mime_typep(obj->parent, (MimeObjectClass*)&mimeMultipartAppleDoubleClass))
    goto done;
#endif /* XP_MACOSX */

  if (!abort_p && obj->output_p && obj->options && obj->options->write_html_p) {
    bool all_headers_p = obj->options->headers == MimeHeadersAll;
    MimeDisplayOptions* newopt = obj->options; /* copy it */

    char* ct = MimeHeaders_get(obj->headers, HEADER_CONTENT_TYPE, false, false);
    char *at, *lexp, *size, *perm;
    char *url, *dir, *mode, *name, *site, *svr, *subj;
    char *h = 0, *lname = 0, *lurl = 0, *body = 0;
    MimeHeaders* hdrs = 0;

    if (!ct) return MIME_OUT_OF_MEMORY;

    at = MimeHeaders_get_parameter(ct, "access-type", NULL, NULL);
    lexp = MimeHeaders_get_parameter(ct, "expiration", NULL, NULL);
    size = MimeHeaders_get_parameter(ct, "size", NULL, NULL);
    perm = MimeHeaders_get_parameter(ct, "permission", NULL, NULL);
    dir = MimeHeaders_get_parameter(ct, "directory", NULL, NULL);
    mode = MimeHeaders_get_parameter(ct, "mode", NULL, NULL);
    name = MimeHeaders_get_parameter(ct, "name", NULL, NULL);
    site = MimeHeaders_get_parameter(ct, "site", NULL, NULL);
    svr = MimeHeaders_get_parameter(ct, "server", NULL, NULL);
    subj = MimeHeaders_get_parameter(ct, "subject", NULL, NULL);
    url = MimeHeaders_get_parameter(ct, "url", NULL, NULL);
    PR_FREEIF(ct);

    /* the *internal* content-type */
    ct = MimeHeaders_get(bod->hdrs, HEADER_CONTENT_TYPE, true, false);

    uint32_t hlen = ((at ? strlen(at) : 0) + (lexp ? strlen(lexp) : 0) +
                     (size ? strlen(size) : 0) + (perm ? strlen(perm) : 0) +
                     (dir ? strlen(dir) : 0) + (mode ? strlen(mode) : 0) +
                     (name ? strlen(name) : 0) + (site ? strlen(site) : 0) +
                     (svr ? strlen(svr) : 0) + (subj ? strlen(subj) : 0) +
                     (ct ? strlen(ct) : 0) + (url ? strlen(url) : 0) + 100);

    h = (char*)PR_MALLOC(hlen);
    if (!h) {
      status = MIME_OUT_OF_MEMORY;
      goto FAIL;
    }

    /* If there's a URL parameter, remove all whitespace from it.
      (The URL parameter to one of these headers is stored with
       lines broken every 40 characters or less; it's assumed that
       all significant whitespace was URL-hex-encoded, and all the
       rest of it was inserted just to keep the lines short.)
      */
    if (url) {
      char *in, *out;
      for (in = url, out = url; *in; in++)
        if (!IS_SPACE(*in)) *out++ = *in;
      *out = 0;
    }

    hdrs = MimeHeaders_new();
    if (!hdrs) {
      status = MIME_OUT_OF_MEMORY;
      goto FAIL;
    }

#define FROB(STR, VAR)                                   \
  if (VAR) {                                             \
    PL_strncpyz(h, STR ": ", hlen);                      \
    PL_strcatn(h, hlen, VAR);                            \
    PL_strcatn(h, hlen, MSG_LINEBREAK);                  \
    status = MimeHeaders_parse_line(h, strlen(h), hdrs); \
    if (status < 0) goto FAIL;                           \
  }
    FROB("Access-Type", at);
    FROB("URL", url);
    FROB("Site", site);
    FROB("Server", svr);
    FROB("Directory", dir);
    FROB("Name", name);
    FROB("Type", ct);
    FROB("Size", size);
    FROB("Mode", mode);
    FROB("Permission", perm);
    FROB("Expiration", lexp);
    FROB("Subject", subj);
#undef FROB
    PL_strncpyz(h, MSG_LINEBREAK, hlen);
    status = MimeHeaders_parse_line(h, strlen(h), hdrs);
    if (status < 0) goto FAIL;

    lurl = MimeExternalBody_make_url(ct, at, lexp, size, perm, dir, mode, name,
                                     url, site, svr, subj, bod->body);
    if (lurl) {
      lname = MimeGetStringByID(MIME_MSG_LINK_TO_DOCUMENT);
    } else {
      lname = MimeGetStringByID(MIME_MSG_DOCUMENT_INFO);
      all_headers_p = true;
    }

    all_headers_p = true; /* #### just do this all the time? */

    if (bod->body && all_headers_p) {
      char* s = bod->body;
      while (IS_SPACE(*s)) s++;
      if (*s) {
        const char* pre = "<P><PRE>";
        const char* suf = "</PRE>";
        int32_t i;
        // The end condition requires i to be negative, so it's ok to
        // allow the starting value to be negative.
        for (i = strlen(s) - 1; i >= 0 && IS_SPACE(s[i]); i--) s[i] = 0;
        nsCString s2;
        nsAppendEscapedHTML(nsDependentCString(s), s2);
        body = (char*)PR_MALLOC(strlen(pre) + s2.Length() + strlen(suf) + 1);
        if (!body) {
          goto FAIL;
        }
        PL_strcpy(body, pre);
        PL_strcat(body, s2.get());
        PL_strcat(body, suf);
      }
    }

    newopt->fancy_headers_p = true;
    newopt->headers = (all_headers_p ? MimeHeadersAll : MimeHeadersSome);

  FAIL:
    if (hdrs) MimeHeaders_free(hdrs);
    PR_FREEIF(h);
    PR_FREEIF(lname);
    PR_FREEIF(lurl);
    PR_FREEIF(body);
    PR_FREEIF(ct);
    PR_FREEIF(at);
    PR_FREEIF(lexp);
    PR_FREEIF(size);
    PR_FREEIF(perm);
    PR_FREEIF(dir);
    PR_FREEIF(mode);
    PR_FREEIF(name);
    PR_FREEIF(url);
    PR_FREEIF(site);
    PR_FREEIF(svr);
    PR_FREEIF(subj);
  }

#ifdef XP_MACOSX
done:
#endif

  return status;
}

#if 0
#  if defined(DEBUG) && defined(XP_UNIX)
static int
MimeExternalBody_debug_print (MimeObject *obj, PRFileDesc *stream, int32_t depth)
{
  MimeExternalBody *bod = (MimeExternalBody *) obj;
  int i;
  char *ct, *ct2;
  char *addr = mime_part_address(obj);

  if (obj->headers)
  ct = MimeHeaders_get (obj->headers, HEADER_CONTENT_TYPE, false, false);
  if (bod->hdrs)
  ct2 = MimeHeaders_get (bod->hdrs, HEADER_CONTENT_TYPE, false, false);

  for (i=0; i < depth; i++)
  PR_Write(stream, "  ", 2);
/***
  fprintf(stream,
      "<%s %s\n"
      "\tcontent-type: %s\n"
      "\tcontent-type: %s\n"
      "\tBody:%s\n\t0x%08X>\n\n",
      obj->clazz->class_name,
      addr ? addr : "???",
      ct ? ct : "<none>",
      ct2 ? ct2 : "<none>",
      bod->body ? bod->body : "<none>",
      (uint32_t) obj);
***/
  PR_FREEIF(addr);
  PR_FREEIF(ct);
  PR_FREEIF(ct2);
  return 0;
}
#  endif
#endif /* 0 */

static bool MimeExternalBody_displayable_inline_p(MimeObjectClass* clazz,
                                                  MimeHeaders* hdrs) {
  char* ct = MimeHeaders_get(hdrs, HEADER_CONTENT_TYPE, false, false);
  char* at = MimeHeaders_get_parameter(ct, "access-type", NULL, NULL);
  bool inline_p = false;

  if (!at)
    ;
  else if (!PL_strcasecmp(at, "ftp") || !PL_strcasecmp(at, "anon-ftp") ||
           !PL_strcasecmp(at, "local-file") ||
           !PL_strcasecmp(at, "mail-server") || !PL_strcasecmp(at, "url"))
    inline_p = true;
#ifdef XP_UNIX
  else if (!PL_strcasecmp(at, "afs")) /* only if there is a /afs/ directory */
  {
    nsCOMPtr<nsIFile> fs = do_CreateInstance(NS_LOCAL_FILE_CONTRACTID);
    bool exists = false;
    if (fs) {
      fs->InitWithNativePath("/afs/."_ns);
      fs->Exists(&exists);
    }
    if (!exists) return 0;

    inline_p = true;
  }
#endif /* XP_UNIX */

  PR_FREEIF(ct);
  PR_FREEIF(at);
  return inline_p;
}