1 /* UIxMailFolderActions.m - this file is part of SOGo
3 * Copyright (C) 2007 Inverse groupe conseil
5 * Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
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)
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.
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.
23 #import <Foundation/NSArray.h>
24 #import <Foundation/NSDictionary.h>
25 #import <Foundation/NSEnumerator.h>
26 #import <Foundation/NSURL.h>
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>
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>
39 #import "UIxMailFolderActions.h"
41 @implementation UIxMailFolderActions
43 - (WOResponse *) createFolderAction
47 NGImap4Connection *connection;
51 co = [self clientObject];
52 response = [context response];
54 folderName = [[context request] formValueForKey: @"name"];
55 if ([folderName length] > 0)
57 connection = [co imap4Connection];
58 error = [connection createMailbox: folderName atURL: [co imap4URL]];
61 [response setStatus: 500];
62 [response appendContentString: @"Unable to create folder."];
65 [response setStatus: 204];
69 [response setStatus: 500];
70 [response appendContentString: @"Missing 'name' parameter."];
76 - (NSURL *) _urlOfFolder: (NSURL *) srcURL
77 renamedTo: (NSString *) folderName
82 path = [[srcURL path] stringByDeletingLastPathComponent];
84 destURL = [[NSURL alloc] initWithScheme: [srcURL scheme]
86 path: [NSString stringWithFormat: @"%@%@",
88 [destURL autorelease];
93 - (WOResponse *) renameFolderAction
97 NGImap4Connection *connection;
100 NSURL *srcURL, *destURL;
102 co = [self clientObject];
103 response = [context response];
105 folderName = [[context request] formValueForKey: @"name"];
106 if ([folderName length] > 0)
108 srcURL = [co imap4URL];
109 destURL = [self _urlOfFolder: srcURL renamedTo: folderName];
110 connection = [co imap4Connection];
111 error = [connection moveMailboxAtURL: srcURL
115 [response setStatus: 500];
116 [response appendContentString: @"Unable to rename folder."];
119 [response setStatus: 204];
123 [response setStatus: 500];
124 [response appendContentString: @"Missing 'name' parameter."];
130 - (NSURL *) _trashedURLOfFolder: (NSURL *) srcURL
131 withCO: (SOGoMailFolder *) co
134 NSString *trashFolderName, *folderName, *path;
136 folderName = [[srcURL path] lastPathComponent];
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];
148 - (WOResponse *) deleteFolderAction
151 WOResponse *response;
152 NGImap4Connection *connection;
154 NSURL *srcURL, *destURL;
156 co = [self clientObject];
157 response = [context response];
158 connection = [co imap4Connection];
159 srcURL = [co imap4URL];
160 destURL = [self _trashedURLOfFolder: srcURL
162 connection = [co imap4Connection];
163 error = [connection moveMailboxAtURL: srcURL
167 [response setStatus: 500];
168 [response appendContentString: @"Unable to move folder."];
171 [response setStatus: 204];
176 - (WOResponse *) expungeAction
180 WOResponse *response;
182 co = [self clientObject];
183 response = [context response];
185 error = [co expunge];
188 [response setStatus: 500];
189 [response appendContentString: @"Unable to expunge folder."];
193 [co flushMailCaches];
194 [response setStatus: 204];
200 - (WOResponse *) emptyTrashAction
204 NSEnumerator *subfolders;
205 WOResponse *response;
206 NGImap4Connection *connection;
209 co = [self clientObject];
210 response = [context response];
212 error = [co addFlagsToAllMessages: @"deleted"];
214 error = [co expunge];
217 [co flushMailCaches];
218 connection = [co imap4Connection];
219 subfolders = [[co subfoldersURL] objectEnumerator];
220 currentURL = [subfolders nextObject];
223 [connection deleteMailboxAtURL: currentURL];
224 currentURL = [subfolders nextObject];
229 [response setStatus: 500];
230 [response appendContentString: @"Unable to empty the trash folder."];
233 [response setStatus: 204];
238 #warning here should be done what should be done: IMAP subscription
239 - (WOResponse *) _subscriptionStubAction
241 NSString *mailInvitationParam, *mailInvitationURL;
242 WOResponse *response;
243 SOGoMailFolder *clientObject;
245 response = [context response];
247 = [[context request] formValueForKey: @"mail-invitation"];
248 if ([mailInvitationParam boolValue])
250 clientObject = [self clientObject];
252 = [[clientObject soURLToBaseContainerForCurrentUser]
254 [response setStatus: 302];
255 [response setHeader: mailInvitationURL
256 forKey: @"location"];
260 [response setStatus: 500];
261 [response appendContentString: @"How did you end up here?"];
267 - (WOResponse *) subscribeAction
269 return [self _subscriptionStubAction];
272 - (WOResponse *) unsubscribeAction
274 return [self _subscriptionStubAction];
277 - (WOResponse *) quotasAction
279 SOGoMailFolder *folder;
282 WOResponse *response;
283 NGImap4Client *client;
284 NSString *responseString;
286 response = [context response];
287 [response setStatus: 200];
288 [response setHeader: @"text/plain; charset=UTF-8"
289 forKey: @"content-type"];
291 folder = [self clientObject];
292 folderURL = [folder imap4URL];
294 client = [[folder imap4Connection] client];
295 infos = [client getQuotaRoot: [folder relativeImap4Name]];
296 responseString = [[infos objectForKey: @"quotas"] jsonRepresentation];
297 [response appendContentString: responseString];