]> err.no Git - scalable-opengroupware.org/blob - SOGo/SoObjects/Mailer/SOGoMailAccounts.m
work on the mailer
[scalable-opengroupware.org] / SOGo / SoObjects / Mailer / SOGoMailAccounts.m
1 /*
2   Copyright (C) 2004 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21 // $Id: SOGoMailAccounts.m 274 2004-08-26 13:10:49Z znek $
22
23 #include "SOGoMailAccounts.h"
24 #include "common.h"
25
26 @implementation SOGoMailAccounts
27
28 /* listing the available mailboxes */
29
30 - (NSArray *)toManyRelationshipKeys {
31   // TODO: hardcoded, need to implement the Agenor Anais LDAP query?
32   return [NSArray arrayWithObjects:
33                     @"agenortest@mail.opengroupware.org",
34                   nil];
35 }
36
37 /* name lookup */
38
39 - (BOOL)isValidMailAccountName:(NSString *)_key {
40   if ([_key length] == 0)
41     return NO;
42   
43   return YES;
44 }
45
46 - (id)mailAccountWithName:(NSString *)_key inContext:(id)_ctx {
47   static Class ctClass = Nil;
48   id ct;
49   
50   if (ctClass == Nil)
51     ctClass = NSClassFromString(@"SOGoMailAccount");
52   if (ctClass == Nil) {
53     [self logWithFormat:@"ERROR: missing SOGoMailAccount class!"];
54     return nil;
55   }
56   
57   ct = [[ctClass alloc] initWithName:_key inContainer:self];
58   return [ct autorelease];
59 }
60
61 - (id)lookupName:(NSString *)_key inContext:(id)_ctx acquire:(BOOL)_flag {
62   id obj;
63   
64   /* first check attributes directly bound to the application */
65   if ((obj = [super lookupName:_key inContext:_ctx acquire:NO]))
66     return obj;
67   
68   if ([self isValidMailAccountName:_key])
69     return [self mailAccountWithName:_key inContext:_ctx];
70
71   /* return 404 to stop acquisition */
72   return [NSException exceptionWithHTTPStatus:404 /* Not Found */];
73 }
74
75 @end /* SOGoMailAccounts */