chiark / gitweb /
WIP upload
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 3 Jul 2009 18:06:30 +0000 (19:06 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Fri, 3 Jul 2009 18:06:30 +0000 (19:06 +0100)
pctb/commod-results-processor

index c54a23585a388b6bc7bb018a7be910e11a14a72d..c3cbe8e1b479447245540556754789863109f453 100755 (executable)
@@ -236,6 +236,7 @@ sub load_commodmap() {
 
 sub refresh_commodmap() {
     die unless $pctb;
+    $pctb =~ s,/*$,,;
     my $resp= $ua->get("$pctb/commodmap.php?version=2");
     die $resp->status_line unless $resp->is_success;
 
@@ -386,11 +387,19 @@ sub main__genmarketdata () {
     print $o or die $!;
 }
 
+sub save_upload_html ($$) {
+    my ($which, $resptxt) = @_;
+    open R, ">./#upload-$which#.html" or die $!;
+    print R $resptxt or die $!;
+    close R or die $!;
+}
+
 sub main__upload () {
     my $ocean= $ENV{'YPPSC_OCEAN'};  die unless $ocean;
     my $island= $ENV{'YPPSC_ISLAND'};  die unless $island;
     die unless $pctb;
     my $o= genmarketdata();
+    $pctb =~ s,/*$,,;
     my $url= "$pctb/upload.php";
     my $content= {
        'marketdata' => [ undef, "marketdata.gz",
@@ -398,11 +407,15 @@ sub main__upload () {
                          Content => $o
                          ]
                      };
+
+    print STDERR "Uploading data to server...\n";
+
     my $resp= $ua->post("$url", Content => $content,
                        Content_Type => 'form-data');
     die $resp->status_line unless $resp->is_success;
 
     my $resptxt= $resp->content();
+    save_upload_html('1', $resptxt);
 
     open R, ">./#upload-1#.html" or die $!;
     print R $resptxt or die $!;
@@ -419,17 +432,45 @@ sub main__upload () {
     my $filename= $filenames[0];
     my $forcerl= $forcerls[0];
 
-#print "[[[ $resptxt ]]]\n";
+    $ocean= ucfirst lc $ocean;
+    my @oceanids= $resptxt =~
+ m/\<option value\=\"(\d+)\"\>$ocean\<\/option\>/;
+    @oceanids==1 or die "@oceanids ?";
+
+    my $islandid;
+    while ($resptxt =~
+ m/^islands\[\d+\]\[\d+\]\=new\s+option\(\"(.*)\"\,(\d+)\)\s*$/mig
+          ) {
+       next unless $1 eq $island;
+       $islandid= $2;
+    }
+    defined $islandid or die;
+
+    die "@filenames ?" if grep { $_ ne $filename } @filenames;
+    die "@forcerls ?" if grep { $_ ne $forcerl } @forcerls;
 
-#    my $setsland= {
-#      'action' => 'setisland'
-#      'filename' => $filename,
-#      'forcereload' => $forcerl,
-#    my $url_setisland= "$url
+    my $setisland= {
+       'action' => 'setisland',
+       'filename' => $filename,
+       'forcereload' => $forcerl,
+       'ocean' => $oceanids[0],
+       'island' => $islandid,
+    };
+
+    print STDERR "Setting ocean and island...\n";
+
+    $resp= $ua->post("${url}IWJTEST", $setisland);
+    die $resp->status_line unless $resp->is_success;
+
+    $resptxt= $resp->content();
+    save_upload_html('2', $resptxt);
+
+    
+    
 #
 #http://pctb.ilk.org/upload.php?&ocean=2&island=48&action=setisland&forcereload=1244748679&filename=PFayDW' >v.html 
 #    
-    print ">$filename|$forcerl|@oceanids|$islandid<\n";
+#    print ">$filename|$forcerl|@oceanids|$islandid<\n";
 
     system 'printenv|grep YPP|sort';
 }