sogo/UI/Contacts/UIxContactsListView.m
Wolfgang Sourdeau 376c009180 Monotone-Parent: 2914b9eab0b116cea42ae4eefee3758488d098c7
Monotone-Revision: 1159908dc1415c3892d49b916e424c7360c2d205

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-03-21T14:28:42
Monotone-Branch: ca.inverse.sogo
2007-03-21 14:28:42 +00:00

200 lines
3.7 KiB
Objective-C

/*
Copyright (C) 2004-2005 SKYRIX Software AG
This file is part of OpenGroupware.org.
OGo is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
OGo 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 Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with OGo; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#import <NGObjWeb/WOContext.h>
#import <NGObjWeb/WOResponse.h>
#import <Contacts/SOGoContactObject.h>
#import <Contacts/SOGoContactFolder.h>
#import <Contacts/SOGoContactFolders.h>
#import "common.h"
#import "UIxContactsListView.h"
@implementation UIxContactsListView
- (id) init
{
if ((self = [super init]))
{
selectorComponentClass = nil;
}
return self;
}
- (void) dealloc
{
if (searchText)
[searchText release];
[super dealloc];
}
/* accessors */
- (void) setCurrentContact: (NSDictionary *) _contact
{
currentContact = _contact;
}
- (NSDictionary *) currentContact
{
return currentContact;
}
- (void) setSearchText: (NSString *) _txt
{
ASSIGNCOPY (searchText, _txt);
}
- (id) searchText
{
if (!searchText)
[self setSearchText: [self queryParameterForKey:@"search"]];
return searchText;
}
- (NSString *) selectorComponentClass
{
return selectorComponentClass;
}
- (id) mailerContactsAction
{
selectorComponentClass = @"UIxContactsMailerSelection";
return self;
}
- (id) calendarsContactsAction
{
selectorComponentClass = @"UIxContactsCalendarsSelection";
return self;
}
- (id) addressBooksContactsAction
{
selectorComponentClass = @"UIxContactsAddressBooksSelection";
return self;
}
- (id) aclsContactsAction
{
selectorComponentClass = @"UIxContactsAclsSelection";
return self;
}
- (id <WOActionResults>) deleteAction
{
id <WOActionResults> result;
NSException <WOActionResults> *ex;
WOResponse *response;
ex = [[self clientObject] delete];
if (ex)
result = ex;
else
{
response = [context response];
[response setStatus: 200];
result = response;
}
return result;
}
- (NSString *) defaultSortKey
{
return @"fn";
}
- (NSString *) displayName
{
NSString *displayName;
displayName = [currentContact objectForKey: @"displayName"];
if (!(displayName && [displayName length] > 0))
displayName = [currentContact objectForKey: @"cn"];
return displayName;
}
- (NSString *) sortKey
{
NSString *s;
s = [self queryParameterForKey: @"sort"];
if ([s length] == 0)
s = [self defaultSortKey];
return s;
}
- (NSComparisonResult) sortOrdering
{
return ([[self queryParameterForKey:@"desc"] boolValue]
? NSOrderedDescending
: NSOrderedAscending);
}
- (NSArray *) contactInfos
{
id <SOGoContactFolder> folder;
folder = [self clientObject];
return [folder lookupContactsWithFilter: [self searchText]
sortBy: [self sortKey]
ordering: [self sortOrdering]];
}
/* notifications */
- (void) sleep
{
if (searchText)
{
[searchText release];
searchText = nil;
}
currentContact = nil;
// [allRecords release];
// allRecords = nil;
// [filteredRecords release];
// filteredRecords = nil;
[super sleep];
}
/* actions */
- (BOOL) shouldTakeValuesFromRequest: (WORequest *) _rq
inContext: (WOContext*) _c
{
return YES;
}
@end /* UIxContactsListView */