sogo/SoObjects/Contacts/NGLdapEntry+Contact.m
Wolfgang Sourdeau 9709e144bc Monotone-Parent: a8e6d3c082060d0b8f4e1c547734baf974d5ee7c
Monotone-Revision: 5cf7ca16573b57f14380a1da5611560a68f5fd45

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-08-14T20:29:14
Monotone-Branch: ca.inverse.sogo
2006-08-14 20:29:14 +00:00

85 lines
2.5 KiB
Objective-C

/* NGLdapEntry+Contact.m - this file is part of SOGo
*
* Copyright (C) 2006 Inverse groupe conseil
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
* 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 2, 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.
*/
#import <Foundation/NSArray.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSString.h>
#import <NGLdap/NGLdapAttribute.h>
#import "NGLdapEntry+Contact.h"
@implementation NGLdapEntry (SOGoContactExtension)
- (NSString *) singleAttributeWithName: (NSString *) key
{
return [[self attributeWithName: key]
stringValueAtIndex: 0];
}
- (NSDictionary *) asDictionaryWithAttributeNames: (NSArray *) attributeNames
withUID: (NSString *) uid
andCName: (NSString *) cName
{
NSMutableDictionary *valuesDict;
NSEnumerator *attrEnum;
NSString *attribute, *value;
if (!attributeNames)
attributeNames = [self attributeNames];
valuesDict = [NSMutableDictionary dictionaryWithCapacity: [attributeNames count]];
attrEnum = [attributeNames objectEnumerator];
attribute = [attrEnum nextObject];
while (attribute)
{
[valuesDict setObject: [[self attributeWithName: attribute]
stringValueAtIndex: 0]
forKey: attribute];
attribute = [attrEnum nextObject];
}
if (cName)
{
value = [[self attributeWithName: cName]
stringValueAtIndex: 0];
if (!value)
value = @"";
NSLog (@"value for '%@' = '%@'", cName, value);
[valuesDict setObject: value
forKey: @"c_name"];
}
if (uid)
{
value = [[self attributeWithName: uid]
stringValueAtIndex: 0];
if (!value)
value = @"";
NSLog (@"value for '%@' = '%@'", uid, value);
[valuesDict setObject: value
forKey: @"c_uid"];
}
return valuesDict;
}
@end