#!/usr/bin/perl use strict; use warnings; =head1 NAME jsxray-proxy - A JavaScript::XRay proxy =head1 SYNOPSIS jsxray [options] Options: -port -switches -no-xray -help -man =head1 DESCRIPTION Straps L onto L so I can use JavaScript::XRay really easily and on arbitrary web sites. =over =item -port ... Specifies a port to listen on. The default is 8080. =item -switches Specifies switches to use for JavaScript::XRay. Prefix your switch with no- to pass it as a turned off switch. =item -no-xray Doesn't install JavaScript::XRay. It's just a simple proxy now. =item -help Displays the program's options. =item -man Displays the entire manual. =back =cut use Getopt::Long 'GetOptions'; use autouse 'Pod::Usage', 'pod2usage'; GetOptions( help => \&help, man => \&man, 'port=i' => \( my ($port) = 8080 ), 'switches=s' => \( my ($switches) = 'all' ), 'no-xray' => \my ($no_xray) ) or pod2usage( -verbose => 0 ); sub help { pod2usage( -verbose => 1 ) } sub man { pod2usage( -verbose => 2 ) } require HTTP::Proxy; my $proxy = HTTP::Proxy->new( port => $port ); if ( not $no_xray ) { require HTTP::Proxy::BodyFilter::simple; require JavaScript::XRay; my %switches = map { /^no-(.+)/ ? ( $1 => 0 ) : ( $_ => 1 ) } $switches =~ /((?:no-)?[a-z]+)/g; my $filter = HTTP::Proxy::BodyFilter::simple->new( sub { return unless $_[2]->header('content-type') =~ /text/; my $uri = $_[2]->request->uri; my $xray = JavaScript::XRay->new( abs_uri => $uri, switches => \%switches ); ${ $_[1] } = $xray->filter( ${ $_[1] } ); } ); $proxy->push_filter( response => $filter ); } $proxy->start;