chiark / gitweb /
Merge branch 'master' of ijackson@chiark.greenend.org.uk:things/ypp-sc-tools.pctb...
[ypp-sc-tools.web-live.git] / yarrg / Commods.pm
index 62c1f5e6e94dd21d468d19923d5ea3e4840a7dbd..5003037b1389b4cede801a2300dea6e99be69c42 100644 (file)
@@ -41,7 +41,7 @@ BEGIN {
                      &pipethrough_prep &pipethrough_run
                      &pipethrough_run_along &pipethrough_run_finish
                      &pipethrough_run_gzip
-                     &cgipostform &yarrgpostform);
+                     &cgipostform &yarrgpostform &cgi_get_caller);
     %EXPORT_TAGS = ( );
 
     @EXPORT_OK   = qw();
@@ -340,4 +340,17 @@ sub check_tsv_line ($$) {
     return @v;
 }
 
+sub cgi_get_caller () {
+    my $caller= $ENV{'REMOTE_ADDR'};
+    $caller= 'LOCAL' unless defined $caller;
+
+    my $fwdf= $ENV{'HTTP_X_FORWARDED_FOR'};
+    if (defined $fwdf) {
+       $fwdf =~ s/\s//g;
+       $fwdf =~ s/[^0-9.,]/?/g;
+       $caller= "$fwdf";
+    }
+    return $caller;
+}
+
 1;