]> err.no Git - scalable-opengroupware.org/blob - SoObjects/Contacts/SOGoContactGCSEntry.m
Install libs to /usr/lib
[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   NSString *content;
52
53   if (!card)
54     {
55       content = [record objectForKey: @"c_content"];
56       if ([[content uppercaseString] hasPrefix: @"BEGIN:VCARD"])
57         card = [NGVCard parseSingleFromSource: content];
58       else
59         card = [NGVCard cardWithUid: [self nameInContainer]];
60       [card retain];
61     }
62
63   return card;
64 }
65
66 /* DAV */
67
68 - (NSString *) davContentType
69 {
70   return @"text/x-vcard";
71 }
72
73 /* specialized actions */
74
75 - (void) save
76 {
77   NGVCard *vcard;
78
79   vcard = [self vCard];
80
81   [self saveContentString: [vcard versitString]];
82 }
83
84 /* message type */
85
86 - (NSString *) outlookMessageClass
87 {
88   return @"IPM.Contact";
89 }
90
91 @end /* SOGoContactGCSEntry */