/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the "GPL"), * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "nsCOMPtr.h" #include "mimemapl.h" #include "prmem.h" #include "plstr.h" #include "nsMimeStringResources.h" #include "mimemoz2.h" #include "nsMimeTypes.h" #include "nsCRT.h" #define MIME_SUPERCLASS mimeMultipartClass MimeDefClass(MimeMultipartAppleDouble, MimeMultipartAppleDoubleClass, mimeMultipartAppleDoubleClass, &MIME_SUPERCLASS); static int MimeMultipartAppleDouble_parse_begin (MimeObject *); static PRBool MimeMultipartAppleDouble_output_child_p(MimeObject *, MimeObject *); static int MimeMultipartAppleDoubleClassInitialize(MimeMultipartAppleDoubleClass *clazz) { MimeObjectClass *oclass = (MimeObjectClass *) clazz; MimeMultipartClass *mclass = (MimeMultipartClass *) clazz; NS_ASSERTION(!oclass->class_initialized, "mime class not initialized"); oclass->parse_begin = MimeMultipartAppleDouble_parse_begin; mclass->output_child_p = MimeMultipartAppleDouble_output_child_p; return 0; } static int MimeMultipartAppleDouble_parse_begin (MimeObject *obj) { /* #### This method is identical to MimeExternalObject_parse_begin which kinda s#$%s... */ int status; status = ((MimeObjectClass*)&MIME_SUPERCLASS)->parse_begin(obj); if (status < 0) return status; /* If we're writing this object, and we're doing it in raw form, then now is the time to inform the backend what the type of this data is. */ if (obj->output_p && obj->options && !obj->options->write_html_p && !obj->options->state->first_data_written_p) { status = MimeObject_output_init(obj, 0); if (status < 0) return status; NS_ASSERTION(obj->options->state->first_data_written_p, "first data not written"); } #if defined(XP_MAC) || defined(XP_MACOSX) if (obj->options && obj->options->state) { // obj->options->state->separator_suppressed_p = PR_TRUE; goto done; } /* * It would be nice to not showing the resource fork links * if we are displaying inline. But, there is no way we could * know ahead of time that we could display the data fork and * the data fork is always hidden on MAC platform. */ #endif /* If we're writing this object as HTML, then emit a link for the multipart/appledouble part (both links) that looks just like the links that MimeExternalObject emits for external leaf parts. */ if (obj->options && obj->output_p && obj->options->write_html_p && obj->options->output_fn) { char *id = 0; char *id_url = 0; char *id_imap = 0; id = mime_part_address (obj); if (! id) return MIME_OUT_OF_MEMORY; if (obj->options->missing_parts) id_imap = mime_imap_part_address (obj); if (obj->options && obj->options->url) { const char *url = obj->options->url; if (id_imap && id) { /* if this is an IMAP part. */ id_url = mime_set_url_imap_part(url, id_imap, id); } else { /* This is just a normal MIME part as usual. */ id_url = mime_set_url_part(url, id, PR_TRUE); } if (!id_url) { PR_Free(id); return MIME_OUT_OF_MEMORY; } } /**********************8 RICHIE SHERRY if (!nsCRT::strcmp (id, "0")) { PR_Free(id); id = MimeGetStringByID(MIME_MSG_ATTACHMENT); } else { const char *p = "Part "; char *s = (char *)PR_MALLOC(nsCRT::strlen(p) + nsCRT::strlen(id) + 1); if (!s) { PR_Free(id); PR_Free(id_url); return MIME_OUT_OF_MEMORY; } PL_strcpy(s, p); PL_strcat(s, id); PR_Free(id); id = s; } if (all_headers_p && // Don't bother showing all headers on this part if it's the only // part in the message: in that case, we've already shown these // headers. obj->options->state && obj->options->state->root == obj->parent) all_headers_p = PR_FALSE; newopt.fancy_headers_p = PR_TRUE; newopt.headers = (all_headers_p ? MimeHeadersAll : MimeHeadersSome); // RICHIE SHERRY GOTTA STILL DO THIS FOR QUOTING! status = MimeHeaders_write_attachment_box (obj->headers, &newopt, obj->content_type, obj->encoding, id_name? id_name : id, id_url, 0 // *********************************************************************************/ // FAIL: PR_FREEIF(id); PR_FREEIF(id_url); PR_FREEIF(id_imap); if (status < 0) return status; } #if defined(XP_MAC) || defined(XP_MACOSX) done: #endif return 0; } static PRBool MimeMultipartAppleDouble_output_child_p(MimeObject *obj, MimeObject *child) { MimeContainer *cont = (MimeContainer *) obj; /* If this is the first child, and it's an application/applefile, then don't emit a link for it. (There *should* be only two children, and the first one should always be an application/applefile.) */ if (cont->nchildren >= 1 && cont->children[0] == child && child->content_type && !nsCRT::strcasecmp(child->content_type, APPLICATION_APPLEFILE)) { #if defined(XP_MAC) || defined(XP_MACOSX) if (obj->output_p && obj->options && obj->options->write_html_p) //output HTML return PR_FALSE; #else /* if we are not on a Macintosh, don't emitte the resources fork at all. */ return PR_FALSE; #endif } return PR_TRUE; }