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