/* SOGoContactFolders.m - this file is part of SOGo * * Copyright (C) 2006 Inverse groupe conseil * * Author: Wolfgang Sourdeau * * 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. */ /* exchange folder types: */ /* MailItems IPF.Note ContactItems IPF.Contact AppointmentItems IPF.Appointment NoteItems IPF.StickyNote TaskItems IPF.Task JournalItems IPF.Journal */ #import #import #import #import #import #import #import "common.h" #import "SOGoContactGCSFolder.h" #import "SOGoContactLDAPFolder.h" #import "SOGoContactFolders.h" @implementation SOGoContactFolders - (id) init { if ((self = [super init])) { contactFolders = nil; OCSPath = nil; } return self; } - (void) dealloc { if (contactFolders) [contactFolders release]; if (OCSPath) [OCSPath release]; [super dealloc]; } - (void) appendPersonalSourcesInContext: (WOContext *) context; { SOGoContactGCSFolder *ab; ab = [SOGoContactGCSFolder contactFolderWithName: @"personal" andDisplayName: @"Personal Addressbook" inContainer: self]; [ab setOCSPath: [NSString stringWithFormat: @"%@/%@", OCSPath, @"personal"]]; [contactFolders setObject: ab forKey: @"personal"]; } - (void) appendSystemSourcesInContext: (WOContext *) context; { NSUserDefaults *ud; NSEnumerator *ldapABs; NSDictionary *udAB; SOGoContactLDAPFolder *ab; ud = [NSUserDefaults standardUserDefaults]; ldapABs = [[ud objectForKey: @"SOGoLDAPAddressBooks"] objectEnumerator]; udAB = [ldapABs nextObject]; while (udAB) { ab = [SOGoContactLDAPFolder contactFolderWithName: [udAB objectForKey: @"id"] andDisplayName: [udAB objectForKey: @"displayName"] inContainer: self]; [ab LDAPSetHostname: [udAB objectForKey: @"hostname"] setPort: [[udAB objectForKey: @"port"] intValue] setBindDN: [udAB objectForKey: @"bindDN"] setBindPW: [udAB objectForKey: @"bindPW"] setContactIdentifier: [udAB objectForKey: @"idField"] setUserIdentifier: [udAB objectForKey: @"userIdField"] setRootDN: [udAB objectForKey: @"rootDN"]]; [contactFolders setObject: ab forKey: [udAB objectForKey: @"id"]]; udAB = [ldapABs nextObject]; } } - (void) initContactSourcesInContext: (WOContext *) context; { if (!contactFolders) { contactFolders = [NSMutableDictionary new]; [self appendPersonalSourcesInContext: context]; [self appendSystemSourcesInContext: context]; } } - (id) lookupName: (NSString *) name inContext: (WOContext *) context acquire: (BOOL) acquire { id obj; id folder; /* first check attributes directly bound to the application */ obj = [super lookupName: name inContext: context acquire: NO]; if (!obj) { if (!contactFolders) [self initContactSourcesInContext: context]; folder = [contactFolders objectForKey: name]; obj = ((folder) ? folder : [NSException exceptionWithHTTPStatus: 404]); } return obj; } - (NSArray *) toManyRelationshipKeys { WOContext *context; if (!contactFolders) { context = [[WOApplication application] context]; [self initContactSourcesInContext: context]; } return [contactFolders allKeys]; } - (NSArray *) contactFolders { WOContext *context; if (!contactFolders) { context = [[WOApplication application] context]; [self initContactSourcesInContext: context]; } return [contactFolders allValues]; } - (BOOL) davIsCollection { return YES; } - (void) setBaseOCSPath: (NSString *) newOCSPath { if (OCSPath) [OCSPath release]; OCSPath = newOCSPath; if (OCSPath) [OCSPath retain]; } /* web interface */ - (NSString *) defaultSourceName { return @"personal"; } @end