]> git.donarmstrong.com Git - infobot.git/blob - src/Modules/News.pl
- changed &Get*() to &get*(), &Delete*() to &del*()
[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   = lc $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 or -z $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     my $cn = scalar(keys %::news);
186     &::status("News: Read $ci items for $cn chans, $cu users cache")
187                 if ($ci or $cn or $cu);
188 }
189
190 sub writeNews {
191     if (!scalar keys %::news and !scalar keys %::newsuser) {
192         &::VERB("wN: nothing to write.",2);
193         return;
194     }
195
196     my $file = "$::bot_base_dir/blootbot-news.txt";
197
198     if (fileno NEWS) {
199         &::ERROR("fileno NEWS exists, should never happen.");
200         return;
201     }
202
203     # todo: add commands to output file.
204     my $c = 0;
205     my($cc,$ci,$cu) = (0,0,0);
206
207     open(NEWS, ">$file");
208     foreach $chan (sort keys %::news) {
209         $c = scalar keys %{ $::news{$chan} };
210         next unless ($c);
211         $cc++;
212
213         foreach $item (sort keys %{ $::news{$chan} }) {
214             $c = scalar keys %{ $::news{$chan}{$item} };
215             next unless ($c);
216             $ci++;
217
218             print NEWS "$chan $item\n";
219             foreach $what (sort keys %{ $::news{$chan}{$item} }) {
220                 print NEWS "    $what: $::news{$chan}{$item}{$what}\n";
221             }
222             print NEWS "\n";
223         }
224     }
225
226     # todo: show how many users we wrote down.
227     if (&::getChanConfList("newsKeepRead")) {
228         # old users are removed in newsFlush(), perhaps it should be
229         # done here.
230
231         foreach $chan (sort keys %::newsuser) {
232
233             foreach (sort keys %{ $::newsuser{$chan} }) {
234                 print NEWS "U $chan $_ $::newsuser{$chan}{$_}\n";
235                 $cu++;
236             }
237         }
238     }
239
240     close NEWS;
241
242     &::status("News: Wrote $ci items for $cc chans, $cu user cache.");
243 }
244
245 sub add {
246     my($str) = @_;
247
248     if (!defined $chan or !defined $str or $str =~ /^\s*$/) {
249         &::help("news add");
250         return;
251     }
252
253     if (length $str > 64) {
254         &::notice($::who, "That's not really an item (>64chars)");
255         return;
256     }
257
258     if (exists $::news{$chan}{$str}{Time}) {
259         &::notice($::who, "'$str' for $chan already exists!");
260         return;
261     }
262
263     $::news{$chan}{$str}{Time}  = time();
264     my $expire = &::getChanConfDefault("newsDefaultExpire",7);
265     $::news{$chan}{$str}{Expire}        = time() + $expire*60*60*24;
266     $::news{$chan}{$str}{Author}        = $::who;
267
268     my $agestr  = &::Time2String($::news{$chan}{$str}{Expire} - time() );
269     my $item    = &newsS2N($str);
270     &::notice($::who, "Added '\037$str\037' at [".localtime(time).
271                 "] by \002$::who\002 for item #\002$item\002.");
272     &::notice($::who, "Now do 'news text $item <your_description>'");
273     &::notice($::who, "This item will expire at \002".
274         localtime($::news{$chan}{$str}{Expire})."\002 [$agestr from now] "
275     );
276
277     &writeNews();
278 }
279
280 sub del {
281     my($what)   = @_;
282     my $item    = 0;
283
284     if (!defined $what) {
285         &::help("news del");
286         return;
287     }
288
289     if ($what =~ /^\d+$/) {
290         my $count = scalar keys %{ $::news{$chan} };
291         if (!$count) {
292             &::notice($::who, "No news for $chan.");
293             return;
294         }
295
296         if ($what > $count or $what < 0) {
297             &::notice($::who, "$what is out of range (max $count)");
298             return;
299         }
300
301         $item   = &getNewsItem($what);
302         $what   = $item;                # hack hack hack.
303
304     } else {
305         $_      = &getNewsItem($what);  # hack hack hack.
306         $what   = $_ if (defined $_);
307
308         if (!exists $::news{$chan}{$what}) {
309             my @found;
310             foreach (keys %{ $::news{$chan} }) {
311                 next unless (/\Q$what\E/);
312                 push(@found, $_);
313             }
314
315             if (!scalar @found) {
316                 &::notice($::who, "could not find $what.");
317                 return;
318             }
319
320             if (scalar @found > 1) {
321                 &::notice($::who, "too many matches for $what.");
322                 return;
323             }
324
325             $what       = $found[0];
326             &::DEBUG("del: str: guessed what => $what");
327         }
328     }
329
330     if (exists $::news{$chan}{$what}) {
331         my $auth = 0;
332         $auth++ if ($::who eq $::news{$chan}{$what}{Author});
333         $auth++ if (&::IsFlag("o"));
334
335         if (!$auth) {
336             # todo: show when it'll expire.
337             &::notice($::who, "Sorry, you cannot remove items; just let them expire on their own.");
338             return;
339         }
340
341         &::notice($::who, "ok, deleted '$what' from \002$chan\002...");
342         delete $::news{$chan}{$what};
343     } else {
344         &::notice($::who, "error: not found $what in news for $chan.");
345     }
346 }
347
348 sub list {
349     if (!scalar keys %{ $::news{$chan} }) {
350         &::notice($::who, "No News for \002$chan\002.");
351         return;
352     }
353
354     if (&::IsChanConf("newsKeepRead")) {
355         my $x = $::newsuser{$chan}{$::who};
356
357         if (defined $x and ($x == 0 or $x == -1)) {
358             &::DEBUG("not updating time for $::who.");
359         } else {
360             $::newsuser{$chan}{$::who} = time();
361         }
362     }
363
364     my $count = scalar keys %{ $::news{$chan} };
365     &::notice($::who, "|==== News for \002$chan\002: ($count items)");
366     my $newest  = 0;
367     foreach (keys %{ $::news{$chan} }) {
368         my $t   = $::news{$chan}{$_}{Time};
369         $newest = $t if ($t > $newest);
370     }
371     my $timestr = &::Time2String(time() - $newest);
372     &::notice($::who, "|= Last updated $timestr ago.");
373     &::notice($::who, " \037Num\037 \037Item ".(" "x40)." \037");
374
375     my $i = 1;
376     foreach ( &getNewsAll() ) {
377         my $subtopic    = $_;
378         my $setby       = $::news{$chan}{$subtopic}{Author};
379
380         if (!defined $subtopic) {
381             &::DEBUG("warn: subtopic == undef.");
382             next;
383         }
384
385         # todo: show request stats aswell.
386         &::notice($::who, sprintf("\002[\002%2d\002]\002 %s",
387                                 $i, $subtopic));
388         $i++;
389     }
390
391     &::notice($::who, "|= End of News.");
392     &::notice($::who, "use 'news read <#>' or 'news read <keyword>'");
393 }
394
395 sub read {
396     my($str) = @_;
397
398     if (!defined $chan or !defined $str or $str =~ /^\s*$/) {
399         &::help("news read");
400         return;
401     }
402
403     if (!scalar keys %{ $::news{$chan} }) {
404         &::notice($::who, "No News for \002$chan\002.");
405         return;
406     }
407
408     my $item    = &getNewsItem($str);
409     if (!defined $item or !scalar keys %{ $::news{$chan}{$item} }) {
410         &::notice($::who, "No news item called '$str'");
411         return;
412     }
413
414     if (!exists $::news{$chan}{$item}{Text}) {
415         &::notice($::who, "Someone forgot to add info to this news item");
416         return;
417     }
418
419     my $t       = localtime( $::news{$chan}{$item}{Time} );
420     my $a       = $::news{$chan}{$item}{Author};
421     my $text    = $::news{$chan}{$item}{Text};
422     my $num     = &newsS2N($item);
423     my $rwho    = $::news{$chan}{$item}{Request_By} || $::who;
424     my $rcount  = $::news{$chan}{$item}{Request_Count} || 0;
425
426     if (length $text < $::param{maxKeySize}) {
427         &::DEBUG("NEWS: Possible news->factoid redirection.");
428         my $f   = &::getFactoid($text);
429
430         if (defined $f) {
431             &::DEBUG("NEWS: ok, $text is factoid redirection.");
432             $f =~ s/^<REPLY>\s*//i;     # anything else?
433             $text = $f;
434         }
435     }
436
437     &::notice($::who, "+- News \002$chan\002 #$num: \037$item\037");
438     &::notice($::who, "| Added by $a at $t");
439     &::notice($::who, "| Requested $rcount times, last by $rwho") if ($rcount);
440     &::notice($::who, $text);
441
442     $::news{$chan}{$item}{'Request_By'}   = $::who;
443     $::news{$chan}{$item}{'Request_Time'} = time();
444     $::news{$chan}{$item}{'Request_Count'}++;
445 }
446
447 sub mod {
448     my($item, $str) = split /\s+/, $_[0], 2;
449
450     if (!defined $item or $item eq "" or $str =~ /^\s*$/) {
451         &::help("news mod");
452         return;
453     }
454
455     my $news = &getNewsItem($item);
456
457     if (!defined $news) {
458         &::DEBUG("error: mod: news == undefined.");
459         return;
460     }
461     my $nnews = $::news{$chan}{$news}{Text};
462     my $mod_news  = $news;
463     my $mod_nnews = $nnews;
464
465     # SAR patch. mu++
466     if ($str =~ m|^\s*s([/,#\|])(.+?)\1(.*?)\1([a-z]*);?\s*$|) {
467         my ($delim, $op, $np, $flags) = ($1,$2,$3,$4);
468
469         if ($flags !~ /^(g)?$/) {
470             &::notice($::who, "error: Invalid flags to regex.");
471             return;
472         }
473
474         ### TODO: use m### to make code safe!
475         # todo: make code safer.
476         my $done = 0;
477         # todo: use eval to deal with flags easily.
478         if ($flags eq "") {
479             $done++ if (!$done and $mod_news  =~ s/\Q$op\E/$np/);
480             $done++ if (!$done and $mod_nnews =~ s/\Q$op\E/$np/);
481         } elsif ($flags eq "g") {
482             $done++ if ($mod_news  =~ s/\Q$op\E/$np/g);
483             $done++ if ($mod_nnews =~ s/\Q$op\E/$np/g);
484         }
485
486         if (!$done) {
487             &::notice($::who, "warning: regex not found in news.");
488             return;
489         }
490
491         if ($mod_news ne $news) { # news item.
492             if (exists $::news{$chan}{$mod_news}) {
493                 &::notice($::who, "item '$mod_news' already exists.");
494                 return;
495             }
496
497             &::notice($::who, "Moving item '$news' to '$mod_news' with SAR s/$op/$np/.");
498             foreach (keys %{ $::news{$chan}{$news} }) {
499                 $::news{$chan}{$mod_news}{$_} = $::news{$chan}{$news}{$_};
500                 delete $::news{$chan}{$news}{$_};
501             }
502             # needed?
503             delete $::news{$chan}{$news};
504         }
505
506         if ($mod_nnews ne $nnews) { # news Text/Description.
507             &::notice($::who, "Changing text for '$news' SAR s/$op/$np/.");
508             if ($mod_news ne $news) {
509                 $::news{$chan}{$mod_news}{Text} = $mod_nnews;
510             } else {
511                 $::news{$chan}{$news}{Text}     = $mod_nnews;
512             }
513         }
514
515         return;
516     } else {
517         &::notice($::who, "error: that regex failed ;(");
518         return;
519     }
520
521     &::notice($::who, "error: Invalid regex. Try s/1/2/, s#3#4#...");
522 }
523
524 sub set {
525     my($args) = @_;
526     $args =~ /^(\S+)\s+(\S+)\s+(.*)$/;
527     my($item, $what, $value) = ($1,$2,$3);
528
529     &::DEBUG("set called.");
530
531     if ($item eq "") {
532         &::help("news set");
533         return;
534     }
535
536     &::DEBUG("item => '$item'.");
537     my $news = &getNewsItem($item);
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") if ($flag);
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             if (time() - $::news{$chan}{$_}{Time} > 60*60*24*3) {
694                 &::DEBUG("deleting news{$chan}{$_} because it was too old and had no text info.");
695                 delete $::news{$chan}{$_};
696             } else {
697                 &::WARN("news: news{$chan}{$_}{Text} undef.");
698             }
699
700             next;
701         }
702
703         push(@new, $_);
704     }
705
706     # !scalar @new, $flag
707     if (!scalar @new and $flag) {
708         &::notice($::who, "no new news for $chan.");
709         return;
710     }
711
712     # scalar @new, !$flag
713     my $unread  = scalar @new;
714     my $total   = scalar keys %{ $::news{$chan} };
715     if (!$flag) {
716         return unless ($unread);
717
718         my $reply = "There are unread news in $chan ($unread unread, $total total). /msg $::ident news latest.";
719         $reply   .= "  If you don't want further news notification, /msg $::ident news unnotify" if ($unread == $total);
720         &::notice($::who, $reply);
721
722         return;
723     }
724
725     # scalar @new, $flag
726     if (scalar @new) {
727         &::notice($::who, "+==== New news for \002$chan\002 ($unread new; $total total):");
728
729         my $t = $::newsuser{$chan}{$::who};
730         if (defined $t and $t > 1) {
731             my $timestr = &::Time2String( time() - $t );
732             &::notice($::who, "|= Last time read $timestr ago");
733         }
734
735         my @sorted;
736         foreach (@new) {
737             my $i   = &newsS2N($_);
738             $sorted[$i] = $_;
739         }
740
741         for (my $i=0; $i<=scalar(@sorted); $i++) {
742             my $news = $sorted[$i];
743             next unless (defined $news);
744
745             my $age = time() - $::news{$chan}{$news}{Time};
746             &::notice($::who, sprintf("\002[\002%2d\002]\002 %s",
747                 $i, $news) );
748 #               $i, $_, &::Time2String($age) ) );
749         }
750
751         &::notice($::who, "|= to read, do 'news read <#>' or 'news read <keyword>'");
752
753         # lame hack to prevent dupes if we just ignore it.
754         my $x = $::newsuser{$chan}{$::who};
755         if (defined $x and ($x == 0 or $x == -1)) {
756             &::DEBUG("not updating time for $::who. (2)");
757         } else {
758             $::newsuser{$chan}{$::who} = time();
759         }
760     }
761 }
762
763 ###
764 ### helpers...
765 ###
766
767 sub getNewsAll {
768     my %time;
769     foreach (keys %{ $::news{$chan} }) {
770         $time{ $::news{$chan}{$_}{Time} } = $_;
771     }
772
773     my @items;
774     foreach (sort { $a <=> $b } keys %time) {
775         push(@items, $time{$_});
776     }
777
778     return @items;
779 }
780
781 sub newsS2N {
782     my($what)   = @_;
783     my $item    = 0;
784     my @items;
785     my $no;
786
787     my %time;
788     foreach (keys %{ $::news{$chan} }) {
789         my $t = $::news{$chan}{$_}{Time};
790
791         if (!defined $t or $t !~ /^\d+$/) {
792             &::DEBUG("warn: t is undefined for news{$chan}{$_}{Time}; removing item.");
793             delete $::news{$chan}{$_};
794             next;
795         }
796
797         $time{$t} = $_;
798     }
799
800     foreach (sort { $a <=> $b } keys %time) {
801         $item++;
802         return $item if ($time{$_} eq $what);
803     }
804
805     &::DEBUG("newsS2N($what): failed...");
806 }
807
808 sub getNewsItem {
809     my($what)   = @_;
810     my $item    = 0;
811
812     my %time;
813     foreach (keys %{ $::news{$chan} }) {
814         my $t = $::news{$chan}{$_}{Time};
815
816         if (!defined $t or $t !~ /^\d+$/) {
817             &::DEBUG("warn: t is undefined for news{$chan}{$_}{Time}; removing item.");
818             delete $::news{$chan}{$_};
819             next;
820         }
821
822         $time{$t} = $_;
823     }
824
825     # number to string resolution.
826     if ($what =~ /^\d+$/) {
827         foreach (sort { $a <=> $b } keys %time) {
828             $item++;
829             return $time{$_} if ($item == $what);
830         }
831
832     } else {
833         # partial string to full string resolution
834         # in some cases, string->number resolution.
835
836         my @items;
837         my $no;
838         foreach (sort { $a <=> $b } keys %time) {
839             $item++;
840 #           $no = $item if ($time{$_} eq $what);
841             if ($time{$_} eq $what) {
842                 $no = $item;
843                 next;
844             }
845
846             push(@items, $time{$_}) if ($time{$_} =~ /\Q$what\E/i);
847         }
848
849         if (defined $no and !@items) {
850             &::DEBUG("string->number resolution: $what->$no.");
851             return $no;
852         }
853
854         if (scalar @items > 1) {
855             &::DEBUG("Multiple matches, not guessing.");
856             &::notice($::who, "Multiple matches, not guessing.");
857             return;
858         }
859
860         if (@items) {
861             &::DEBUG("gNI: part_string->full_string: $what->$items[0]");
862             return $items[0];
863         } else {
864             &::DEBUG("gNI: No match.");
865             return;
866         }
867     }
868
869     &::ERROR("getNewsItem: Should not happen (what = $what)");
870     return;
871 }
872
873 sub do_set {
874     my($what,$value) = @_;
875
876     if (!defined $chan) {
877         &::DEBUG("do_set: chan not defined.");
878         return;
879     }
880
881     if (!defined $what or $what =~ /^\s*$/) {
882         &::DEBUG("what $what is not defined.");
883         return;
884     }
885     if (!defined $value or $value =~ /^\s*$/) {
886         &::DEBUG("value $value is not defined.");
887         return;
888     }
889
890     &::DEBUG("do_set: TODO...");
891 }
892
893 1;