File: IMAPStore.m

package info (click to toggle)
pantomime 1.0.2-0.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,036 kB
  • ctags: 325
  • sloc: objc: 11,397; ansic: 2,429; sh: 115; makefile: 70
file content (451 lines) | stat: -rw-r--r-- 9,211 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
/*
**  IMAPStore.m
**
**  Copyright (c) 2001, 2002
**
**  Author: Ludovic Marcotte <ludovic@Sophos.ca>
**
**  This library is free software; you can redistribute it and/or
**  modify it under the terms of the GNU Lesser General Public
**  License as published by the Free Software Foundation; either
**  version 2.1 of the License, or (at your option) any later version.
**  
**  This library is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
**  Lesser General Public License for more details.
**  
**  You should have received a copy of the GNU Lesser General Public
**  License along with this library; if not, write to the Free Software
**  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#import <Pantomime/IMAPStore.h>

#import <Pantomime/Constants.h>
#import <Pantomime/IMAPCacheManager.h>
#import <Pantomime/IMAPFolder.h>
#import <Pantomime/NSStringExtensions.h>
#import <Pantomime/TCPConnection.h>
#import <Pantomime/URLName.h>

@implementation IMAPStore

//
// This method implements a part of the Service Protocol.
//
- (id) initWithName: (NSString *) theName
               port: (int) thePort
{
  NSString *aString;
  
  self = [super init];

  [self setName: theName];
  [self setPort: thePort];

  messagesHaveBeenPrefetched = NO;
  tag = 1;
  
  tcpConnection = [[TCPConnection alloc] initWithName: theName
					 port: thePort];

  if ( !tcpConnection )
    {
      AUTORELEASE(self);
      return nil;
    }
  
  aString = [[self tcpConnection] readLineBySkippingCR: YES];
  
  if ( [aString hasCaseInsensitivePrefix: @"* OK"] )
    {
      NSLog(@"IMAPStore: Connected!");
    }
  else
    {
      AUTORELEASE(self);
      NSLog(@"IMAPStore: Not connected!");
      return nil;
    }

  return self;
}

//
// This method provide a default init method using
// the default IMAP port - 143.
// 
- (id) initWithName: (NSString *) theName
{
  return [self initWithName: theName
	       port: 143];
}


//
//
//
- (id) initWithURL: (NSString *) theURL
{
  URLName *urlName;

  urlName = [[URLName alloc] initWithString: theURL];

  self = [self initWithName: [urlName host]
	       port: 143];

  RELEASE(urlName);
  
  return self;
}

//
//
//
- (void) dealloc
{
  RELEASE(name);
  
  TEST_RELEASE(tcpConnection);

  [super dealloc];
}

//
// This method authenticates the Store to the IMAP server.
// In case of an error, it returns NO.
//
- (BOOL) authenticateWithUsername: (NSString*) username
			 password: (NSString*) password
{
  NSString *aString, *aPassword;
  NSRange aRange;

  // We must verify if we must quote the password
  aRange = [password rangeOfCharacterFromSet: [NSCharacterSet punctuationCharacterSet]];

  if ( aRange.length )
    {
      aPassword = [NSString stringWithFormat: @"\"%@\"", password];
    }
  else
    {
      aPassword = password;
    }
  

  [[self tcpConnection] writeLine: [NSString stringWithFormat:@"%@ LOGIN %@ %@",
					     [self nextTag], username, aPassword] ];
  
  aString = [[self tcpConnection] readLineBySkippingCR: YES];

  //
  // The answer can be:  0001 OK User logged in
  //                     0001 OK LOGIN completed
  //
  if ( [aString hasCaseInsensitivePrefix: [NSString stringWithFormat:@"%@ NO", [self lastTag]] ] ||
       [aString hasCaseInsensitivePrefix: [NSString stringWithFormat:@"%@ BAD", [self lastTag]] ] )
    {
      NSLog([NSString stringWithFormat: @"IMAPStore: IMAP username (or password) is invalid on %@.", [self name]]);
      return NO;
    }
  else
    {
      while ( ! [aString hasCaseInsensitivePrefix: [NSString stringWithFormat:@"%@ OK",
							     [self lastTag]] ] )
	{
	  aString = [[self tcpConnection] readLineBySkippingCR: YES];
	}
    }
  
  return YES;
}


- (NSString *) name
{
  return name;
}

- (void) setName: (NSString *) theName
{
  RETAIN(theName);
  RELEASE(name);
  name = theName;
}

- (int) port
{
  return port;
}

- (void) setPort: (int) thePort
{
  port = thePort;
}

//
//
//
- (TCPConnection *) tcpConnection
{
  return tcpConnection;
}

//
// The default folder in IMAP is always Inbox. This method will prefetch
// the messages of a IMAP folder if they haven't been prefetched before.
//
- (id) defaultFolder
{
  return [self folderForName: @"Inbox"];
}


//
//
//
- (id) folderForName: (NSString *) theName
{
  return [self folderForName: theName
	       prefetch: YES];
}

//
//
//
- (IMAPFolder *) folderForName: (NSString *) theName
		      prefetch: (BOOL) aBOOL
{  
  NSString *aString;
  NSMutableArray *aMutableArray;
 
  [[self tcpConnection] writeLine: [NSString stringWithFormat:@"%@ SELECT %@",
					     [self nextTag], theName]];
  
  aMutableArray = [[NSMutableArray alloc] init];
  
  aString = [[self tcpConnection] readLineBySkippingCR: YES];
  
  // We first verify if we got an error
  if ([aString hasCaseInsensitivePrefix: [NSString stringWithFormat:@"%@ NO",
						   [self lastTag]]] )
    {
      NSLog(@"IMAPStore: Error while obtaining the folder for name: %@", theName);
      return nil;
    }

  // If everything is alright, we read all the lines from the server
  while ( ![aString hasCaseInsensitivePrefix: [NSString stringWithFormat:@"%@ OK",
							[self lastTag]]] )
    {
      [aMutableArray addObject: aString];
      aString = [[self tcpConnection] readLineBySkippingCR: YES];
    }

  if ([aMutableArray count] > 0)
    {
      IMAPFolder *aFolder;
      int i;

      aFolder = [[IMAPFolder alloc] initWithName: theName];

      for (i = 0; i < [aMutableArray count]; i++)
	{
	  NSString *str;

	  str = [aMutableArray objectAtIndex: i];
	  //NSLog(@"|%@|", str);

	  if ([str hasCaseInsensitiveSuffix: @"EXISTS"])
	    {
	      // FIXME
	      //[aFolder setCount: [self parseExists: str]];
	    }
	  else if ([str hasCaseInsensitivePrefix: @"* OK [UIDVALIDITY"])
	    {
	      [aFolder setUIDValidity: [self parseUIDValidity: str]];
	    }
	}
      
      [aFolder setStore: (Store *)self];

      // If we have to prefetch, let's do it!
      if ( aBOOL )
	{
	  [aFolder prefetch];
	}
      
      return AUTORELEASE(aFolder);
    }

  return nil;
}


//
//
//
- (IMAPFolder *) folderForName: (NSString *) theName
	  withIMAPCacheManager: (IMAPCacheManager *) theIMAPCacheManager
{
  IMAPFolder *aFolder;

  aFolder = (IMAPFolder *)[self folderForName: theName
				prefetch: NO];
  
  if ( aFolder )
    {
      // We verify if we mush flush our cache
      if ([theIMAPCacheManager uidValidity] == 0)
	{
	  NSLog(@"IMAPStore: We set the UIDVALIDITY to the cache.");
	  [theIMAPCacheManager setUIDValidity: [aFolder uidValidity] ];
	}
      else if ([theIMAPCacheManager uidValidity] != [aFolder uidValidity])
	{
	  NSLog(@"IMAPStore: Flushing the cache...");
	  [theIMAPCacheManager flush];
	  [theIMAPCacheManager setUIDValidity: [aFolder uidValidity] ];
	}
      else
	{
	  NSLog(@"IMAPStore: The UIDVALIDITY of the cache is ok.");
	}

      [aFolder setIMAPCacheManager: theIMAPCacheManager];
      [aFolder prefetch];
    }

  return aFolder;
}


//
//
//
- (id) folderForURL: (NSString *) theURL
{
  URLName *urlName;
  id aFolder;

  urlName = [[URLName alloc] initWithString: theURL];

  aFolder = [self folderForName: [urlName foldername]];

  RELEASE(urlName);
  
  return aFolder;
}

- (NSString *) nextTag
{
  tag = tag + 1;  
  return [self lastTag];
}

- (NSString *) lastTag
{
  char str[5];
  
  sprintf(str, "%04x", tag);

  return [NSString stringWithCString: str];
}

- (void) close
{
  NSString *aString;

  // We ask our IMAP server to logout
  [[self tcpConnection] writeLine: [NSString stringWithFormat: @"%@ LOGOUT", [self nextTag]]];

  aString = [[self tcpConnection] readLineBySkippingCR: YES];

  while (! [aString hasCaseInsensitivePrefix: [NSString stringWithFormat: @"%@ OK", [self lastTag]] ] )
    {
      aString = [[self tcpConnection] readLineBySkippingCR: YES];
    }

  [[self tcpConnection] close];
}


//
//
//
- (int) parseExists: (NSString *) theLine
{
  NSRange aRange;

  theLine = [theLine substringFromIndex: 2];
  
  aRange = [theLine rangeOfString: @"EXISTS"];

  if ( aRange.length > 0 )
    {
      NSString *aString;
      
      aString = [theLine substringWithRange: NSMakeRange(0, aRange.location)];
      
      if ( [aString length] > 0 )
	{
	  return [aString intValue];
	}
    }

  return 0;
}


//
// Example: * OK [UIDVALIDITY 948394385] UID validity status
//
- (int) parseUIDValidity: (NSString *) theLine
{
  NSRange aRange;

  // We trim the  * OK [UIDVALIDITY part
  theLine = [theLine substringFromIndex: 17];

  // We find the ]
  aRange = [theLine rangeOfString: @"]"];

  if ( aRange.length )
    {
      NSString *aString;

      aString = [theLine substringWithRange: NSMakeRange(0, aRange.location)];
      
      if ( [aString length] > 0 )
	{
	  return [aString intValue];
	}
    }

  return 0;
}


//
//
//
- (BOOL) createFolderWithName: (NSString *) theName
{
  NSLog(@"IMAPStore: -createFolderWithName NOT IMPLEMENTED!");
  
  return NO;
}


//
//
//
- (BOOL) deleteFolderWithName: (NSString *) theName
{
  NSLog(@"IMAPStore: -deleteFolderWithName NOT IMPLEMENTED!");
  
  return NO;
}
@end