2 Copyright (C) 2004 SKYRIX Software AG
4 This file is part of OpenGroupware.org.
6 OGo is free software; you can redistribute it and/or modify it under
7 the terms of the GNU Lesser General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
11 OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
14 License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with OGo; see the file COPYING. If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 #include <NGObjWeb/WODirectAction.h>
24 @interface SOGoICalFileFetch : WODirectAction
30 #include "SOGoICalHTTPHandler.h"
31 #include <SoObjects/Appointments/SOGoAppointmentFolder.h>
32 #include <SOGo/SOGoAppointment.h>
35 @implementation SOGoICalFileFetch
40 return [[super clientObject] aptFolderInContext:[self context]];
46 NSAutoreleasePool *pool;
48 SOGoAppointment *event;
52 response = [[self context] response];
53 [response setHeader:@"text/plain" forKey:@"content-type"];
55 pool = [[NSAutoreleasePool alloc] init];
59 [response appendContentString:@"BEGIN:VCALENDAR\r\nMETHOD:REQUEST\r\n"];
60 [response appendContentString:@"PRODID:SOGo/0.9\r\n"];
61 [response appendContentString:@"VERSION:2.0\r\n"];
65 events = [[self clientObject] fetchAllSOGoAppointments];
66 [self debugWithFormat:@"generate %d appointments ...", [events count]];
67 e = [events objectEnumerator];
68 while ((event = [e nextObject]) != nil) {
69 [response appendContentString:[event vEventString]];
73 [response appendContentString:@"END:VCALENDAR\r\n"];
79 @end /* SOGoICalFileFetch */