]> err.no Git - scalable-opengroupware.org/blob - UI/MailerUI/UIxMailFolderActions.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1123 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / MailerUI / UIxMailFolderActions.m
1 /* UIxMailFolderActions.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/NSArray.h>
24 #import <Foundation/NSDictionary.h>
25 #import <Foundation/NSEnumerator.h>
26 #import <Foundation/NSURL.h>
27
28 #import <NGObjWeb/WOContext.h>
29 #import <NGObjWeb/WOResponse.h>
30 #import <NGObjWeb/WORequest.h>
31 #import <NGImap4/NGImap4Connection.h>
32 #import <NGImap4/NGImap4Client.h>
33
34 #import <SoObjects/Mailer/SOGoMailFolder.h>
35 #import <SoObjects/Mailer/SOGoTrashFolder.h>
36 #import <SoObjects/Mailer/SOGoMailAccount.h>
37 #import <SoObjects/SOGo/NSObject+Utilities.h>
38
39 #import "UIxMailFolderActions.h"
40
41 @implementation UIxMailFolderActions
42
43 - (WOResponse *) createFolderAction
44 {
45   SOGoMailFolder *co;
46   WOResponse *response;
47   NGImap4Connection *connection;
48   NSException *error;
49   NSString *folderName;
50
51   co = [self clientObject];
52   response = [context response];
53
54   folderName = [[context request] formValueForKey: @"name"];
55   if ([folderName length] > 0)
56     {
57       connection = [co imap4Connection];
58       error = [connection createMailbox: folderName atURL: [co imap4URL]];
59       if (error)
60         {
61           [response setStatus: 403];
62           [response appendContentString: @"Unable to create folder."];
63         }
64       else
65         [response setStatus: 204];
66     }
67   else
68     {
69       [response setStatus: 403];
70       [response appendContentString: @"Missing 'name' parameter."];
71     }
72
73   return response;  
74 }
75
76 - (NSURL *) _urlOfFolder: (NSURL *) srcURL
77                renamedTo: (NSString *) folderName
78 {
79   NSString *path;
80   NSURL *destURL;
81
82   path = [[srcURL path] stringByDeletingLastPathComponent];
83
84   destURL = [[NSURL alloc] initWithScheme: [srcURL scheme]
85                            host: [srcURL host]
86                            path: [NSString stringWithFormat: @"%@%@",
87                                            path, folderName]];
88   [destURL autorelease];
89
90   return destURL;
91 }
92
93 - (WOResponse *) renameFolderAction
94 {
95   SOGoMailFolder *co;
96   WOResponse *response;
97   NGImap4Connection *connection;
98   NSException *error;
99   NSString *folderName;
100   NSURL *srcURL, *destURL;
101
102   co = [self clientObject];
103   response = [context response];
104
105   folderName = [[context request] formValueForKey: @"name"];
106   if ([folderName length] > 0)
107     {
108       srcURL = [co imap4URL];
109       destURL = [self _urlOfFolder: srcURL renamedTo: folderName];
110       connection = [co imap4Connection];
111       error = [connection moveMailboxAtURL: srcURL
112                           toURL: destURL];
113       if (error)
114         {
115           [response setStatus: 403];
116           [response appendContentString: @"Unable to rename folder."];
117         }
118       else
119         [response setStatus: 204];
120     }
121   else
122     {
123       [response setStatus: 403];
124       [response appendContentString: @"Missing 'name' parameter."];
125     }
126
127   return response;  
128 }
129
130 - (NSURL *) _trashedURLOfFolder: (NSURL *) srcURL
131                          withCO: (SOGoMailFolder *) co
132 {
133   NSURL *destURL;
134   NSString *trashFolderName, *folderName;
135
136   folderName = [[srcURL path] lastPathComponent];
137   trashFolderName
138     = [[co mailAccountFolder] trashFolderNameInContext: context];
139
140   destURL = [[NSURL alloc] initWithScheme: [srcURL scheme]
141                            host: [srcURL host]
142                            path: [NSString stringWithFormat: @"/%@/%@",
143                                            trashFolderName, folderName]];
144   [destURL autorelease];
145
146   return destURL;
147 }
148
149 - (WOResponse *) deleteFolderAction
150 {
151   SOGoMailFolder *co;
152   WOResponse *response;
153   NGImap4Connection *connection;
154   NSException *error;
155   NSURL *srcURL, *destURL;
156
157   co = [self clientObject];
158   response = [context response];
159   connection = [co imap4Connection];
160   srcURL = [co imap4URL];
161   destURL = [self _trashedURLOfFolder: srcURL
162                   withCO: co];
163   connection = [co imap4Connection];
164   error = [connection moveMailboxAtURL: srcURL
165                       toURL: destURL];
166   if (error)
167     {
168       [response setStatus: 403];
169       [response appendContentString: @"Unable to move folder."];
170     }
171   else
172     [response setStatus: 204];
173
174   return response;
175 }
176
177 - (WOResponse *) emptyTrashAction 
178 {
179   NSException *error;
180   SOGoTrashFolder *co;
181   NSEnumerator *subfolders;
182   WOResponse *response;
183   NGImap4Connection *connection;
184   NSURL *currentURL;
185
186   co = [self clientObject];
187   response = [context response];
188
189   error = [co addFlagsToAllMessages: @"deleted"];
190   if (!error)
191     error = [co expunge];
192   if (!error)
193     {
194       [co flushMailCaches];
195       connection = [co imap4Connection];
196       subfolders = [[co subfoldersURL] objectEnumerator];
197       currentURL = [subfolders nextObject];
198       while (currentURL)
199         {
200           [connection deleteMailboxAtURL: currentURL];
201           currentURL = [subfolders nextObject];
202         }
203     }
204   if (error)
205     {
206       [response setStatus: 403];
207       [response appendContentString: @"Unable to empty the trash folder."];
208     }
209   else
210     [response setStatus: 204];
211
212   return response;
213 }
214
215 #warning here should be done what should be done: IMAP subscription
216 - (WOResponse *) _subscriptionStubAction
217 {
218   NSString *mailInvitationParam, *mailInvitationURL;
219   WOResponse *response;
220   SOGoMailFolder *clientObject;
221
222   response = [context response];
223   mailInvitationParam
224     = [[context request] formValueForKey: @"mail-invitation"];
225   if ([mailInvitationParam boolValue])
226     {
227       clientObject = [self clientObject];
228       mailInvitationURL
229         = [[clientObject soURLToBaseContainerForCurrentUser]
230             absoluteString];
231       [response setStatus: 302];
232       [response setHeader: mailInvitationURL
233                 forKey: @"location"];
234     }
235   else
236     {
237       [response setStatus: 403];
238       [response appendContentString: @"How did you end up here?"];
239     }
240
241   return response;
242 }
243
244 - (WOResponse *) subscribeAction
245 {
246   return [self _subscriptionStubAction];
247 }
248
249 - (WOResponse *) unsubscribeAction
250 {
251   return [self _subscriptionStubAction];
252 }
253
254 - (WOResponse *) quotasAction
255 {
256   SOGoMailFolder *folder;
257   NSURL *folderURL;
258   id infos;
259   WOResponse *response;
260   NGImap4Client *client;
261   NSString *responseString;
262
263   response = [context response];
264   [response setStatus: 200];
265   [response setHeader: @"text/plain; charset=UTF-8"
266             forKey: @"content-type"];
267
268   folder = [self clientObject];
269   folderURL = [folder imap4URL];
270   
271   client = [[folder imap4Connection] client];
272   infos = [client getQuotaRoot: [folder nameInContainer]];
273   responseString = [[infos objectForKey: @"quotas"] jsonRepresentation];
274   [response appendContentString: responseString];
275
276   return response;
277 }
278
279 @end