/* Copyright (C) 2004-2005 SKYRIX Software AG This file is part of OpenGroupware.org. OGo 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. OGo 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 OGo; 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 #import #import #import #import // cyclic #import "WOContext+UIxMailer.h" @interface UIxMailView : UIxComponent { id currentAddress; } @end @implementation UIxMailView static NSString *mailETag = nil; + (void) initialize { mailETag = [[NSString alloc] initWithFormat:@"\"imap4url_%d_%d_%03d\"", UIX_MAILER_MAJOR_VERSION, UIX_MAILER_MINOR_VERSION, UIX_MAILER_SUBMINOR_VERSION]; NSLog(@"Note: using constant etag for mail viewer: '%@'", mailETag); } /* accessors */ - (void) setCurrentAddress: (id) _addr { currentAddress = _addr; } - (id) currentAddress { return currentAddress; } - (NSString *) messageSubject { NSString *subject; subject = [[self clientObject] decodedSubject]; if (![subject length]) subject = [self labelForKey: @"Untitled"]; return subject; } - (NSString *) panelTitle { return [NSString stringWithFormat: @"%@: %@", [self labelForKey: @"View Mail"], [self messageSubject]]; } /* links (DUP to UIxMailPartViewer!) */ - (NSString *) linkToEnvelopeAddress: (NGImap4EnvelopeAddress *) _address { // TODO: make some web-link, eg open a new compose panel? return [NSString stringWithFormat: @"mailto: %@", [_address baseEMail]]; } - (NSString *) currentAddressLink { return [self linkToEnvelopeAddress:[self currentAddress]]; } /* fetching */ - (id) message { return [[self clientObject] fetchCoreInfos]; } - (BOOL) hasCC { return [[[self clientObject] ccEnvelopeAddresses] count] > 0 ? YES : NO; } - (BOOL) hasReplyTo { return [[[self clientObject] replyToEnvelopeAddresses] count] > 0 ? YES : NO; } /* viewers */ - (id) contentViewerComponent { // TODO: I would prefer to flatten the body structure prior rendering, // using some delegate to decide which parts to select for alternative. id info; info = [[self clientObject] bodyStructure]; return [[context mailRenderingContext] viewerForBodyInfo:info]; } /* actions */ - (id) defaultAction { WOResponse *response; NSString *s; /* check etag to see whether we really must rerender */ /* Note: There is one thing which *can* change for an existing message, those are the IMAP4 flags (and annotations, which we do not use). Since we don't render the flags, it should be OK, if this changes we must embed the flagging into the etag. */ s = [[context request] headerForKey: @"if-none-match"]; if (s) { if ([s rangeOfString:mailETag].length > 0) /* not perfectly correct */ { /* client already has the proper entity */ // [self logWithFormat:@"MATCH: %@ (tag %@)", s, mailETag]; if (![[self clientObject] doesMailExist]) { return [NSException exceptionWithHTTPStatus:404 /* Not Found */ reason:@"message got deleted"]; } response = [context response]; [response setStatus: 304 /* Not Modified */]; return response; } } if (![self message]) // TODO: redirect to proper error return [NSException exceptionWithHTTPStatus:404 /* Not Found */ reason:@"did not find specified message!"]; return self; } - (BOOL) isInlineViewer { return NO; } - (BOOL) mailIsDraft { return [[self clientObject] isInDraftsFolder]; } - (id) redirectToParentFolder { id url; url = [[[self clientObject] container] baseURLInContext: context]; return [self redirectToLocation: url]; } /* generating response */ - (void) appendToResponse: (WOResponse *) _response inContext: (WOContext *) _ctx { UIxMailRenderingContext *mctx; WORequest *request; request = [_ctx request]; [[_ctx response] setHeader:mailETag forKey:@"etag"]; mctx = [[UIxMailRenderingContext alloc] initWithViewer: self context: _ctx]; [_ctx pushMailRenderingContext: mctx]; [mctx release]; [super appendToResponse: _response inContext: _ctx]; [[_ctx popMailRenderingContext] reset]; } @end /* UIxMailView */