]> err.no Git - scalable-opengroupware.org/blob - UI/Common/UIxObjectActions.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1236 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / Common / UIxObjectActions.m
1 /* UIxObjectActions.m - this file is part of SOGo
2  *
3  * Copyright (C) 2007 Inverse groupe conseil
4  *
5  * Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
6  *
7  * This file is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This file is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #import <Foundation/NSString.h>
24 #import <Foundation/NSArray.h>
25 #import <NGObjWeb/WOContext+SoObjects.h>
26 #import <NGObjWeb/WORequest.h>
27 #import <NGObjWeb/WOResponse.h>
28 #import <SoObjects/SOGo/LDAPUserManager.h>
29 #import <SoObjects/SOGo/SOGoObject.h>
30 #import <SoObjects/SOGo/SOGoPermissions.h>
31
32 #import "UIxObjectActions.h"
33
34 static BOOL sendACLAdvisories = NO;
35
36 @implementation UIxObjectActions
37
38 + (void) initialize
39 {
40   NSUserDefaults *ud;
41
42   ud = [NSUserDefaults standardUserDefaults];
43   sendACLAdvistories = [ud boolForKey: @"SOGoACLsSendEMailNotifications"];
44 }
45
46 - (WOResponse *) addUserInAclsAction
47 {
48   WOResponse *response;
49   WORequest *request;
50   NSString *uid;
51   unsigned int code;
52   LDAPUserManager *um;
53   SOGoObject *clientObject;
54
55   code = 403;
56   request = [context request];
57   uid = [request formValueForKey: @"uid"];
58   if ([uid length] > 0)
59     {
60       um = [LDAPUserManager sharedUserManager];
61       if ([um contactInfosForUserWithUIDorEmail: uid])
62         {
63           clientObject = [self clientObject];
64           [clientObject setRoles: [clientObject aclsForUser: uid]
65                         forUser: uid];
66           if (sendACLAdvistories)
67             [clientObject sendACLAdditionAdvisoryToUser: uid];
68           code = 204;
69         }
70     }
71
72   response = [context response];
73   [response setStatus: code];
74
75   return response;
76 }
77
78 - (WOResponse *) removeUserFromAclsAction
79 {
80   WOResponse *response;
81   WORequest *request;
82   NSString *uid;
83   unsigned int code;
84   LDAPUserManager *um;
85   SOGoObject *co;
86
87   code = 403;
88   request = [context request];
89   uid = [request formValueForKey: @"uid"];
90   if ([uid length] > 0)
91     {
92       um = [LDAPUserManager sharedUserManager];
93       if ([um contactInfosForUserWithUIDorEmail: uid])
94         {
95           co = [self clientObject];
96           [co removeAclsForUsers: [NSArray arrayWithObject: uid]];
97           if (sendACLAdvistories)
98             [co sendACLRemovalAdvisoryToUser: uid];
99           code = 204;
100         }
101     }
102
103   response = [context response];
104   [response setStatus: code];
105
106   return response;
107 }
108
109 @end