]> git.sesse.net Git - remoteglot/commitdiff
Support defaulting to a PGN for fetching.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 14 Nov 2014 23:03:05 +0000 (00:03 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 14 Nov 2014 23:03:05 +0000 (00:03 +0100)
config.pm
remoteglot.pl

index f73a5f5a224be00e2adfc7f1e17fdf6cdc1d5d54..f9d0897d63aecfebc3af10d9c0f50efcc2f2d4f0 100644 (file)
--- a/config.pm
+++ b/config.pm
@@ -6,7 +6,7 @@ package remoteglotconf;
 
 our $server = "freechess.org";
 our $nick = "SesseBOT";
 
 our $server = "freechess.org";
 our $nick = "SesseBOT";
-our $target = "GMCarlsen";
+our $target = "GMCarlsen";  # FICS username or HTTP to a PGN file.
 our $json_output = "/srv/analysis.sesse.net/www/analysis.json";
 
 our $engine_cmdline = "./stockfish";
 our $json_output = "/srv/analysis.sesse.net/www/analysis.json";
 
 our $engine_cmdline = "./stockfish";
index 4ccdac7e4b873d69143194795f2e6f71e0715806..d15a5282a41b52ef0e5d8237a335798c19def51d 100755 (executable)
@@ -93,7 +93,13 @@ $t->cmd("");
 $t->cmd("set shout 0");
 $t->cmd("set seek 0");
 $t->cmd("set style 12");
 $t->cmd("set shout 0");
 $t->cmd("set seek 0");
 $t->cmd("set style 12");
-$t->cmd("observe $remoteglotconf::target");
+if (defined($remoteglotconf::target)) {
+       if ($remoteglotconf::target =~ /^http:/) {
+               fetch_pgn($remoteglotconf::target);
+       } else {
+               $t->cmd("observe $remoteglotconf::target");
+       }
+}
 print "FICS ready.\n";
 
 my $ev1 = AnyEvent->io(
 print "FICS ready.\n";
 
 my $ev1 = AnyEvent->io(
@@ -172,9 +178,7 @@ sub handle_fics {
                } elsif ($msg =~ /^pgn (.*?)$/) {
                        my $url = $1;
                        $t->cmd("tell $who Starting to poll '$url'.");
                } elsif ($msg =~ /^pgn (.*?)$/) {
                        my $url = $1;
                        $t->cmd("tell $who Starting to poll '$url'.");
-                       AnyEvent::HTTP::http_get($url, sub {
-                               handle_pgn(@_, $url);
-                       });
+                       fetch_pgn($url);
                } elsif ($msg =~ /^stoppgn$/) {
                        $t->cmd("tell $who Stopping poll.");
                        $http_timer = undef;
                } elsif ($msg =~ /^stoppgn$/) {
                        $t->cmd("tell $who Stopping poll.");
                        $http_timer = undef;
@@ -188,6 +192,14 @@ sub handle_fics {
        #print "FICS: [$line]\n";
 }
 
        #print "FICS: [$line]\n";
 }
 
+# Starts periodic fetching of PGNs from the given URL.
+sub fetch_pgn {
+       my ($url) = @_;
+       AnyEvent::HTTP::http_get($url, sub {
+               handle_pgn(@_, $url);
+       });
+}
+
 sub handle_pgn {
        my ($body, $header, $url) = @_;
        my $pgn = Chess::PGN::Parse->new(undef, $body);
 sub handle_pgn {
        my ($body, $header, $url) = @_;
        my $pgn = Chess::PGN::Parse->new(undef, $body);
@@ -209,9 +221,7 @@ sub handle_pgn {
        }
        
        $http_timer = AnyEvent->timer(after => 1.0, cb => sub {
        }
        
        $http_timer = AnyEvent->timer(after => 1.0, cb => sub {
-               AnyEvent::HTTP::http_get($url, sub {
-                       handle_pgn(@_, $url);
-               });
+               fetch_pgn($url);
        });
 }
 
        });
 }