/* SOGoAppointmentObject+MAPIStore.m - this file is part of SOGo * * Copyright (C) 2010 Inverse inc. * * Author: Wolfgang Sourdeau * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3, or (at your option) * any later version. * * This file 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #include #include #import #import #import #import #import #import #import #import #import #import #import "MAPIStoreTypes.h" #import "SOGoAppointmentObject+MAPIStore.h" @implementation SOGoAppointmentObject (MAPIStoreMessage) /* TODO: merge with tasks */ - (void) setMAPIProperties: (NSDictionary *) properties { iCalCalendar *vCalendar; iCalEvent *vEvent; id value; SOGoUserDefaults *ud; NSCalendarDate *now; iCalTimeZone *tz; iCalDateTime *start, *end; [self logWithFormat: @"event props:"]; MAPIStoreDumpMessageProperties (properties); vEvent = [self component: YES secure: NO]; vCalendar = [vEvent parent]; [vCalendar setProdID: @"-//Inverse inc.//OpenChange+SOGo//EN"]; // summary value = [properties objectForKey: MAPIPropertyKey (PR_NORMALIZED_SUBJECT_UNICODE)]; if (value) [vEvent setSummary: value]; // Location value = [properties objectForKey: MAPIPropertyKey (PidLidLocation)]; if (value) [vEvent setLocation: value]; ud = [[SOGoUser userWithLogin: owner] userDefaults]; tz = [iCalTimeZone timeZoneForName: [ud timeZoneName]]; [vCalendar addTimeZone: tz]; // start value = [properties objectForKey: MAPIPropertyKey (PR_START_DATE)]; if (!value) value = [properties objectForKey: MAPIPropertyKey (PidLidAppointmentStartWhole)]; if (value) { start = (iCalDateTime *) [vEvent uniqueChildWithTag: @"dtstart"]; [start setTimeZone: tz]; [start setDateTime: value]; } // end value = [properties objectForKey: MAPIPropertyKey (PR_END_DATE)]; if (!value) value = [properties objectForKey: MAPIPropertyKey (PidLidAppointmentEndWhole)]; if (value) { end = (iCalDateTime *) [vEvent uniqueChildWithTag: @"dtend"]; [end setTimeZone: tz]; [end setDateTime: value]; } now = [NSCalendarDate date]; if ([self isNew]) { [vEvent setCreated: now]; } [vEvent setTimeStampAsDate: now]; // MAPIStoreDumpMessageProperties (properties); ASSIGN (content, [vCalendar versitString]); } @end