]> err.no Git - scalable-opengroupware.org/blob - SOGo/SoObjects/Contacts/SOGoContactObject.m
05f05fb681e97f52cd9dbb0b3d0e7c9f559ea95d
[scalable-opengroupware.org] / SOGo / SoObjects / Contacts / SOGoContactObject.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 #include "SOGoContactObject.h"
23 #include <NGiCal/NGVCard.h>
24 #include "common.h"
25
26 @implementation SOGoContactObject
27
28 - (void)dealloc {
29   [self->record release];
30   [super dealloc];
31 }
32
33 /* content */
34
35 - (id)record {
36   if (self->record == nil) {
37     NSString *s;
38     
39     s = [self contentAsString];
40     
41     if ([s hasPrefix:@"BEGIN:VCARD"]) {
42       NSArray *v;
43       
44       v = [NGVCard parseVCardsFromSource:s];
45       if ([v count] == 0) {
46         [self errorWithFormat:@"Could not parse vCards from content!"];
47         return nil;
48       }
49       
50       self->record = [[v objectAtIndex:0] retain];
51     }
52     else
53       self->record = [[s propertyList] copy];
54     
55     if (self->record == nil)
56       self->record = [[NSNull null] retain];
57   }
58   return [self->record isNotNull] ? self->record : nil;
59 }
60
61 - (BOOL)isVCardRecord {
62   return [[self record] isKindOfClass:[NGVCard class]];
63 }
64
65 - (NGVCard *)vCard {
66   return [[self record] isKindOfClass:[NGVCard class]]
67     ? [self record]
68     : nil;
69 }
70
71 /* key value coding */
72
73 - (id)valueForKey:(NSString *)_key {
74   id value;
75   
76   if ((value = [[self record] valueForKey:_key]) != nil)
77     return value;
78
79   return [super valueForKey:_key];
80 }
81
82 /* DAV */
83
84 - (NSString *)davDisplayName {
85   NSString *n;
86   
87   if ((n = [self valueForKey:@"cn"]))
88     return n;
89   
90   return [self nameInContainer];
91 }
92
93 /* specialized actions */
94
95 - (NSException *)saveRecord:(id)_record {
96   if ([_record isKindOfClass:[NGVCard class]]) {
97     // TODO: implement a vCard generator
98     return [NSException exceptionWithHTTPStatus:501 /* Not Implemented */
99                         reason:@"Saving vCards is not supported yet."];
100   }
101   
102   return [self saveContentString:[_record description]];
103 }
104
105 - (NSException *)patchField:(NSString *)_fname value:(NSString *)_value
106   inContext:(id)_ctx
107 {
108   NSMutableDictionary *md;
109
110   if ([self isVCardRecord]) {
111     return [NSException exceptionWithHTTPStatus:501 /* Not Implemented */
112                         reason:@"Changing vCards is not supported yet."];
113   }
114   
115   if ([_fname length] == 0) {
116     return [NSException exceptionWithHTTPStatus:400 /* Bad Request */
117                         reason:@"missing form field name"];
118   }
119   
120   if ((md = [[[self record] mutableCopy] autorelease]) == nil) {
121     return [NSException exceptionWithHTTPStatus:404 /* Not Found */
122                         reason:@"did not find contact record"];
123   }
124   
125   [md setObject:[_value isNotNull] ? _value : @"" forKey:_fname];
126   
127   return [self saveRecord:md];
128 }
129
130 - (id)patchOneFieldAction:(id)_ctx {
131   /* 
132      expects: fieldname\nfieldvalue
133      
134      TODO: should be extended to properly parse XML.
135   */
136   NSArray *fields;
137   NSException *error;
138   
139   fields = [[[(WOContext *)_ctx request] contentAsString] 
140              componentsSeparatedByString:@"\n"];
141
142   if ([fields count] < 2) {
143     return [NSException exceptionWithHTTPStatus:400 /* Bad Request */
144                         reason:@"missing form fields"];
145   }
146   
147   error = [self patchField:[fields objectAtIndex:0] 
148                 value:[fields objectAtIndex:1]
149                 inContext:_ctx];
150   if (error != nil)
151     return error;
152   
153   return [(WOContext *)_ctx response];
154 }
155
156 /* message type */
157
158 - (NSString *)outlookMessageClass {
159   return @"IPM.Contact";
160 }
161
162 @end /* SOGoContactObject */