]> err.no Git - scalable-opengroupware.org/blob - SoObjects/SOGo/SOGoGroupsFolder.m
ee71c7f70d3a1821233f1e9515b197bfacf5f300
[scalable-opengroupware.org] / SoObjects / SOGo / SOGoGroupsFolder.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: SOGoGroupsFolder.m 115 2004-06-30 11:57:37Z helge $
22
23 #include "SOGoGroupsFolder.h"
24 #include "common.h"
25
26 @implementation SOGoGroupsFolder
27
28 - (void)dealloc {
29   [super dealloc];
30 }
31
32 /* accessors */
33
34 /* SOPE */
35
36 - (BOOL)isFolderish {
37   return YES;
38 }
39
40 /* looking up shared objects */
41
42 - (SOGoGroupsFolder *)lookupGroupsFolder {
43   return self;
44 }
45
46 /* pathes */
47
48 /* name lookup */
49
50 - (id)customGroup:(NSString *)_key inContext:(id)_ctx {
51   static Class groupClass = Nil;
52   id group;
53   
54   if (groupClass == Nil)
55     groupClass = NSClassFromString(@"SOGoCustomGroupFolder");
56   if (groupClass == Nil) {
57     [self logWithFormat:@"ERROR: missing SOGoCustomGroupFolder class!"];
58     return nil;
59   }
60   
61   group = [[groupClass alloc] initWithName:_key inContainer:self];
62   return [group autorelease];
63 }
64
65 - (id)lookupName:(NSString *)_key inContext:(id)_ctx acquire:(BOOL)_flag {
66   id obj;
67   
68   /* first check attributes directly bound to the application */
69   if ((obj = [super lookupName:_key inContext:_ctx acquire:NO]))
70     return obj;
71   
72   if ([_key hasPrefix:@"_custom_"])
73     return [self customGroup:_key inContext:_ctx];
74   
75   /* return 404 to stop acquisition */
76   return [NSException exceptionWithHTTPStatus:404 /* Not Found */];
77 }
78
79 @end /* SOGoGroupsFolder */