]> err.no Git - scalable-opengroupware.org/blob - SoObjects/Contacts/NGLdapEntry+Contact.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1040 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / SoObjects / Contacts / NGLdapEntry+Contact.m
1 /* NGLdapEntry+Contact.m - this file is part of SOGo
2  *
3  * Copyright (C) 2006 Inverse groupe conseil
4  *
5  * Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
6  *
7  * This file is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This file is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #import <Foundation/NSArray.h>
24 #import <Foundation/NSDictionary.h>
25 #import <Foundation/NSString.h>
26
27 #import <NGLdap/NGLdapAttribute.h>
28
29 #import "NGLdapEntry+Contact.h"
30
31 @implementation NGLdapEntry (SOGoContactExtension)
32
33 - (NSString *) singleAttributeWithName: (NSString *) key
34 {
35   return [[self attributeWithName: key]
36            stringValueAtIndex: 0];
37 }
38
39 - (NSDictionary *) asDictionaryWithAttributeNames: (NSArray *) attributeNames
40                                           withUID: (NSString *) uid
41                                          andCName: (NSString *) cName
42 {
43   NSMutableDictionary *valuesDict;
44   NSEnumerator *attrEnum;
45   NSString *attribute, *value;
46
47   if (!attributeNames)
48     attributeNames = [self attributeNames];
49
50   valuesDict = [NSMutableDictionary dictionaryWithCapacity: [attributeNames count]];
51   attrEnum = [attributeNames objectEnumerator];
52   attribute = [attrEnum nextObject];
53   while (attribute)
54     {
55       [valuesDict setObject: [self singleAttributeWithName: attribute]
56                   forKey: attribute];
57       attribute = [attrEnum nextObject];
58     }
59   if (cName)
60     {
61       value = [self singleAttributeWithName: cName];
62       if (!value)
63         value = @"";
64       NSLog (@"value for '%@' = '%@'", cName, value);
65       [valuesDict setObject: value
66                   forKey: @"c_name"];
67     }
68   if (uid)
69     {
70       value = [self singleAttributeWithName: uid];
71       if (!value)
72         value = @"";
73       NSLog (@"value for '%@' = '%@'", uid, value);
74       [valuesDict setObject: value
75                   forKey: @"c_uid"];
76     }
77
78   return valuesDict;
79 }
80
81 @end