summaryrefslogtreecommitdiffstats
path: root/kshowmail/showrecord.cpp
blob: e39e2eeaba14e24fee8f56762fa9ad09f25fc228 (plain)
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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
/***************************************************************************
                          showrecord.cpp  -  description
                             -------------------
    begin                : Mon Dec 3 2001
    copyright            : (C) 2001 by Eggert Ehmke
    email                : eggert.ehmke@berlin.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include "showrecord.h"

int const ShowRecord::continueShowHeaders( 0 );
int const ShowRecord::cancelShowHeaders( 1 );

ShowRecord::ShowRecord()
{
  //set auto delete to true. This is a function of the parent class, which deletes
  //all items when the list is deleted or cleared.
  setAutoDelete( true );
}

ShowRecord::~ShowRecord()
{
}

void ShowRecord::saveOptions( TQDomDocument& doc, TQDomElement& parent )
{
  //Loop over all mail items
  for( ShowRecordElem* pElem = first(); pElem; pElem = next() )
  {
    //call the method of the mail to save it
    pElem->saveOptions( doc, parent );
  }
}

void ShowRecord::readStoredMails( TQDomElement& parent )
{
  //clear the list
  clear();

  //get first DOM node (mail)
  TQDomNode n = parent.firstChild();

  //iterate over all mail items stored in the given account
  while( !n.isNull() )
  {
    //get element of the current node
    TQDomElement e = n.toElement();

    //create mail object
    ShowRecordElem* pElem = new ShowRecordElem();

    //store the currently read mail data in the new object
    pElem->readOptions( e );

    //store the new mail object in this list
    append( pElem );

    //get next DOM node
    n = n.nextSibling();
  }
}

bool ShowRecord::hasSelectedMails( )
{
  bool selected = false;    //TRUE when a selected mail was found
  ShowRecordElem* mail;     //mail which we want to check

  //get first mail
  mail = first();

  //iterate over all mails until we have found a selected mail
  while( mail != NULL && !selected )
  {
    //check the current mail
    selected = mail->isSelected();

    //get next mail
    mail = next();
  }

  return selected;
}

MailNumberList_Type ShowRecord::getSelectedMails( )
{
  MailNumberList_Type list;                     //contains the numbers of selected mails
  ShowRecordElem* mail;                         //mail from which we want to get the number (if selected)
  TQPtrListIterator<ShowRecordElem> it( *this ); //iterator for the mail list

  //iterate over all mails
  while( ( mail = it.current() ) != NULL )
  {
    //increment iterator to next mail
    ++it;

    //if current mail is selected append its number to the mail number list
    if( mail->isSelected() )
      list.append( mail->number() );
  }

  return list;
}

void ShowRecord::removeMail( int number )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail

  //looking for the mail with the number 'number'
  while( ( mail = it.current() ) != NULL )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given number, remove it
    if( mail->number() == number )
      remove( mail );
  }
}

TQStringList ShowRecord::getSelectedSubjects( ) const
{
  TQStringList subjects;                           //contains the subjects
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail

  //iterate over all mails
  while( ( mail = it.current() ) != NULL )
  {
    //increment iterator to next mail
    ++it;

    //if the mail is selected, append subject to list
    if( mail->isSelected() )
      subjects.append( mail->subject() );
  }

  return subjects;
}

TQString ShowRecord::getSenderOf( int number ) const
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found
  TQString sender;                                 //sender of the wanted mail

  //looking for the mail with the number 'number'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given number, remove it
    if( mail->number() == number )
    {
      sender = mail->from();
      found = true;
    }
  }
  return sender;
}

TQString ShowRecord::getDateOf( int number ) const
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found
  TQString date;                                   //sent date of the wanted mail

  //looking for the mail with the number 'number'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given number, remove it
    if( mail->number() == number )
    {
      date = mail->date();
      found = true;
    }
  }
  return date;

}

TQString ShowRecord::getSizeOf( int number ) const
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found
  TQString size;                                   //size of the wanted mail

  //looking for the mail with the number 'number'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given number, remove it
    if( mail->number() == number )
    {
      size = mail->strSizePrefix();
      found = true;
    }
  }
  return size;

}

TQString ShowRecord::getSubjectOf( int number ) const
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found
  TQString subject;                                //subject of the wanted mail

  //looking for the mail with the number 'number'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given number, get the subject
    if( mail->number() == number )
    {
      subject = mail->subject();
      found = true;
    }
  }
  return subject;

}

TQString ShowRecord::decodeMailBody( TQByteArray body, int number, bool preferHTML ) const
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found
  TQString mailbody;                               //decoded mail

  //looking for the mail with the number 'number'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given number, decode the mail
    if( mail->number() == number )
    {
      mailbody = mail->decodeMailBody( body, preferHTML );
      found = true;
    }
  }
  return mailbody;

}

bool ShowRecord::hasMail( TQString uid )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found

  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //compare the uid
    if( mail->uidl() == uid )
    {
     found = true;
    }
  }
  return found;
}

void ShowRecord::appendNewMail( int number, TQString uid, bool isNew )
{
  //create new mail
  ShowRecordElem* newMail = new ShowRecordElem( number, uid, isNew );

  //append new mail
  if( newMail != NULL )
    append( newMail );
}

void ShowRecord::printMailList( )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail

  while( ( mail = it.current() ) )
  {
    //increment iterator to next mail
    ++it;

    //print mail
    cout << mail->number() << " - UID: " << mail->uidl().local8Bit() << "; Size: " << mail->size() << "; Subject: " << mail->subject().local8Bit() << "; New: " << mail->isNew() << endl;
  }

}

void ShowRecord::setSize( int number, long size )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found

  //looking for the mail with the number 'number'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given number, decode the mail
    if( mail->number() == number )
    {
      mail->setSize( size );
      found = true;
    }
  }
}

Types::MailNumberList_Type ShowRecord::getNewMails( )
{
  MailNumberList_Type list;                     //contains the numbers of the new mails
  ShowRecordElem* mail;                         //mail from which we want to get the number (if new)
  TQPtrListIterator<ShowRecordElem> it( *this ); //iterator for the mail list

  //iterate over all mails
  while( ( mail = it.current() ) != NULL )
  {
    //increment iterator to next mail
    ++it;

    //if current mail is new append its number to the mail number list
    if( mail->isNew() )
      list.append( mail->number() );
  }

  return list;
}

void ShowRecord::setHeader( int number, TQString header )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found

  //looking for the mail with the number 'number'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given number, set the header
    if( mail->number() == number )
    {
      mail->setHeader( header );
      found = true;
    }
  }
}

TQStringList ShowRecord::getUIDsOfOldMails( )
{
  TQStringList list;                             //contains the UIDs of the old mails
  ShowRecordElem* mail;                         //mail from which we want to get the uid (if old)
  TQPtrListIterator<ShowRecordElem> it( *this ); //iterator for the mail list

  //iterate over all mails
  while( ( mail = it.current() ) != NULL )
  {
    //increment iterator to next mail
    ++it;

    //if current mail is new append its number to the mail number list
    if( !mail->isNew() )
      list.append( mail->uidl() );
  }

  return list;
}

TQString ShowRecord::getHeaderOf( TQString uid )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found
  TQString header;                                 //header of the wanted mail

  //looking for the mail with the UID 'uid'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given uid, get the header
    if( mail->uidl() == uid )
    {
      header = mail->header();
      found = true;
    }
  }
  return header;
}

void ShowRecord::setHeader( TQString uid, TQString header )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found

  //looking for the mail with the UID 'uid'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given UID, set the header
    if( mail->uidl() == uid )
    {
      mail->setHeader( header );
      found = true;
    }
  }
}

int ShowRecord::getNumberNewMails( )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  int number = 0;                                 //number of new mails

  while( ( mail = it.current() ) )
  {
    //increment iterator to next mail
    ++it;

    //increment number, if this mail is new
    if( mail->isNew() )
      number++;
  }

  return number;
}

int ShowRecord::getNumberMails( )
{
  return count();
}

long ShowRecord::getTotalSize( )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  long size = 0;                                   //total size of all mails

  while( ( mail = it.current() ) )
  {
    //increment iterator to next mail
    ++it;

    size += mail->size();
  }

  return size;
}

void ShowRecord::fillMailListView( KshowmailView * view, TQString & account )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail

  //iterate over all mails and order the mail to create a list view item
  while( ( mail = it.current() ) )
  {
    //increment iterator to next mail
    ++it;

    //insert list view item
    TQString number = TQString( "%1" ).arg( mail->number() );
    TQString from = mail->from();
    TQString to = mail->to();
    TQString subject = mail->subject();
    TQString date = mail->date();
    TQString size = TQString( "%1" ).arg( mail->size() );
    TQString content = mail->content();
    TQString state = mail->state();
    TQString time = mail->strUnixTime();
    mail->setViewItem( view->insertMail( number, account, from, to, subject, date, size, content, state, time ) );
  }

}

int ShowRecord::showSelectedHeaders( TQString& account )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  int showNextHeader = ShowRecordElem::continueShowHeaders; //return value of ShowRecordElem::showHeader()

  while( ( mail = it.current() ) && showNextHeader == ShowRecordElem::continueShowHeaders )
  {
    //increment iterator to next mail
    ++it;

    //order the mail to show its header
    if( mail->isSelected() )
      showNextHeader = mail->showHeader( account );
  }

  return showNextHeader == ShowRecordElem::continueShowHeaders ? ShowRecord::continueShowHeaders : ShowRecord::cancelShowHeaders;
}

bool ShowRecord::isNew( TQString uid ) const
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found
  bool newMail = false;                           //at time we have not found it, therefore the return value is false

  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //compare the uid
    if( mail->uidl() == uid )
    {
      found = true;
      newMail = mail->isNew();
    }
  }

  return newMail;
}

void ShowRecord::applyHeaderFilter( HeaderFilter * filter, TQString account, MailNumberList_Type& deleteList, MailToDownloadMap_Type& downloadList, int& nmbIgnoredMails, FilterLog* log )
{

  MailNumberList_Type mailsToIgnore;  //this list holds the numbers of all mails, which shall be ignored

    //Loop over all mails in this list
  for( ShowRecordElem* pElem = first(); pElem; pElem = next() )
  {
    //apply the filters to the current mail
    TQString mailbox;
    FilterAction_Type action = pElem->applyHeaderFilter( filter, account, mailbox, log );

    //do recommend action
    //we don't need to do everything for action MARK, because ShowRecordElem::applyHeaderFilter() marks the mail entry itself
    struct DownloadActionParams_Type params;
    switch( action )
    {
      case FActDelete     : deleteList.append( pElem->number() ); break;
      case FActMove       : params.action = FActMove;
                            params.mailbox = mailbox;
                            downloadList.insert( pElem->number(), params );
                            break;
      case FActIgnore     : mailsToIgnore.append( pElem->number() ); break;
      case FActSpamcheck  : params.action = FActSpamcheck;
                            downloadList.insert( pElem->number(), params );
      default          : break;
    }
  }

  //remove all mails which shall be ignored from the mail list
  nmbIgnoredMails = mailsToIgnore.count();
  MailNumberList_Type::iterator it;
  for ( it = mailsToIgnore.begin(); it != mailsToIgnore.end(); ++it )
    removeMail( *it );


}

void ShowRecord::writeToMoveLog( FilterLog * log, int number, TQString account, TQString mailbox )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found

  //looking for the mail with the number 'number'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given number, set the header
    if( mail->number() == number )
    {
      mail->writeToMoveLog( log, account, mailbox );
      found = true;
    }
  }
}

void ShowRecord::writeToDeleteLog( FilterLog * log, int number, TQString account )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found

  //looking for the mail with the number 'number'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given number, set the header
    if( mail->number() == number )
    {
      mail->writeToDeleteLog( log, account );
      found = true;
    }
  }
}

void ShowRecord::setMarkAtNextViewRefresh( int number )
{
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail
  bool found = false;                             //True, when the wanted mail was found

  //looking for the mail with the number 'number'
  while( ( mail = it.current() ) != NULL && !found )
  {
    //increment iterator to next mail
    ++it;

    //if the current mail has the given number, set the header
    if( mail->number() == number )
    {
      mail->setMarkAtNextViewRefresh();
      found = true;
    }
  }
}

TQStringList ShowRecord::getSelectedSenders( ) const
{
  TQStringList senders;                           //contains the senders
  TQPtrListIterator<ShowRecordElem> it( *this );   //iterator for the mail list
  ShowRecordElem* mail;                           //current mail

  //iterate over all mails
  while( ( mail = it.current() ) != NULL )
  {
    //increment iterator to next mail
    ++it;

    //if the mail is selected, append subject to list
    if( mail->isSelected() )
      senders.append( mail->from() );
  }

  return senders;
}