]> err.no Git - scalable-opengroupware.org/blob - SoObjects/Contacts/SOGoContactGCSEntry.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1245 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / SoObjects / Contacts / SOGoContactGCSEntry.m
1 /*
2   Copyright (C) 2004-2005 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
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
9   later version.
10
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.
15
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
19   02111-1307, USA.
20 */
21
22 #import <Foundation/NSArray.h>
23 #import <Foundation/NSString.h>
24
25 #import <NGCards/NGVCard.h>
26
27 #import "SOGoContactGCSEntry.h"
28
29 @implementation SOGoContactGCSEntry
30
31 - (id) init
32 {
33   if ((self = [super init]))
34     {
35       card = nil;
36     }
37
38   return self;
39 }
40
41 - (void) dealloc
42 {
43   [card release];
44   [super dealloc];
45 }
46
47 /* content */
48
49 - (NGVCard *) vCard
50 {
51   if (!card)
52     {
53       if ([[content uppercaseString] hasPrefix: @"BEGIN:VCARD"])
54         card = [NGVCard parseSingleFromSource: content];
55       else
56         card = [NGVCard cardWithUid: [self nameInContainer]];
57       [card retain];
58     }
59
60   return card;
61 }
62
63 /* DAV */
64
65 - (NSString *) davContentType
66 {
67   return @"text/x-vcard";
68 }
69
70 /* specialized actions */
71
72 - (void) save
73 {
74   NGVCard *vcard;
75
76   vcard = [self vCard];
77
78   [self saveContentString: [vcard versitString]];
79 }
80
81 /* message type */
82
83 - (NSString *) outlookMessageClass
84 {
85   return @"IPM.Contact";
86 }
87
88 @end /* SOGoContactGCSEntry */