sogo/SOPE/NGCards/iCalCalendar.m
Francis Lachapelle 3f6bca5d1e See ChangeLogs.
Monotone-Parent: 4ada003303186187c511ea7faea08604da6b3db4
Monotone-Revision: 1e456d9a08ec90bd4e7fad4909eecfaa354aed5a

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-07-08T15:48:55
Monotone-Branch: ca.inverse.sogo
2011-07-08 15:48:55 +00:00

221 lines
4.7 KiB
Objective-C

/*
Copyright (C) 2000-2005 SKYRIX Software AG
This file is part of SOPE.
SOPE 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.
SOPE 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 SOPE; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#import <Foundation/NSArray.h>
#import <Foundation/NSString.h>
#import "iCalEvent.h"
#import "iCalToDo.h"
#import "iCalJournal.h"
#import "iCalFreeBusy.h"
#import "iCalEntityObject.h"
#import "iCalTimeZone.h"
#import "iCalCalendar.h"
@interface iCalCalendar (Privates)
- (void) addToEvents: (iCalEvent *) _event;
- (void) addToTimezones: (iCalTimeZone *) _tz;
- (void) addToTodos: (iCalToDo *) _todo;
- (void) addToJournals: (iCalJournal *) _obj;
- (void) addToFreeBusys: (iCalFreeBusy *) _obj;
@end
@implementation iCalCalendar
/* class mapping */
- (Class) classForTag: (NSString *) classTag
{
Class tagClass;
tagClass = Nil;
if ([classTag isEqualToString: @"VEVENT"])
tagClass = [iCalEvent class];
else if ([classTag isEqualToString: @"VTODO"])
tagClass = [iCalToDo class];
else if ([classTag isEqualToString: @"VJOURNAL"])
tagClass = [iCalJournal class];
else if ([classTag isEqualToString: @"VFREEBUSY"])
tagClass = [iCalFreeBusy class];
else if ([classTag isEqualToString: @"VTIMEZONE"])
tagClass = [iCalTimeZone class];
else if ([classTag isEqualToString: @"METHOD"]
|| [classTag isEqualToString: @"PRODID"]
|| [classTag isEqualToString: @"VERSION"])
tagClass = [CardElement class];
else
tagClass = [super classForTag: classTag];
return tagClass;
}
/* accessors */
- (void) setCalscale: (NSString *) _calscale
{
[[self uniqueChildWithTag: @"calscale"] setValue: 0 to: _calscale];
}
- (NSString *) calscale
{
return [[self uniqueChildWithTag: @"calscale"] value: 0];
}
- (void) setVersion: (NSString *) _version
{
[[self uniqueChildWithTag: @"version"] setValue: 0 to: _version];
}
- (NSString *) version
{
return [[self uniqueChildWithTag: @"version"] value: 0];
}
- (void) setProdID: (NSString *) _value
{
[[self uniqueChildWithTag: @"prodid"] setValue: 0 to: _value];
}
- (NSString *) prodId
{
return [[self uniqueChildWithTag: @"prodid"] value: 0];
}
- (void) setMethod: (NSString *) _value
{
[[self uniqueChildWithTag: @"method"] setValue: 0
to: [_value uppercaseString]];
}
- (NSString *) method
{
return [[self uniqueChildWithTag: @"method"] value: 0];
}
- (void) addToEvents: (iCalEvent *) _event
{
[self addChild: _event];
}
- (NSArray *) events
{
return [self childrenWithTag: @"vevent"];
}
- (void) addToTimezones: (iCalTimeZone *) _tz
{
[self addChild: _tz];
}
- (NSArray *) timezones
{
return [self childrenWithTag: @"vtimezone"];
}
- (void) addToTodos: (iCalToDo *) _todo
{
[self addChild: _todo];
}
- (NSArray *) todos
{
return [self childrenWithTag: @"vtodo"];
}
- (void) addToJournals: (iCalJournal *) _todo
{
[self addChild: _todo];
}
- (NSArray *) journals
{
return [self childrenWithTag: @"vjournal"];
}
- (void) addToFreeBusys: (iCalFreeBusy *) _fb
{
[self addChild: _fb];
}
- (NSArray *) freeBusys
{
return [self childrenWithTag: @"vfreebusy"];
}
- (BOOL) addTimeZone: (iCalTimeZone *) iTZ
{
iCalTimeZone *possibleTz;
possibleTz = [self timeZoneWithId: [iTZ tzId]];
if (!possibleTz)
[self addChild: iTZ];
return (!possibleTz);
}
- (iCalTimeZone *) timeZoneWithId: (NSString *) tzId
{
NSArray *matchingTimeZones;
iCalTimeZone *timeZone;
matchingTimeZones = [self childrenGroupWithTag: @"vtimezone"
withChild: @"tzid"
havingSimpleValue: tzId];
if ([matchingTimeZones count])
timeZone = [matchingTimeZones objectAtIndex: 0];
else
timeZone = nil;
return timeZone;
}
/* collection */
#warning should we return timezones too?
- (NSArray *) allObjects
{
NSMutableArray *ma;
ma = [NSMutableArray array];
[ma addObjectsFromArray: [self events]];
[ma addObjectsFromArray: [self todos]];
[ma addObjectsFromArray: [self journals]];
[ma addObjectsFromArray: [self freeBusys]];
return ma;
}
- (NSString *) versitString
{
[self setVersion: @"2.0"];
return [super versitString];
}
/* ical typing */
- (NSString *) entityName
{
return @"vcalendar";
}
@end /* iCalCalendar */