]> git.donarmstrong.com Git - infobot.git/blobdiff - src/Modules/Quote.pl
ws
[infobot.git] / src / Modules / Quote.pl
index e72fd919e33c471c86aa10696c7ef2c5a3699ec5..147c230662cb9943e1776b2ac83f8fd128540391 100644 (file)
@@ -4,38 +4,52 @@
 #   Version: v0.1
 #    Author: Michael Urman <mu@zen.dhis.org>
 # Licensing: Artistic
+# changes from Morten Brix Pedersen (mbrix) and Tim Riker <Tim@Rikers.org>
 #
 
 package Quote;
 
 use strict;
 
+sub commify {
+    my $input = shift;
+    $input = reverse $input;
+    $input =~ s/(\d\d\d)(?=\d)(?!\d*\.)/$1,/g;
+    return scalar reverse $input;
+}
+
 sub Quote {
     my $stock = shift;
-    my @results = &main::getURL("http://quote.yahoo.com/q?s=$stock&d=v1");
+    my @results = &::getURL("http://quote.yahoo.com/d/quotes.csv" .
+           "?s=$stock&f=sl1d1t1c1ohgv&e=.csv");
+
 
     if (!scalar @results) {
-       &main::msg($main::who, "i could not get a stock quote :(");
+       &::msg($::who, "i could not get a stock quote :(");
     }
 
-    my $flathtml = join(" ", @results);
+    my ($reply);
+    foreach my $result (@results) {
+       # get rid of the quotes
+       $result =~ s/\"//g;
+
+       my ($ticker, $recent, $date, $time, $change, $open,
+           $high, $low, $volume) = split(',',$result);
+
+       # add some commas
+       # "+ 0" removes trailing cr/lf/etc.
+       my $newvol = commify($volume + 0);
 
-    local ($/) = "\n\n";
-    for ($flathtml) {
-       s/.*?\<tr align=right\>//;
-       s/Chart.*//;
-       s/<.*?>//g;             # remove HTML stuff.
-       s/\s{2,}/ /g;           # reduce excessive spaces.
-       s/^\s+//;               # get rid of leading whitespace
-       s/\s+$//;               # get rid of trailing whitespace
+       $reply .= ' ;; ' if $reply;
+       $reply .= "$ticker: $recent ($high/$low), $date $time, " .
+               "Opened $open, Volume $newvol, Change $change";
     }
-    my $reply = $flathtml;
 
-    if ($reply eq "" or length($reply) > 160) {
+    if ($reply eq "") {
        $reply = "i couldn't get the quote for $stock. sorry. :(";
     }
 
-    &main::performStrictReply($reply);
+    &::performStrictReply($reply);
 }
 
 1;