/* Copyright (C) 2007-2015 Inverse inc. Copyright (C) 2004-2005 SKYRIX Software AG This file is part of SOGo. SOGo is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. SOGo is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with SOGo; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #import #import #import #import #import #import #import #import #import #import #import "MailerUI/WOContext+UIxMailer.h" #import "UIxMailRenderingContext.h" #import "UIxMailSizeFormatter.h" #import "UIxMailPartViewer.h" @implementation UIxMailPartViewer - (void) dealloc { [flatContent release]; [bodyInfo release]; [partPath release]; [super dealloc]; } /* caches */ - (void) resetPathCaches { /* this is called when -setPartPath: is called */ [flatContent release]; flatContent = nil; } - (void) resetBodyInfoCaches { } /* notifications */ - (void) sleep { [self resetPathCaches]; [self resetBodyInfoCaches]; [partPath release]; [bodyInfo release]; partPath = nil; bodyInfo = nil; [super sleep]; } /* accessors */ - (void) setPartPath: (NSArray *) _path { if ([_path isEqual: partPath]) return; ASSIGN(partPath, _path); [self resetPathCaches]; } - (NSArray *) partPath { return partPath; } - (void) setBodyInfo: (id) _info { ASSIGN(bodyInfo, _info); } - (id) bodyInfo { return bodyInfo; } - (NSData *) flatContent { if (flatContent != nil) return [flatContent isNotNull] ? (id)flatContent : nil; flatContent = [[[context mailRenderingContext] flatContentForPartPath: partPath] retain]; return flatContent; } - (NSData *) decodedFlatContent { NSString *enc; enc = [[bodyInfo objectForKey:@"encoding"] lowercaseString]; return [[self flatContent] bodyDataFromEncoding: enc]; } - (SOGoMailBodyPart *) clientPart { id currentObject; NSString *currentPart; NSEnumerator *parts; currentObject = [self clientObject]; parts = [partPath objectEnumerator]; while ((currentPart = [parts nextObject])) currentObject = [currentObject lookupName: currentPart inContext: context acquire: NO]; return currentObject; } - (id) renderedPart { NSString *type; type = [NSString stringWithFormat: @"%@/%@", [bodyInfo objectForKey: @"type"], [bodyInfo objectForKey: @"subtype"]]; return [NSDictionary dictionaryWithObjectsAndKeys: [self className], @"type", type, @"contentType", [[self generateResponse] contentAsString], @"content", nil]; } - (NSData *) content { return [[self clientObject] fetchBLOB]; } - (NSString *) flatContentAsString { /* Note: we even have the line count in the body-info! */ NSString *charset, *s; NSData *content; content = [self decodedFlatContent]; if (content) { charset = [[bodyInfo objectForKey:@"parameterList"] objectForKey: @"charset"]; s = [content bodyStringFromCharset: charset]; } else { [self errorWithFormat:@"got no text content: %@", [partPath componentsJoinedByString:@"."]]; s = nil; } return s; } /* path extension */ - (NSString *) pathExtensionForType: (NSString *) _mt subtype: (NSString *) _st { // TODO: support /etc/mime.types if (![_mt isNotNull] || ![_st isNotNull]) return nil; if ([_mt length] == 0) return nil; if ([_st length] == 0) return nil; _mt = [_mt lowercaseString]; _st = [_st lowercaseString]; if ([_mt isEqualToString:@"image"]) { if ([_st isEqualToString:@"gif"]) return @"gif"; if ([_st isEqualToString:@"jpeg"]) return @"jpg"; if ([_st isEqualToString:@"png"]) return @"png"; } else if ([_mt isEqualToString:@"text"]) { if ([_st isEqualToString:@"plain"]) return @"txt"; if ([_st isEqualToString:@"xml"]) return @"xml"; if ([_st isEqualToString:@"calendar"]) return @"ics"; if ([_st isEqualToString:@"x-vcard"]) return @"vcf"; } else if ([_mt isEqualToString:@"message"]) { if ([_st isEqualToString:@"rfc822"]) return @"mail"; } else if ([_mt isEqualToString:@"application"]) { if ([_st isEqualToString:@"pdf"]) return @"pdf"; } return nil; } - (NSString *) preferredPathExtension { return [self pathExtensionForType: [bodyInfo valueForKey:@"type"] subtype: [bodyInfo valueForKey:@"subtype"]]; } - (NSString *) filename { return [bodyInfo filename]; } - (NSString *) filenameForDisplay { NSString *s; if ((s = [self filename]) != nil) return s; s = [partPath componentsJoinedByString:@"-"]; return ([s length] > 0) ? (id)[@"untitled-" stringByAppendingString:s] : (id)@"untitled"; } - (NSFormatter *) sizeFormatter { return [UIxMailSizeFormatter sharedMailSizeFormatter]; } /* URL generation */ - (NSString *) pathToAttachmentObject { /* this points to the SoObject representing the part, no modifications */ NSString *url, *n; /* path to mail controller object */ url = [[self clientObject] baseURLInContext:context]; if (![url hasSuffix: @"/"]) url = [url stringByAppendingString: @"/"]; /* if we get a message with an image-* or application-* Content-Type, we must generate a 'fake' part since our decoded mail won't have any. Also see SOGoMailBodyPart: -fetchBLOB and SOGoMailObject: -lookupImap4BodyPartKey: inContext for other workarounds */ if (!partPath || [partPath count] == 0) partPath = [NSArray arrayWithObject: @"0"]; /* mail relative path to body-part eg this was nil for a draft containing an HTML message */ if ([(n = [partPath componentsJoinedByString:@"/"]) isNotNull]) url = [url stringByAppendingString:n]; return url; } - (NSString *) _filenameForAttachment: (SOGoMailBodyPart *) bodyPart { NSMutableString *filename; NSString *extension; filename = [NSMutableString stringWithString: [self filename]]; if ([filename length]) // We replace any slash by a dash since Apache won't allow encoded slashes by default. // See http://httpd.apache.org/docs/2.2/mod/core.html#allowencodedslashes filename = (NSMutableString *)[filename stringByReplacingString: @"/" withString: @"-"]; else [filename appendFormat: @"%@-%@", [self labelForKey: @"Untitled"], [bodyPart nameInContainer]]; if (![[filename pathExtension] length]) { extension = [self preferredPathExtension]; if (extension) [filename appendFormat: @".%@", extension]; } return [filename stringByEscapingURL]; } - (NSString *) _pathForAttachmentOrDownload: (BOOL) forDownload { NSMutableString *url; NSString *s, *attachment; SOGoMailBodyPart *bodyPart; bodyPart = [self clientPart]; s = [bodyPart baseURLInContext: [self context]]; url = [NSMutableString stringWithString: s]; if (![url hasSuffix: @"/"]) [url appendString: @"/"]; if ([bodyPart isKindOfClass: [SOGoMailBodyPart class]]) attachment = [self _filenameForAttachment: bodyPart]; else attachment = @"0"; if (forDownload) [url appendString: @"asAttachment/"]; [url appendString: attachment]; return url; } - (NSString *) pathToAttachmentFromMessage { SOGoMailBodyPart *bodyPart; bodyPart = [self clientPart]; if ([bodyPart isKindOfClass: [SOGoMailBodyPart class]]) return [NSString stringWithFormat: @"%@/%@", [bodyPart nameInContainer], [self _filenameForAttachment: bodyPart]]; return @"0"; } - (NSString *) pathToAttachment { return [self _pathForAttachmentOrDownload: NO]; } - (NSString *) pathForDownload { return [self _pathForAttachmentOrDownload: YES]; } - (NSString *) mimeImageURL { NSString *mimeImageFile, *mimeImageUrl; mimeImageFile = [NSString stringWithFormat: @"mime-%@-%@.png", [bodyInfo objectForKey: @"type"], [bodyInfo objectForKey: @"subtype"]]; mimeImageUrl = [self urlForResourceFilename: mimeImageFile]; if ([mimeImageUrl length] == 0) { mimeImageFile = [NSString stringWithFormat: @"mime-%@.png", [bodyInfo objectForKey: @"type"]]; mimeImageUrl = [self urlForResourceFilename: mimeImageFile]; } if ([mimeImageUrl length] == 0) { mimeImageUrl = [self urlForResourceFilename: @"mime-unknown.png"]; } return mimeImageUrl; } @end /* UIxMailPartViewer */