]> err.no Git - scalable-opengroupware.org/blob - UI/MailerUI/UIxMailFolderActions.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1142 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, *path;
135
136   folderName = [[srcURL path] lastPathComponent];
137   trashFolderName
138     = [[co mailAccountFolder] trashFolderNameInContext: context];
139   path = [NSString stringWithFormat: @"/%@/%@",
140                    [trashFolderName substringFromIndex: 6], folderName];
141   destURL = [[NSURL alloc] initWithScheme: [srcURL scheme]
142                            host: [srcURL host] path: path];
143   [destURL autorelease];
144
145   return destURL;
146 }
147
148 - (WOResponse *) deleteFolderAction
149 {
150   SOGoMailFolder *co;
151   WOResponse *response;
152   NGImap4Connection *connection;
153   NSException *error;
154   NSURL *srcURL, *destURL;
155
156   co = [self clientObject];
157   response = [context response];
158   connection = [co imap4Connection];
159   srcURL = [co imap4URL];
160   destURL = [self _trashedURLOfFolder: srcURL
161                   withCO: co];
162   connection = [co imap4Connection];
163   error = [connection moveMailboxAtURL: srcURL
164                       toURL: destURL];
165   if (error)
166     {
167       [response setStatus: 403];
168       [response appendContentString: @"Unable to move folder."];
169     }
170   else
171     [response setStatus: 204];
172
173   return response;
174 }
175
176 - (WOResponse *) emptyTrashAction 
177 {
178   NSException *error;
179   SOGoTrashFolder *co;
180   NSEnumerator *subfolders;
181   WOResponse *response;
182   NGImap4Connection *connection;
183   NSURL *currentURL;
184
185   co = [self clientObject];
186   response = [context response];
187
188   error = [co addFlagsToAllMessages: @"deleted"];
189   if (!error)
190     error = [co expunge];
191   if (!error)
192     {
193       [co flushMailCaches];
194       connection = [co imap4Connection];
195       subfolders = [[co subfoldersURL] objectEnumerator];
196       currentURL = [subfolders nextObject];
197       while (currentURL)
198         {
199           [connection deleteMailboxAtURL: currentURL];
200           currentURL = [subfolders nextObject];
201         }
202     }
203   if (error)
204     {
205       [response setStatus: 403];
206       [response appendContentString: @"Unable to empty the trash folder."];
207     }
208   else
209     [response setStatus: 204];
210
211   return response;
212 }
213
214 #warning here should be done what should be done: IMAP subscription
215 - (WOResponse *) _subscriptionStubAction
216 {
217   NSString *mailInvitationParam, *mailInvitationURL;
218   WOResponse *response;
219   SOGoMailFolder *clientObject;
220
221   response = [context response];
222   mailInvitationParam
223     = [[context request] formValueForKey: @"mail-invitation"];
224   if ([mailInvitationParam boolValue])
225     {
226       clientObject = [self clientObject];
227       mailInvitationURL
228         = [[clientObject soURLToBaseContainerForCurrentUser]
229             absoluteString];
230       [response setStatus: 302];
231       [response setHeader: mailInvitationURL
232                 forKey: @"location"];
233     }
234   else
235     {
236       [response setStatus: 403];
237       [response appendContentString: @"How did you end up here?"];
238     }
239
240   return response;
241 }
242
243 - (WOResponse *) subscribeAction
244 {
245   return [self _subscriptionStubAction];
246 }
247
248 - (WOResponse *) unsubscribeAction
249 {
250   return [self _subscriptionStubAction];
251 }
252
253 - (WOResponse *) quotasAction
254 {
255   SOGoMailFolder *folder;
256   NSURL *folderURL;
257   id infos;
258   WOResponse *response;
259   NGImap4Client *client;
260   NSString *responseString;
261
262   response = [context response];
263   [response setStatus: 200];
264   [response setHeader: @"text/plain; charset=UTF-8"
265             forKey: @"content-type"];
266
267   folder = [self clientObject];
268   folderURL = [folder imap4URL];
269   
270   client = [[folder imap4Connection] client];
271   infos = [client getQuotaRoot: [folder nameInContainer]];
272   responseString = [[infos objectForKey: @"quotas"] jsonRepresentation];
273   [response appendContentString: responseString];
274
275   return response;
276 }
277
278 @end