f4885fd77053a8a9829cfbf747171462314d20b7
[clearscm.git] / maps / bin / detail.cgi
1 #!/usr/bin/perl
2 ################################################################################
3 #
4 # File:         $RCSfile: detail.cgi,v $
5 # Revision:     $Revision: 1.1 $
6 # Description:  Displays list of email addresses based on report type.
7 # Author:       Andrew@DeFaria.com
8 # Created:      Fri Nov 29 14:17:21  2002
9 # Modified:     $Date: 2013/06/12 14:05:47 $
10 # Language:     perl
11 #
12 # (c) Copyright 2000-2021, Andrew@DeFaria.com, all rights reserved.
13 #
14 ################################################################################
15 use strict;
16 use warnings;
17
18 use MIME::Words qw(:all);
19
20 use CGI qw(:standard *table start_td end_td start_Tr end_Tr start_div end_div);
21 use CGI::Carp 'fatalsToBrowser';
22
23 use FindBin;
24
25 local $0 = $FindBin::Script;
26
27 use lib "$FindBin::Bin/../lib";
28 use lib "$FindBin::Bin/../../lib";
29
30 use MAPS;
31 use MAPSLog;
32 use MAPSWeb;
33 use DateUtils;
34
35 my $type   = param 'type';
36 my $next   = param 'next';
37 my $lines  = param 'lines';
38 my $date   = param 'date';
39
40 $date ||= '';
41
42 my ($userid, $current, $last, $prev, $total);
43
44 my $table_name = 'detail';
45
46 my %types = (
47   'blacklist'   => [
48     'Blacklist report',
49     'The following blacklisted users attempted to email you'
50   ],
51   'whitelist'   => [
52     'Delivered report',
53     'Delivered email from the following users'
54   ],
55   'nulllist'    => [
56     'Discarded report',
57     'Discarded messages from the following users'
58   ],
59   'error'       => [
60     'Error report',
61     'Errors detected'
62   ],
63   'mailloop'    => [
64     'MailLoop report',
65     'Automatically detected mail loops from the following users'
66   ],
67   'registered'  => [
68     'Registered report',
69     'The following users have recently registered'
70   ],
71   'returned'    => [
72     'Returned report',
73     'Sent Register reply to the following users'
74   ]
75 );
76
77 sub MakeButtons($) {
78   my ($type) = @_;
79
80   my $prev_button = $prev >= 0 ?
81     a ({-href      => "detail.cgi?type=$type;date=$date;next=$prev",
82         -accesskey => 'p',
83     }, '<img src=/maps/images/previous.gif border=0 alt=Previous align=middle>') : '';
84   my $next_button = ($next + $lines) < $total ?
85     a {-href      => "detail.cgi?type=$type;date=$date;next=" . ($next + $lines),
86        -accesskey => 'n',
87     }, '<img src=/maps/images/next.gif border=0 alt=Next align=middle>' : '';
88
89   my $buttons = $prev_button;
90
91   if ($type eq 'whitelist') {
92     $buttons = $buttons .
93       submit ({-name    => 'action',
94                -value   => 'Blacklist',
95                -onClick => 'return CheckAtLeast1Checked (document.detail);'}) . '&nbsp;' .
96       submit ({-name    => 'action',
97                -value   => 'Nulllist',
98                -onClick => 'return CheckAtLeast1Checked (document.detail);'}) . '&nbsp;' .
99       submit ({-name    => 'action',
100                -value   => 'Reset',
101                -onClick => 'return ClearAll (document.detail);'});
102   } elsif ($type eq 'blacklist') {
103     $buttons = $buttons .
104       submit ({-name    => 'action',
105                -value   => 'Whitelist',
106                -onClick => 'return CheckAtLeast1Checked (document.detail);'}) . '&nbsp;' .
107       submit ({-name    => 'action',
108                -value   => 'Nulllist',
109                -onClick => 'return CheckAtLeast1Checked (document.detail);'}) . '&nbsp;' .
110       submit ({-name    => 'action',
111                -value   => 'Reset',
112                -onClick => 'return ClearAll (document.detail);'});
113   } elsif ($type eq 'nulllist') {
114     $buttons = $buttons .
115       submit ({-name    => 'action',
116                -value   => 'Whitelist',
117                -onClick => 'return CheckAtLeast1Checked (document.detail);'}) . '&nbsp;' .
118       submit ({-name    => 'action',
119                -value   => 'Blacklist',
120                -onClick => 'return CheckAtLeast1Checked (document.detail);'}) . '&nbsp;' .
121       submit ({-name    => 'action',
122                -value   => 'Reset',
123                -onClick => 'return ClearAll (document.detail);'});
124   } else {
125     $buttons = $buttons .
126       submit ({-name    => 'action',
127                -value   => 'Whitelist',
128                -onClick => 'return CheckAtLeast1Checked (document.detail);'}) . '&nbsp;' .
129       submit ({-name    => 'action',
130                -value   => 'Blacklist',
131                -onClick => 'return CheckAtLeast1Checked (document.detail);'}) . '&nbsp;' .
132       submit ({-name    => 'action',
133                -value   => 'Nulllist',
134                -onClick => 'return CheckAtLeast1Checked (document.detail);'}) . '&nbsp;' .
135       submit ({-name    => 'action',
136                -value   => 'Reset',
137                -onClick => 'return ClearAll (document.detail);'});
138   } # if
139
140   print div {
141     -align => 'center',
142     -class => 'toolbar',
143   }, $buttons . $next_button;
144
145   return;
146 } # MakeButtons
147
148 sub Body($) {
149   my ($type) = @_;
150
151   my $current = $next + 1;
152
153   print div {-align => 'center'}, b (
154     '(' . $current . '-' . $last . ' of ' . $total . ')');
155   print start_form {
156     -method => 'post',
157     -action => 'processaction.cgi',
158     -name   => 'detail'
159   };
160
161   MakeButtons $type;
162
163   print start_table({-align        => 'center',
164                      -id           => $table_name,
165                      -border       => 0,
166                      -cellspacing  => 0,
167                      -cellpadding  => 0,
168                      -width        => '100%'}) . "\n";
169
170   print
171     Tr [
172       td {-class  => 'tablebordertopleft'},  '&nbsp;',
173       th {-class  => 'tableborder'},         'Sender',
174       th {-class  => 'tableborder'},         'List',
175       th {-class  => 'tableborder'},         'Hit Count',
176       th {-class  => 'tableborder'},         'Rule',
177       th {-class  => 'tablebordertopright'}, 'Comment',
178     ];
179
180   my @senders = ReturnSenders(
181     userid   => $userid,
182     type     => $type,
183     start_at => $next,
184     lines    => $lines,
185     date     => $date
186   );
187
188   for my $sender (@senders) {
189     my $msgs = ReturnMessages(
190       userid => $userid,
191       sender => $sender,
192     );
193
194     my $leftclass    = 'tableleftdata';
195     my $dataclass    = 'tabledata';
196     my $rightclass   = 'tablerightdata';
197     my $senderclass  = 'sender';
198     my $subjectclass = 'subject';
199
200     # Check to see if this is the last line
201     if ((($next + 1) % $lines) == (@senders % $lines)) {
202       # We always "bottom" the first column
203       $leftclass = 'tablebottomleft';
204
205       # Check to see if there any message lines to display
206       unless (@$msgs) {
207         $dataclass   = 'tablebottomdata';
208         $rightclass  = 'tablebottomright';
209         $senderclass = 'senderbottom';
210       } # unless
211     } # if
212
213     # This is for the purposes of supplying a subject line if the mailto address
214     # is clicked on. It's kludgy because we are simply grabbing the subject line
215     # of the first email sent where there may be many emails from this sender
216     # Still it is often the right subject (or a good enough one)
217     #
218     # A little tricky here because of transliteration. If I test for
219     # $msg->[0]{subject} when $msg->[0] is essentially empty I create the hash
220     # making it non empty. Therefore I need to first test if $msgs->[0] exists
221     # first.
222     my $heading = '';
223
224     if ($msgs->[0]) {
225       $heading = $msgs->[0]{subject} if $msgs->[0]{subject};
226     } # if
227
228     my ($onlist, $seq);
229
230     my $rule      = 'none';
231     my $hit_count = 0;
232
233     ($onlist, $rule, $seq, $hit_count) = OnWhitelist($sender, $userid, 0);
234
235     unless ($onlist) {
236       ($onlist, $rule, $seq, $hit_count) = OnBlacklist($sender, 0);
237
238       unless ($onlist) {
239         ($onlist, $rule, $seq, $hit_count) = OnNulllist($sender, 0);
240       } # unless
241     } # unless
242
243     my ($list, $sequence, $comment);
244
245     # Parse rule
246     if ($rule) {
247       if ($rule =~ /\((\w+):(\d+)\)\s+"(\S*)"/) {
248         $list     = $1;
249         $sequence = $2;
250         $rule     = $3;
251         $comment  = '';
252       } elsif ($rule =~ /\((\w+):(\d+)\)\s+"(\S*) - (.*)"/) {
253         $list     = $1;
254         $sequence = $2;
255         $rule     = $3;
256         $comment  = $4;
257       } # if
258
259       $rule =~ s/\\@/\@/;
260     } # if
261
262     $next++;
263
264     # Start Sender line
265     my $rowspan = @$msgs + 1;
266
267     print start_Tr {-valign => 'middle'};
268     print td {
269       -class   => $leftclass,
270       -align   => 'right',
271       -valign  => 'middle',
272       -rowspan => $rowspan,
273     }, $next,
274       checkbox {
275         -name   => "action$next",
276         -label  => '',
277         -valign => 'middle',
278       };
279
280       print hidden({
281         -name    => "email$next",
282         -default => $sender,
283       });
284
285     # Get subject line
286     $heading = "?subject=$heading" if $heading;
287
288     print td {
289       -class => $senderclass,
290     }, a {
291       -href  => "mailto:$sender$heading",
292     }, "&nbsp;$sender";
293
294     my $listlink = ($list and $sequence) ? "$list:$sequence" : '&nbsp;';
295
296     print td {
297       -class => $dataclass,
298       -align => 'right',
299     }, a {
300       href  => "/maps/php/list.php?type=$list&next=" . ($sequence - 1),
301     }, $listlink,
302     td {
303       -class => $dataclass,
304       -align => 'right',
305     }, "$hit_count&nbsp;",
306     td {
307       -class => $dataclass,
308     }, $rule,
309     td {
310       -class => $rightclass,
311     }, $comment;
312     print end_Tr;
313
314     for my $rec (@$msgs) {
315       # We increased $next earlier so do not add 1 here
316       if (($next % $lines) == (@senders % $lines)) {
317         $dataclass    = 'tablebottomdata';
318         $rightclass   = 'tablebottomright';
319         $subjectclass = 'subjectbottom';
320       } # if
321
322       if ($date eq substr ($rec->{timestamp}, 0, 10)) {
323         $rec->{date} = b font {-color => 'green'}, SQLDatetime2UnixDatetime $rec->{timestamp};
324       } else {
325         $rec->{date} = SQLDatetime2UnixDatetime $rec->{timestamp};
326       } # if
327
328       $rec->{subject} //= '&lt;Unspecified&gt;';
329       $rec->{subject} = decode_mimewords ($rec->{subject});
330       $rec->{subject} =~ s/\>/&gt;/g;
331       $rec->{subject} =~ s/\</&lt;/g;
332
333       print
334         Tr [
335           td {
336             -class   => $subjectclass,
337             -colspan => 4,
338           }, a {
339             -href  => "display.cgi?sender=$sender;msg_date=$rec->{timestamp}",
340            }, '&nbsp;&nbsp;&nbsp;&nbsp;' . $rec->{subject},
341           td {-class   => $rightclass,
342               -width   => '150',
343               -align   => 'right'}, span {-class => 'date'}, $rec->{date} . '&nbsp',
344         ];
345     } # for
346   } # for
347
348   print end_table;
349   print end_form;
350
351   MakeButtons $type;
352
353   return;
354 } # Body
355
356 # Main
357 my $condition;
358 my @scripts = ('ListActions.js');
359
360 my $heading_date =$date ne '' ? ' on ' . FormatDate ($date, 1) : '';
361
362 $userid = Heading(
363   'getcookie',
364   '',
365   (ucfirst ($type) . ' Report'),
366   $types{$type} [0],
367   $types{$type} [1] . $heading_date,
368   $table_name,
369   @scripts
370 );
371
372 $userid ||= $ENV{USER};
373
374 SetContext($userid);
375 NavigationBar($userid);
376
377 unless ($lines) {
378   my %options = GetUserOptions($userid);
379   $lines = $options{'Page'};
380 } # unless
381
382 if ($date eq '') {
383   $condition .= "type = '$type'";
384 } else {
385   my $sod = $date . ' 00:00:00';
386   my $eod = $date . ' 23:59:59';
387
388   $condition .= "type = '$type' and timestamp > '$sod' and timestamp < '$eod'";
389 } # if
390
391 $total = CountLog(
392   userid     => $userid,
393   additional => $condition,
394 );
395
396 $next ||= 0;
397
398 $last = $next + $lines < $total ? $next + $lines : $total;
399
400 if (($next - $lines) > 0) {
401   $prev = $next - $lines;
402 } else {
403   $prev = $next == 0 ? -1 : 0;
404 } # if
405
406 Body($type);
407
408 Footing($table_name);
409
410 exit;