/* UIxContactFoldersView.m - this file is part of SOGo * * Copyright (C) 2006-2009 Inverse inc. * * 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. */ #import #import #import #import #import #import #import #import #import #import #import #import #import #import #import #import #import #import #import #import #import #import #import #import #import "UIxContactFoldersView.h" @implementation UIxContactFoldersView - (id) init { if ((self = [super init])) contextIsSetup = NO; return self; } - (void) _setupContext { SOGoUser *activeUser; NSString *module; SOGoContactFolders *clientObject; if (!contextIsSetup) { activeUser = [context activeUser]; clientObject = [self clientObject]; module = [clientObject nameInContainer]; us = [activeUser userSettings]; moduleSettings = [us objectForKey: module]; if (!moduleSettings) moduleSettings = [NSMutableDictionary dictionary]; [us setObject: moduleSettings forKey: module]; contextIsSetup = YES; } } - (id ) mailerContactsAction { selectorComponentClass = @"UIxContactsMailerSelection"; return self; } - (NSString *) selectorComponentClass { return selectorComponentClass; } - (WOElement *) selectorComponent { WOElement *newComponent; newComponent = [self pageWithName: selectorComponentClass]; return newComponent; } - (BOOL) hasContactSelectionButtons { return (selectorComponentClass != nil); } - (void) _fillResults: (NSMutableDictionary *) results inFolder: (id ) folder withSearchOn: (NSString *) contact { NSEnumerator *folderResults; NSDictionary *currentContact; NSString *uid; folderResults = [[folder lookupContactsWithFilter: contact sortBy: @"cn" ordering: NSOrderedAscending] objectEnumerator]; currentContact = [folderResults nextObject]; while (currentContact) { uid = [currentContact objectForKey: @"c_uid"]; if (uid && ![results objectForKey: uid]) [results setObject: currentContact forKey: uid]; currentContact = [folderResults nextObject]; } } - (NSString *) _emailForResult: (NSDictionary *) result { NSMutableString *email; NSString *name, *mail; email = [NSMutableString string]; name = [result objectForKey: @"displayName"]; if (![name length]) name = [result objectForKey: @"cn"]; mail = [result objectForKey: @"mail"]; if ([name length]) [email appendFormat: @"%@ <%@>", name, mail]; else [email appendString: mail]; return email; } - (NSArray *) _responseForResults: (NSArray *) results { NSEnumerator *contacts; NSString *email, *info; NSDictionary *contact; NSMutableArray *formattedContacts; NSMutableDictionary *formattedContact; formattedContacts = [NSMutableArray arrayWithCapacity: [results count]]; if ([results count] > 0) { contacts = [results objectEnumerator]; contact = [contacts nextObject]; while (contact) { email = [contact objectForKey: @"c_email"]; if ([email length]) { formattedContact = [NSMutableDictionary dictionary]; [formattedContact setObject: [contact objectForKey: @"c_uid"] forKey: @"uid"]; [formattedContact setObject: [contact objectForKey: @"cn"] forKey: @"name"]; [formattedContact setObject: email forKey: @"email"]; info = [contact objectForKey: @"c_info"]; if (info != nil) [formattedContact setObject: info forKey: @"contactInfo"]; [formattedContacts addObject: formattedContact]; } contact = [contacts nextObject]; } } return formattedContacts; } - (id ) allContactSearchAction { id result; SOGoFolder *folder; NSString *searchText, *mail; NSDictionary *data; NSArray *folders, *contacts, *descriptors, *sortedContacts; NSMutableArray *sortedFolders; NSMutableDictionary *contact, *uniqueContacts; unsigned int i, j; NSSortDescriptor *commonNameDescriptor; BOOL excludeGroups, excludeLists; searchText = [self queryParameterForKey: @"search"]; if ([searchText length] > 0) { // NSLog(@"Search all contacts: %@", searchText); excludeGroups = [[self queryParameterForKey: @"excludeGroups"] boolValue]; excludeLists = [[self queryParameterForKey: @"excludeLists"] boolValue]; NS_DURING folders = [[self clientObject] subFolders]; NS_HANDLER /* We need to specifically test for @"SOGoDBException", which is raised explicitly in SOGoParentFolder. Any other exception should be re-raised. */ if ([[localException name] isEqualToString: @"SOGoDBException"]) folders = nil; else [localException raise]; NS_ENDHANDLER; sortedFolders = [NSMutableArray arrayWithCapacity: [folders count]]; uniqueContacts = [NSMutableDictionary dictionary]; for (i = 0; i < [folders count]; i++) { folder = [folders objectAtIndex: i]; /* We first search in LDAP folders (in case of duplicated entries in GCS folders) */ if ([folder isKindOfClass: [SOGoContactSourceFolder class]]) [sortedFolders insertObject: folder atIndex: 0]; else [sortedFolders addObject: folder]; } for (i = 0; i < [sortedFolders count]; i++) { folder = [sortedFolders objectAtIndex: i]; //NSLog(@" Address book: %@ (%@)", [folder displayName], [folder class]); contacts = [folder lookupContactsWithFilter: searchText sortBy: @"c_cn" ordering: NSOrderedAscending]; for (j = 0; j < [contacts count]; j++) { contact = [contacts objectAtIndex: j]; mail = [contact objectForKey: @"c_mail"]; //NSLog(@" found %@ (%@) ? %@", [contact objectForKey: @"c_name"], mail, // [contact description]); if ([mail isNotNull] && [uniqueContacts objectForKey: mail] == nil && !(excludeGroups && [contact objectForKey: @"isGroup"])) [uniqueContacts setObject: contact forKey: mail]; else if (!excludeLists && [[contact objectForKey: @"c_name"] hasSuffix: @".vlf"]) { [contact setObject: [folder nameInContainer] forKey: @"container"]; [uniqueContacts setObject: contact forKey: [contact objectForKey: @"c_name"]]; } } } if ([uniqueContacts count] > 0) { // Sort the contacts by display name commonNameDescriptor = [[[NSSortDescriptor alloc] initWithKey: @"c_cn" ascending:YES] autorelease]; descriptors = [NSArray arrayWithObjects: commonNameDescriptor, nil]; sortedContacts = [[uniqueContacts allValues] sortedArrayUsingDescriptors: descriptors]; } else sortedContacts = [NSArray array]; data = [NSDictionary dictionaryWithObjectsAndKeys: searchText, @"searchText", sortedContacts, @"contacts", nil]; result = [self responseWithStatus: 200]; [(WOResponse*)result appendContentString: [data jsonRepresentation]]; } else result = [NSException exceptionWithHTTPStatus: 400 reason: @"missing 'search' parameter"]; return result; } - (id ) contactSearchAction { NSDictionary *data; NSArray *contacts; NSString *searchText, *domain; id result; SOGoUserManager *um; searchText = [self queryParameterForKey: @"search"]; if ([searchText length] > 0) { um = [SOGoUserManager sharedUserManager]; domain = [[context activeUser] domain]; contacts = [self _responseForResults: [um fetchContactsMatching: searchText inDomain: domain]]; data = [NSDictionary dictionaryWithObjectsAndKeys: searchText, @"searchText", contacts, @"contacts", nil]; result = [self responseWithStatus: 200]; [(WOResponse*)result appendContentString: [data jsonRepresentation]]; } else result = [NSException exceptionWithHTTPStatus: 400 reason: @"missing 'search' parameter"]; return result; } - (NSArray *) _subFoldersFromFolder: (SOGoParentFolder *) parentFolder { NSMutableArray *folders; NSEnumerator *subfolders; SOGoGCSFolder *subfolder; NSString *folderName; NSMutableDictionary *currentDictionary; SoSecurityManager *securityManager; securityManager = [SoSecurityManager sharedSecurityManager]; folders = [NSMutableArray array]; subfolders = [[parentFolder subFolders] objectEnumerator]; while ((subfolder = [subfolders nextObject])) { if (![securityManager validatePermission: SOGoPerm_AccessObject onObject: subfolder inContext: context]) { folderName = [NSString stringWithFormat: @"/%@/%@", [parentFolder nameInContainer], [subfolder nameInContainer]]; currentDictionary = [NSMutableDictionary dictionaryWithCapacity: 3]; [currentDictionary setObject: [subfolder displayName] forKey: @"displayName"]; [currentDictionary setObject: folderName forKey: @"name"]; [currentDictionary setObject: [subfolder folderType] forKey: @"type"]; [folders addObject: currentDictionary]; } } return folders; } - (void) checkDefaultModulePreference { SOGoUserDefaults *ud; if (![self isPopup]) { ud = [[context activeUser] userDefaults]; if ([ud rememberLastModule]) { [ud setLoginModule: @"Contacts"]; [ud synchronize]; } } } - (BOOL) isPopup { return [[self queryParameterForKey: @"popup"] boolValue]; } - (NSArray *) contactFolders { SOGoContactFolders *folderContainer; folderContainer = [self clientObject]; return [folderContainer subFolders]; } - (NSString *) currentContactFolderId { return [NSString stringWithFormat: @"/%@", [currentFolder nameInContainer]]; } - (NSString *) currentContactFolderName { return [currentFolder displayName]; } - (NSString *) currentContactFolderOwner { return [currentFolder ownerInContext: context]; } - (NSString *) currentContactFolderClass { return ([currentFolder isKindOfClass: [SOGoContactSourceFolder class]]? @"remote" : @"local"); } - (NSString *) verticalDragHandleStyle { NSString *vertical; [self _setupContext]; vertical = [moduleSettings objectForKey: @"DragHandleVertical"]; return ((vertical && [vertical intValue] > 0) ? (id)[vertical stringByAppendingFormat: @"px"] : nil); } - (NSString *) horizontalDragHandleStyle { NSString *horizontal; [self _setupContext]; horizontal = [moduleSettings objectForKey: @"DragHandleHorizontal"]; return ((horizontal && [horizontal intValue] > 0) ? (id)[horizontal stringByAppendingFormat: @"px"] : nil); } - (NSString *) contactsListContentStyle { NSString *height; [self _setupContext]; height = [moduleSettings objectForKey: @"DragHandleVertical"]; return ((height && [height intValue] > 0) ? [NSString stringWithFormat: @"%ipx", ([height intValue] - 27)] : nil); } - (WOResponse *) saveDragHandleStateAction { WORequest *request; NSString *dragHandle; [self _setupContext]; request = [context request]; if ((dragHandle = [request formValueForKey: @"vertical"]) != nil) [moduleSettings setObject: dragHandle forKey: @"DragHandleVertical"]; else if ((dragHandle = [request formValueForKey: @"horizontal"]) != nil) [moduleSettings setObject: dragHandle forKey: @"DragHandleHorizontal"]; else return [self responseWithStatus: 400]; [us synchronize]; return [self responseWithStatus: 204]; } - (id) defaultAction { [self checkDefaultModulePreference]; return [super defaultAction]; } @end