]> err.no Git - scalable-opengroupware.org/blob - SoObjects/Sieve/SOGoSieveScriptsFolder.m
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@900 d1b88da0-ebda-0310-925b-ed51d...
[scalable-opengroupware.org] / SoObjects / Sieve / SOGoSieveScriptsFolder.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
22 #include "SOGoSieveScriptsFolder.h"
23 #include <NGImap4/NGSieveClient.h>
24 #include "common.h"
25
26 @implementation SOGoSieveScriptsFolder
27
28 - (void)dealloc {
29   [self->listedScripts release];
30   [super dealloc];
31 }
32
33 /* listing */
34
35 - (NSDictionary *)fetchScripts {
36   if (self->listedScripts != nil)
37     return self->listedScripts;
38   
39   self->listedScripts = [[[self sieveClient] listScripts] copy];
40   return self->listedScripts;
41 }
42
43 /* standard methods */
44
45 - (NSArray *)toOneRelationshipKeys {
46   return [[self fetchScripts] allKeys];
47 }
48
49 /* operations */
50
51 - (NSException *)activateScript:(NSString *)_name {
52   NSDictionary *res;
53   NSString *r;
54   
55   res = [[self sieveClient] setActiveScript:_name];
56   if ([[res valueForKey:@"result"] boolValue])
57     return nil;
58
59   // TODO: make it a debug log
60   [self logWithFormat:@"sieve activate failed: %@", res];
61   
62   r = [@"Script activation failed: " 
63         stringByAppendingString:[res description]];
64   return [NSException exceptionWithHTTPStatus:500 /* Server Error */
65                       reason:r];
66 }
67
68 /* name lookup */
69
70 - (NSString *)lookupScript:(NSString *)_key inContext:(id)_ctx {
71   Class clazz;
72   
73   clazz = NSClassFromString(@"SOGoSieveScriptObject");
74   return [[[clazz alloc] initWithName:_key inContainer:self] autorelease];
75 }
76
77 - (id)lookupName:(NSString *)_key inContext:(id)_ctx acquire:(BOOL)_flag {
78   id obj;
79   
80   /* first check attributes directly bound to the object */
81   if ((obj = [super lookupName:_key inContext:_ctx acquire:NO]))
82     return obj;
83   
84   /* lookup script */
85   if ((obj = [self lookupScript:_key inContext:_ctx]))
86     return obj;
87   
88   /* return 404 to stop acquisition */
89   return [NSException exceptionWithHTTPStatus:404 /* Not Found */];
90 }
91
92 /* folder type */
93
94 - (NSString *)outlookFolderClass {
95   return @"IPF.Filter";
96 }
97
98 @end /* SOGoSieveScriptsFolder */