]> git.donarmstrong.com Git - infobot.git/blob - src/Modules/News.pl
- dbGet: warn if $select is NULL
[infobot.git] / src / Modules / News.pl
1 #
2 # News.pl: Advanced news management
3 #   Author: dms
4 #  Version: v0.3 (20014012)
5 #  Created: 20010326
6 #    Notes: Testing done by greycat, kudos!
7 #
8 ### structure:
9 # news{ channel }{ string } { item }
10 # newsuser{ channel }{ user } = time()
11 ### where item is:
12 #       Time    - when it was added (used for sorting)
13 #       Author  - Who by.
14 #       Expire  - Time to expire.
15 #       Text    - Actual text.
16 ###
17
18 use vars qw($who);
19
20 package News;
21
22 sub Parse {
23     my($what)   = @_;
24     $chan       = undef;
25     $who        = lc $::who;
26
27     if (!keys %::news) {
28         if (!exists $::cache{newsFirst}) {
29             &::DEBUG("news: looks like we enabled news option just then; loading up news file just in case.");
30             $::cache{newsFirst} = 1;
31         }
32
33         &readNews();
34     }
35
36     if ($::msgType ne "private") {
37         $chan = $::chan;
38     }
39
40     if (defined $what and $what =~ s/^($::mask{chan})\s*//) {
41         # todo: check if the channel exists aswell.
42         $chan   = lc $1;
43
44         if (!&::IsNickInChan($who, $chan)) {
45             &::notice($::who, "sorry but you're not on $chan.");
46             return;
47         }
48     }
49
50     if (!defined $chan) {
51         my @chans = &::getNickInChans($::who);
52
53         if (scalar @chans > 1) {
54             &::notice($::who, "error: I dunno which channel you are referring to since you're on more than one. Try 'news #chan ...' instead");
55             return;
56         }
57
58         if (scalar @chans == 0) {
59             &::notice($::who, "error: I couldn't find you on any chan. This must be a bug!");
60             return;
61         }
62
63         $chan   = $chans[0];
64         &::VERB("Guessed $::who being on chan $chan",2);
65         $::chan = $chan;        # hack for IsChanConf().
66     }
67
68     if (!defined $what or $what =~ /^\s*$/) {
69         &list();
70         return;
71     }
72
73     if ($what =~ /^add(\s+(.*))?$/i) {
74         &add($2);
75
76     } elsif ($what =~ /^del(\s+(.*))?$/i) {
77         &del($2);
78
79     } elsif ($what =~ /^mod(\s+(.*))?$/i) {
80         &mod($2);
81
82     } elsif ($what =~ /^set(\s+(.*))?$/i) {
83         &set($2);
84
85     } elsif ($what =~ /^(\d+)$/i) {
86         &::VERB("News: read shortcut called.",2);
87         &read($1);
88
89     } elsif ($what =~ /^read(\s+(.*))?$/i) {
90         &read($2);
91
92     } elsif ($what =~ /^(latest|new)(\s+(.*))?$/i) {
93         &latest($3 || $chan, 1);
94 #       $::cmdstats{'News latest'}++;
95
96     } elsif ($what =~ /^stats?$/i) {
97         &stats();
98
99     } elsif ($what =~ /^list$/i) {
100         &list();
101
102     } elsif ($what =~ /^(expire|text|desc)(\s+(.*))?$/i) {
103         # shortcut/link.
104         # nice hack.
105         my($arg1,$arg2) = split(/\s+/, $3, 2);
106         &set("$arg1 $1 $arg2");
107
108     } elsif ($what =~ /^help(\s+(.*))?$/i) {
109         &::help("news$1");
110
111     } elsif ($what =~ /^newsflush$/i) {
112         &::msg($::who, "newsflush called... check out the logs!");
113         &::newsFlush();
114
115     } elsif ($what =~ /^(un)?notify$/i) {
116         my $state = ($1) ? 0 : 1;
117
118         # todo: don't notify even if "news" is called.
119         if (!&::IsChanConf("newsNotifyAll")) {
120             &::DEBUG("news: chan => $chan, ::chan => $::chan.");
121             &::notice($::who, "not available for this channel or disabled altogether.");
122             return;
123         }
124
125         my $t = $::newsuser{$chan}{$who};
126         if ($state) {   # state = 1
127             if (defined $t and ($t == 0 or $t == -1)) {
128                 &::notice($::who, "enabled notify.");
129                 delete $::newsuser{$chan}{$who};
130                 return;
131             }
132             &::notice($::who, "already enabled.");
133
134         } else {                # state = 0
135             my $x = $::newsuser{$chan}{$who};
136             if (defined $x and ($x == 0 or $x == -1)) {
137                 &::notice($::who, "notify already disabled");
138                 return;
139             }
140             $::newsuser{$chan}{$who} = -1;
141             &::notice($::who, "notify is now disabled.");
142         }
143
144     } else {
145         &::notice($::who, "unknown command: $what");
146     }
147 }
148
149 sub readNews {
150     my $file = "$::bot_base_dir/blootbot-news.txt";
151     if (! -f $file or -z $file) {
152         return;
153     }
154
155     if (fileno NEWS) {
156         &::DEBUG("readNews: fileno exists, should never happen.");
157         return;
158     }
159
160     my($item,$chan);
161     my($ci,$cu) = (0,0);
162
163     open(NEWS, $file);
164     while (<NEWS>) {
165         chop;
166
167         # todo: allow commands.
168
169         if (/^[\s\t]+(\S+):[\s\t]+(.*)$/) {
170             if (!defined $item) {
171                 &::DEBUG("news: !defined item, never happen!");
172                 next;
173             }
174
175             $::news{$chan}{$item}{$1} = $2;
176             next;
177         }
178
179         # U <chan> <nick> <time>
180         if (/^U\s+(\S+)\s+(\S+)\s+(\d+)$/) {
181             $::newsuser{$1}{$2} = $3;
182             $cu++;
183             next;
184         }
185
186         if (/^(\S+)[\s\t]+(.*)$/) {
187             $chan = $1;
188             $item = $2;
189             $ci++;
190         }
191     }
192     close NEWS;
193
194     my $cn = scalar(keys %::news);
195     &::status("News: Read ".
196         $ci. &::fixPlural(" item", $ci). " for ".
197         $cn. &::fixPlural(" chan", $cn). ", ".
198         $cu. &::fixPlural(" user", $cu), " cache"
199     ) if ($ci or $cn or $cu);
200 }
201
202 sub writeNews {
203     if (!scalar keys %::news and !scalar keys %::newsuser) {
204         &::VERB("wN: nothing to write.",2);
205         return;
206     }
207
208     my $file = "$::bot_base_dir/blootbot-news.txt";
209
210     if (fileno NEWS) {
211         &::ERROR("fileno NEWS exists, should never happen.");
212         return;
213     }
214
215     # todo: add commands to output file.
216     my $c = 0;
217     my($cc,$ci,$cu) = (0,0,0);
218
219     open(NEWS, ">$file");
220     foreach $chan (sort keys %::news) {
221         $c = scalar keys %{ $::news{$chan} };
222         next unless ($c);
223         $cc++;
224
225         foreach $item (sort keys %{ $::news{$chan} }) {
226             $c = scalar keys %{ $::news{$chan}{$item} };
227             next unless ($c);
228             $ci++;
229
230             print NEWS "$chan $item\n";
231             foreach $what (sort keys %{ $::news{$chan}{$item} }) {
232                 print NEWS "    $what: $::news{$chan}{$item}{$what}\n";
233             }
234             print NEWS "\n";
235         }
236     }
237
238     # todo: show how many users we wrote down.
239     if (&::getChanConfList("newsKeepRead")) {
240         # old users are removed in newsFlush(), perhaps it should be
241         # done here.
242
243         foreach $chan (sort keys %::newsuser) {
244
245             foreach (sort keys %{ $::newsuser{$chan} }) {
246                 print NEWS "U $chan $_ $::newsuser{$chan}{$_}\n";
247                 $cu++;
248             }
249         }
250     }
251
252     close NEWS;
253
254     &::status("News: Wrote $ci items for $cc chans, $cu user cache.");
255 }
256
257 sub add {
258     my($str) = @_;
259
260     if (!defined $chan or !defined $str or $str =~ /^\s*$/) {
261         &::help("news add");
262         return;
263     }
264
265     if (length $str > 64) {
266         &::notice($::who, "That's not really an item (>64chars)");
267         return;
268     }
269
270     if (exists $::news{$chan}{$str}{Time}) {
271         &::notice($::who, "'$str' for $chan already exists!");
272         return;
273     }
274
275     $::news{$chan}{$str}{Time}  = time();
276     my $expire = &::getChanConfDefault("newsDefaultExpire",7);
277     $::news{$chan}{$str}{Expire}        = time() + $expire*60*60*24;
278     $::news{$chan}{$str}{Author}        = $::who;
279
280     my $agestr  = &::Time2String($::news{$chan}{$str}{Expire} - time() );
281     my $item    = &newsS2N($str);
282     &::notice($::who, "Added '\037$str\037' at [".localtime(time).
283                 "] by \002$::who\002 for item #\002$item\002.");
284     &::notice($::who, "Now do 'news text $item <your_description>'");
285     &::notice($::who, "This item will expire at \002".
286         localtime($::news{$chan}{$str}{Expire})."\002 [$agestr from now] "
287     );
288
289     &writeNews();
290 }
291
292 sub del {
293     my($what)   = @_;
294     my $item    = 0;
295
296     if (!defined $what) {
297         &::help("news del");
298         return;
299     }
300
301     if ($what =~ /^\d+$/) {
302         my $count = scalar keys %{ $::news{$chan} };
303         if (!$count) {
304             &::notice($::who, "No news for $chan.");
305             return;
306         }
307
308         if ($what > $count or $what < 0) {
309             &::notice($::who, "$what is out of range (max $count)");
310             return;
311         }
312
313         $item   = &getNewsItem($what);
314         $what   = $item;                # hack hack hack.
315
316     } else {
317         $_      = &getNewsItem($what);  # hack hack hack.
318         $what   = $_ if (defined $_);
319
320         if (!exists $::news{$chan}{$what}) {
321             my @found;
322             foreach (keys %{ $::news{$chan} }) {
323                 next unless (/\Q$what\E/);
324                 push(@found, $_);
325             }
326
327             if (!scalar @found) {
328                 &::notice($::who, "could not find $what.");
329                 return;
330             }
331
332             if (scalar @found > 1) {
333                 &::notice($::who, "too many matches for $what.");
334                 return;
335             }
336
337             $what       = $found[0];
338             &::DEBUG("news: del: str: guessed what => $what");
339         }
340     }
341
342     if (exists $::news{$chan}{$what}) {
343         my $auth = 0;
344         $auth++ if ($::who eq $::news{$chan}{$what}{Author});
345         $auth++ if (&::IsFlag("o"));
346
347         if (!$auth) {
348             # todo: show when it'll expire.
349             &::notice($::who, "Sorry, you cannot remove items; just let them expire on their own.");
350             return;
351         }
352
353         &::notice($::who, "ok, deleted '$what' from \002$chan\002...");
354         delete $::news{$chan}{$what};
355     } else {
356         &::notice($::who, "error: not found $what in news for $chan.");
357     }
358 }
359
360 sub list {
361     if (!scalar keys %{ $::news{$chan} }) {
362         &::notice($::who, "No News for \002$chan\002.");
363         return;
364     }
365
366     if (&::IsChanConf("newsKeepRead")) {
367         my $x = $::newsuser{$chan}{$who};
368
369         if (defined $x and ($x == 0 or $x == -1)) {
370             &::DEBUG("news: not updating time for $::who.");
371         } else {
372             if (!scalar keys %{ $::news{$chan} }) {
373                 &::DEBUG("news: should not add $chan/$::who to cache!");
374             }
375
376             $::newsuser{$chan}{$who} = time();
377         }
378     }
379
380     # &notice() breaks OPN :( - using msg() instead!
381     my $count = scalar keys %{ $::news{$chan} };
382     &::msg($::who, "|==== News for \002$chan\002: ($count items)");
383     my $newest  = 0;
384     foreach (keys %{ $::news{$chan} }) {
385         my $t   = $::news{$chan}{$_}{Time};
386         $newest = $t if ($t > $newest);
387     }
388     my $timestr = &::Time2String(time() - $newest);
389     &::msg($::who, "|= Last updated $timestr ago.");
390     &::msg($::who, " \037Num\037 \037Item ".(" "x40)." \037");
391
392     my $i = 1;
393     foreach ( &getNewsAll() ) {
394         my $subtopic    = $_;
395         my $setby       = $::news{$chan}{$subtopic}{Author};
396
397         if (!defined $subtopic) {
398             &::DEBUG("news: warn: subtopic == undef.");
399             next;
400         }
401
402         # todo: show request stats aswell.
403         &::msg($::who, sprintf("\002[\002%2d\002]\002 %s",
404                                 $i, $subtopic));
405         $i++;
406     }
407
408     &::msg($::who, "|= End of News.");
409     &::msg($::who, "use 'news read <#>' or 'news read <keyword>'");
410 }
411
412 sub read {
413     my($str) = @_;
414
415     if (!defined $chan or !defined $str or $str =~ /^\s*$/) {
416         &::help("news read");
417         return;
418     }
419
420     if (!scalar keys %{ $::news{$chan} }) {
421         &::notice($::who, "No News for \002$chan\002.");
422         return;
423     }
424
425     my $item    = &getNewsItem($str);
426     if (!defined $item or !scalar keys %{ $::news{$chan}{$item} }) {
427         &::notice($::who, "No news item called '$str'");
428         return;
429     }
430
431     if (!exists $::news{$chan}{$item}{Text}) {
432         &::notice($::who, "Someone forgot to add info to this news item");
433         return;
434     }
435
436     my $t       = localtime( $::news{$chan}{$item}{Time} );
437     my $a       = $::news{$chan}{$item}{Author};
438     my $text    = $::news{$chan}{$item}{Text};
439     my $num     = &newsS2N($item);
440     my $rwho    = $::news{$chan}{$item}{Request_By} || $::who;
441     my $rcount  = $::news{$chan}{$item}{Request_Count} || 0;
442
443     if (length $text < $::param{maxKeySize}) {
444         &::VERB("NEWS: Possible news->factoid redirection.",2);
445         my $f   = &::getFactoid($text);
446
447         if (defined $f) {
448             &::VERB("NEWS: ok, $text is factoid redirection.",2);
449             $f =~ s/^<REPLY>\s*//i;     # anything else?
450             $text = $f;
451         }
452     }
453
454     $_ = $::news{$chan}{$item}{'Expire'};
455     my $e;
456     if ($_) {
457         $e = sprintf("\037%s\037  [%s from now]",
458                 scalar(localtime($_)),
459                 &::Time2String($_ - time())
460         );
461     }
462
463     &::notice($::who, "+- News \002$chan\002 #$num: $item");
464     &::notice($::who, "| Added by $a at \037$t\037");
465     &::notice($::who, "| Expire: $e") if (defined $e);
466     &::notice($::who, $text);
467     &::notice($::who, "| Requested \002$rcount\002 times, last by \002$rwho\002") if ($rcount and $rwho);
468
469     $::news{$chan}{$item}{'Request_By'}   = $::who;
470     $::news{$chan}{$item}{'Request_Time'} = time();
471     $::news{$chan}{$item}{'Request_Count'}++;
472 }
473
474 sub mod {
475     my($item, $str) = split /\s+/, $_[0], 2;
476
477     if (!defined $item or $item eq "" or $str =~ /^\s*$/) {
478         &::help("news mod");
479         return;
480     }
481
482     my $news = &getNewsItem($item);
483
484     if (!defined $news) {
485         &::DEBUG("news: error: mod: news == undefined.");
486         return;
487     }
488     my $nnews = $::news{$chan}{$news}{Text};
489     my $mod_news  = $news;
490     my $mod_nnews = $nnews;
491
492     # SAR patch. mu++
493     if ($str =~ m|^\s*s([/,#\|])(.+?)\1(.*?)\1([a-z]*);?\s*$|) {
494         my ($delim, $op, $np, $flags) = ($1,$2,$3,$4);
495
496         if ($flags !~ /^(g)?$/) {
497             &::notice($::who, "error: Invalid flags to regex.");
498             return;
499         }
500
501         ### TODO: use m### to make code safe!
502         # todo: make code safer.
503         my $done = 0;
504         # todo: use eval to deal with flags easily.
505         if ($flags eq "") {
506             $done++ if (!$done and $mod_news  =~ s/\Q$op\E/$np/);
507             $done++ if (!$done and $mod_nnews =~ s/\Q$op\E/$np/);
508         } elsif ($flags eq "g") {
509             $done++ if ($mod_news  =~ s/\Q$op\E/$np/g);
510             $done++ if ($mod_nnews =~ s/\Q$op\E/$np/g);
511         }
512
513         if (!$done) {
514             &::notice($::who, "warning: regex not found in news.");
515             return;
516         }
517
518         if ($mod_news ne $news) { # news item.
519             if (exists $::news{$chan}{$mod_news}) {
520                 &::notice($::who, "item '$mod_news' already exists.");
521                 return;
522             }
523
524             &::notice($::who, "Moving item '$news' to '$mod_news' with SAR s/$op/$np/.");
525             foreach (keys %{ $::news{$chan}{$news} }) {
526                 $::news{$chan}{$mod_news}{$_} = $::news{$chan}{$news}{$_};
527                 delete $::news{$chan}{$news}{$_};
528             }
529             # needed?
530             delete $::news{$chan}{$news};
531         }
532
533         if ($mod_nnews ne $nnews) { # news Text/Description.
534             &::notice($::who, "Changing text for '$news' SAR s/$op/$np/.");
535             if ($mod_news ne $news) {
536                 $::news{$chan}{$mod_news}{Text} = $mod_nnews;
537             } else {
538                 $::news{$chan}{$news}{Text}     = $mod_nnews;
539             }
540         }
541
542         return;
543     } else {
544         &::notice($::who, "error: that regex failed ;(");
545         return;
546     }
547
548     &::notice($::who, "error: Invalid regex. Try s/1/2/, s#3#4#...");
549 }
550
551 sub set {
552     my($args) = @_;
553     my($item, $what, $value);
554
555     $item = $1 if ($args =~ s/^(\S+)\s*//);
556     $what = $1 if ($args =~ s/^(\S+)\s*//);
557     $value = $args;
558
559     &::DEBUG("news: set called.");
560
561     if ($item eq "") {
562         &::help("news set");
563         return;
564     }
565
566     my $news = &getNewsItem($item);
567
568     if (!defined $news) {
569         &::notice($::who, "Could not find item '$item' substring or # in news list.");
570         return;
571     }
572
573     # list all values for chan.
574     if (!defined $what or $what =~ /^\s*$/) {
575         &::msg($::who, "set: you didn't fill me on the arguments! (what and values)");
576         return;
577     }
578
579     my $ok = 0;
580     my @elements = ("Expire","Text");
581     foreach (@elements) {
582         next unless ($what =~ /^$_$/i);
583         $what = $_;
584         $ok++;
585         last;
586     }
587
588     if (!$ok) {
589         &::notice($::who, "Invalid set.  Try: @elements");
590         return;
591     }
592
593     # show (read) what.
594     if (!defined $value or $value =~ /^\s*$/) {
595         &::msg($::who, "set: you didn't fill me on the arguments! (value)");
596         return;
597     }
598
599     if (!exists $::news{$chan}{$news}) {
600         &::notice($::who, "news '$news' does not exist");
601         return;
602     }
603
604     if ($what eq "Expire") {
605         # todo: use do_set().
606
607         my $time = 0;
608         my $plus = ($value =~ s/^\+//g);
609         while ($value =~ s/^(\d+)(\S*)\s*//) {
610             my($int,$unit) = ($1,$2);
611             $time += $int       if ($unit =~ /^s(ecs?)?$/i);
612             $time += $int*60    if ($unit =~ /^m(in(utes?)?)?$/i);
613             $time += $int*60*60 if ($unit =~ /^h(ours?)?$/i);
614             $time += $int*60*60*24 if (!$unit or $unit =~ /^d(ays?)?$/i);
615             $time += $int*60*60*24*7 if ($unit =~ /^w(eeks?)?$/i);
616             $time += $int*60*60*24*30 if ($unit =~ /^mon(th)?$/i);
617         }
618
619         if ($value =~ s/^never$//i) {
620             # never.
621             $time = -1;
622         } elsif ($plus) {
623             # from now.
624             $time += time();
625         } else {
626             # from creation of item.
627             $time += $::news{$chan}{$news}{Time};
628         }
629
630         if (!$time or ($value and $value !~ /^never$/i)) {
631             &::DEBUG("news: set: Expire... need to parse.");
632             &::msg($::who, "hrm... couldn't parse that.");
633             return;
634         }
635
636         if ($time == -1) {
637             &::notice($::who, "Set never expire for \002$item\002." );
638         } elsif ($time < -1) {
639             &::DEBUG("news: time should never be negative ($time).");
640             return;
641         } else {
642             &::notice($::who, "Set expire for \002$item\002, to ".
643                 localtime($time) ." [".&::Time2String($time - time())."]" );
644
645             if (time() > $time) {
646                 &::DEBUG("news: hrm... time() > $time, should expire.");
647             }
648         }
649
650
651         $::news{$chan}{$news}{Expire} = $time;
652
653         return;
654     }
655
656     my $auth = 0;
657     &::DEBUG("news: who => '$::who'");
658     my $author = $::news{$chan}{$news}{Author};
659     $auth++ if ($::who eq $author);
660     $auth++ if (&::IsFlag("o"));
661     if (!defined $author) {
662         &::DEBUG("news: news{$chan}{$news}{Author} is not defined! auth'd anyway");
663         $::news{$chan}{$news}{Author} = $::who;
664         $author = $::who;
665         $auth++;
666     }
667
668     if (!$auth) {
669         # todo: show when it'll expire.
670         &::notice($::who, "Sorry, you cannot set items. (author $author owns it)");
671         return;
672     }
673
674     # todo: clean this up.
675     my $old = $::news{$chan}{$news}{$what};
676     if (defined $old) {
677         &::DEBUG("news: old => $old.");
678     }
679     $::news{$chan}{$news}{$what} = $value;
680     &::notice($::who, "Setting [$chan]/{$news}/<$what> to '$value'.");
681 }
682
683 sub latest {
684     my($tchan, $flag) = @_;
685
686     # hack hack hack.
687     $chan       ||= $tchan;
688     $who        ||= $::who;
689
690     # todo: if chan = undefined, guess.
691 #    if (!exists $::news{$chan}) {
692     if (!exists $::channels{$chan}) {
693         &::notice($::who, "invalid chan $chan") if ($flag);
694         return;
695     }
696
697     my $t = $::newsuser{$chan}{$who};
698     if (defined $t and ($t == 0 or $t == -1)) {
699         if ($flag) {
700             &::notice($::who, "if you want to read news, try /msg $::ident news or /msg $::ident news notify");
701         } else {
702             &::DEBUG("news: not displaying any new news for $::who");
703             return;
704         }
705     }
706
707     $::chan     = $chan;
708     my $x = &::IsChanConf("newsNotifyAll");
709     if (&::IsChanConf("newsNotifyAll") and !defined $t) {
710         $t = 1;
711     }
712
713     if (!defined $t) {
714         &::DEBUG("news: something went really wrong.");
715         &::DEBUG("news: chan => $chan, ::chan => $::chan");
716 #       &::notice($::who, "something went really wrong.");
717         return;
718     }
719
720     my @new;
721     foreach (keys %{ $::news{$chan} }) {
722         next if (!defined $t);
723         next if ($t > $::news{$chan}{$_}{Time});
724
725         # don't list new items if they don't have Text.
726         if (!exists $::news{$chan}{$_}{Text}) {
727             if (time() - $::news{$chan}{$_}{Time} > 60*60*24*3) {
728                 &::DEBUG("deleting news{$chan}{$_} because it was too old and had no text info.");
729                 delete $::news{$chan}{$_};
730             }
731
732             next;
733         }
734
735         push(@new, $_);
736     }
737
738     # !scalar @new, $flag
739     if (!scalar @new and $flag) {
740         &::notice($::who, "no new news for $chan.");
741         return;
742     }
743
744     # scalar @new, !$flag
745     my $unread  = scalar @new;
746     my $total   = scalar keys %{ $::news{$chan} };
747     if (!$flag) {
748         return unless ($unread);
749
750         my $reply = "There are unread news in $chan ($unread unread, $total total). /msg $::ident news $::chan latest";
751         $reply   .= "  If you don't want further news notification, /msg $::ident news unnotify" if ($unread == $total);
752         &::notice($::who, $reply);
753
754         return;
755     }
756
757     # scalar @new, $flag
758     if (scalar @new) {
759         &::notice($::who, "+==== New news for \002$chan\002 ($unread new; $total total):");
760
761         my $t = $::newsuser{$chan}{$who};
762         if (defined $t and $t > 1) {
763             my $timestr = &::Time2String( time() - $t );
764             &::notice($::who, "|= Last time read $timestr ago");
765         }
766
767         my @sorted;
768         foreach (@new) {
769             my $i   = &newsS2N($_);
770             $sorted[$i] = $_;
771         }
772
773         for (my $i=0; $i<=scalar(@sorted); $i++) {
774             my $news = $sorted[$i];
775             next unless (defined $news);
776
777             my $age = time() - $::news{$chan}{$news}{Time};
778             &::notice($::who, sprintf("\002[\002%2d\002]\002 %s",
779                 $i, $news) );
780 #               $i, $_, &::Time2String($age) ) );
781         }
782
783         &::notice($::who, "|= to read, do 'news read <#>' or 'news read <keyword>'");
784
785         # lame hack to prevent dupes if we just ignore it.
786         my $x = $::newsuser{$chan}{$who};
787         if (defined $x and ($x == 0 or $x == -1)) {
788             &::DEBUG("news: not updating time for $::who. (2)");
789         } else {
790             $::newsuser{$chan}{$who} = time();
791         }
792     }
793 }
794
795 ###
796 ### helpers...
797 ###
798
799 sub getNewsAll {
800     my %time;
801     foreach (keys %{ $::news{$chan} }) {
802         $time{ $::news{$chan}{$_}{Time} } = $_;
803     }
804
805     my @items;
806     foreach (sort { $a <=> $b } keys %time) {
807         push(@items, $time{$_});
808     }
809
810     return @items;
811 }
812
813 sub newsS2N {
814     my($what)   = @_;
815     my $item    = 0;
816     my @items;
817     my $no;
818
819     my %time;
820     foreach (keys %{ $::news{$chan} }) {
821         my $t = $::news{$chan}{$_}{Time};
822
823         if (!defined $t or $t !~ /^\d+$/) {
824             &::DEBUG("news: warn: t is undefined for news{$chan}{$_}{Time}; removing item.");
825             delete $::news{$chan}{$_};
826             next;
827         }
828
829         $time{$t} = $_;
830     }
831
832     foreach (sort { $a <=> $b } keys %time) {
833         $item++;
834         return $item if ($time{$_} eq $what);
835     }
836
837     &::DEBUG("newsS2N($what): failed...");
838 }
839
840 sub getNewsItem {
841     my($what)   = @_;
842     my $item    = 0;
843
844     my %time;
845     foreach (keys %{ $::news{$chan} }) {
846         my $t = $::news{$chan}{$_}{Time};
847
848         if (!defined $t or $t !~ /^\d+$/) {
849             &::DEBUG("news: warn: t is undefined for news{$chan}{$_}{Time}; removing item.");
850             delete $::news{$chan}{$_};
851             next;
852         }
853
854         $time{$t} = $_;
855     }
856
857     # number to string resolution.
858     if ($what =~ /^\d+$/) {
859         foreach (sort { $a <=> $b } keys %time) {
860             $item++;
861             return $time{$_} if ($item == $what);
862         }
863
864     } else {
865         # partial string to full string resolution
866         # in some cases, string->number resolution.
867
868         my @items;
869         my $no;
870         foreach (sort { $a <=> $b } keys %time) {
871             $item++;
872 #           $no = $item if ($time{$_} eq $what);
873 ##          if ($time{$_} eq $what) {
874 ##              $no = $item;
875 ##              next;
876 ##          }
877
878             push(@items, $time{$_}) if ($time{$_} =~ /\Q$what\E/i);
879         }
880
881 ##      if (defined $no and !@items) {
882 ##          &::DEBUG("news: string->number resolution: $what->$no.");
883 ##          return $no;
884 ##      }
885
886         if (scalar @items > 1) {
887             &::DEBUG("news: Multiple matches, not guessing.");
888             &::notice($::who, "Multiple matches, not guessing.");
889             return;
890         }
891
892         if (@items) {
893             &::DEBUG("news: gNI: part_string->full_string: $what->$items[0]");
894             return $items[0];
895         } else {
896             &::DEBUG("news: gNI: No match for '$what'");
897             return;
898         }
899     }
900
901     &::ERROR("getNewsItem: Should not happen (what = $what)");
902     return;
903 }
904
905 sub do_set {
906     my($what,$value) = @_;
907
908     if (!defined $chan) {
909         &::DEBUG("news: do_set: chan not defined.");
910         return;
911     }
912
913     if (!defined $what or $what =~ /^\s*$/) {
914         &::DEBUG("news: what $what is not defined.");
915         return;
916     }
917
918     if (!defined $value or $value =~ /^\s*$/) {
919         &::DEBUG("news: value $value is not defined.");
920         return;
921     }
922
923     &::DEBUG("news: do_set: TODO...");
924 }
925
926 sub stats {
927     &::DEBUG("News: stats called.");
928     &::msg($::who, "check my logs/console.");
929     my($i,$j) = (0,0);
930
931     # total request count.
932     foreach $chan (keys %::news) {
933         foreach (keys %{ $::news{$chan} }) {
934             $i += $::news{$chan}{$_}{Request_Count};
935         }
936     }
937     &::DEBUG("news: stats: total request count => $i");
938     $i = 0;
939
940     # total user cached.
941     foreach $chan (keys %::newsuser) {
942         $i += $::newsuser{$chan}{$_};
943     }
944     &::DEBUG("news: stats: total user cache => $i");
945     $i = 0;
946
947     # average latest time read.
948     my $t = time();
949     foreach $chan (keys %::newsuser) {
950         $i += $t - $::newsuser{$chan}{$_};
951         &::DEBUG(" i = $i");
952         $j++;
953     }
954     &::DEBUG("news: stats: average latest time read: total time: $i");
955     &::DEBUG("news: ... count: $j");
956     &::DEBUG("news:   average: ".sprintf("%.02f", $i/($j||1))." sec/user");
957     $i = $j = 0;
958 }
959
960 1;