Apache-ProxyRewrite
view release on metacpan or search on metacpan
ProxyRewrite.pm view on Meta::CPAN
# Agreement, including all Contributors.
#
# 2. GRANT OF RIGHTS
#
# a) Subject to the terms of this Agreement, each Contributor hereby
# grants Recipient a non-exclusive, worldwide, royalty-free
# copyright license to reproduce, prepare derivative works of,
# publicly display, publicly perform, distribute and sublicense the
# Contribution of such Contributor, if any, and such derivative
# works, in source code and object code form.
#
# b) Subject to the terms of this Agreement, each Contributor hereby
# grants Recipient a non-exclusive, worldwide, royalty-free patent
# license under Licensed Patents to make, use, sell, offer to sell,
# import and otherwise transfer the Contribution of such
# Contributor, if any, in source code and object code form. This
# patent license shall apply to the combination of the Contribution
# and the Program if, at the time the Contribution is added by the
# Contributor, such addition of the Contribution causes such
# combination to be covered by the Licensed Patents. The patent
# license shall not apply to any other combinations which include
# the Contribution. No hardware per se is licensed hereunder.
#
# c) Recipient understands that although each Contributor grants the
# licenses to its Contributions set forth herein, no assurances are
# provided by any Contributor that the Program does not infringe the
# patent or other intellectual property rights of any other entity.
# Each Contributor disclaims any liability to Recipient for claims
# brought by any other entity based on infringement of intellectual
# property rights or otherwise. As a condition to exercising the
# rights and licenses granted hereunder, each Recipient hereby
# assumes sole responsibility to secure any other intellectual
# property rights needed, if any. For example, if a third party
# patent license is required to allow Recipient to distribute the
# Program, it is Recipient's responsibility to acquire that license
# before distributing the Program.
#
# d) Each Contributor represents that to its knowledge it has
# sufficient copyright rights in its Contribution, if any, to grant
# the copyright license set forth in this Agreement.
#
# 3. REQUIREMENTS
#
# A Contributor may choose to distribute the Program in object code
# form under its own license agreement, provided that:
#
# a) it complies with the terms and conditions of this Agreement;
#
# and
#
# b) its license agreement:
#
# i) effectively disclaims on behalf of all Contributors all
# warranties and conditions, express and implied, including
# warranties or conditions of title and non-infringement, and
# implied warranties or conditions of merchantability and fitness
# for a particular purpose;
#
# ii) effectively excludes on behalf of all Contributors all
# liability for damages, including direct, indirect, special,
# incidental and consequential damages, such as lost profits;
# iii) states that any provisions which differ from this Agreement
# are offered by that Contributor alone and not by any other party;
# and
#
# iv) states that source code for the Program is available from such
# Contributor, and informs licensees how to obtain it in a
# reasonable manner on or through a medium customarily used for
# software exchange.
#
# When the Program is made available in source code form:
#
# a) it must be made available under this Agreement; and
#
# b) a copy of this Agreement must be included with each copy of the
# Program.
#
# Each Contributor must include the following in a conspicuous
# location in the Program:
#
# Copyright © {date here}, International Business Machines
# Corporation and others. All Rights Reserved.
#
# In addition, each Contributor must identify itself as the originator
# of its Contribution, if any, in a manner that reasonably allows
# subsequent Recipients to identify the originator of the
# Contribution.
#
# 4. COMMERCIAL DISTRIBUTION
#
# Commercial distributors of software may accept certain
# responsibilities with respect to end users, business partners and
# the like. While this license is intended to facilitate the
# commercial use of the Program, the Contributor who includes the
# Program in a commercial product offering should do so in a manner
# which does not create potential liability for other Contributors.
# Therefore, if a Contributor includes the Program in a commercial
# product offering, such Contributor ("Commercial Contributor") hereby
# agrees to defend and indemnify every other Contributor ("Indemnified
# Contributor") against any losses, damages and costs (collectively
# "Losses") arising from claims, lawsuits and other legal actions
# brought by a third party against the Indemnified Contributor to the
# extent caused by the acts or omissions of such Commercial
# Contributor in connection with its distribution of the Program in a
# commercial product offering. The obligations in this section do not
# apply to any claims or Losses relating to any actual or alleged
# intellectual property infringement. In order to qualify, an
# Indemnified Contributor must: a) promptly notify the Commercial
# Contributor in writing of such claim, and b) allow the Commercial
# Contributor to control, and cooperate with the Commercial
# Contributor in, the defense and any related settlement negotiations.
# The Indemnified Contributor may participate in any such claim at its
# own expense.
#
# For example, a Contributor might include the Program in a commercial
# product offering, Product X. That Contributor is then a Commercial
# Contributor. If that Commercial Contributor then makes performance
# claims, or offers warranties related to Product X, those performance
# claims and warranties are such Commercial Contributor's
# responsibility alone. Under this section, the Commercial Contributor
# would have to defend claims against the other Contributors related
ProxyRewrite.pm view on Meta::CPAN
my $res = $ua->simple_request($request);
$r->log->info("ProxyRewrite::fetch: Time proxy got document: ", time);
$r->log->info("ProxyRewrite::fetch: Original document size: ",
length($res->content));
return($res);
}
###############################################################################
###############################################################################
# parse: parse HTML and find all embedded URLs
###############################################################################
###############################################################################
sub parse {
my ($r, $remote_site, $response, $mapref) = @_;
my $buf = $response->content;
my ($lessthanpos, $greaterthanpos, $prediff, $diff,
$preblock, $tagblock, $lastblock);
my $pos = 0;
my $newbuf = '';
my $iscomment = 0;
my $buflen = length($buf);
while (($lessthanpos = index($buf, "<", $pos)) > -1) {
# Make a special case out of the comment in case there
# are nested tags within the comment, such as javascript code
# fragments. Not necessarily our problem, but it doesn't hurt much
# to deal with it.
if (substr($buf, $lessthanpos + 1, 3) eq '!--') {
$greaterthanpos = index($buf, "-->", $lessthanpos);
$iscomment = 1;
} else {
$greaterthanpos = index($buf, ">", $lessthanpos);
}
$prediff = $lessthanpos - $pos;
$diff = $greaterthanpos - $lessthanpos - 1;
$preblock = substr($buf, $pos, $prediff + 1);
$tagblock = substr($buf, $lessthanpos + 1, $diff);
if ($iscomment == 0) {
$r->log->debug("parse: Dealing with tag block: $tagblock");
&dealwithtag($r, $remote_site, \$tagblock, $mapref);
$r->log->debug("parse: Edited tag block: $tagblock");
} else {
$r->log->debug("parse: Skipped comment tag block");
$iscomment = 0;
}
$newbuf .= "$preblock$tagblock";
$pos = $greaterthanpos;
# If a tag isn't properly closed at the end of a document, we need to
# force an end to the loop.
last if ($pos == -1);
}
$lastblock = substr($buf, $pos, $buflen);
$newbuf .= "$lastblock";
$response->content($newbuf);
}
###############################################################################
###############################################################################
# dealwithtag: decides if there a URL in a tag and sends it to be rewritten
###############################################################################
###############################################################################
sub dealwithtag {
my ($r, $remote_site, $tagblock, $mapref) = @_;
my @blocks;
my ($tag, $lctag, $key, $lckey, $value, $lcvalue, $delay, $tmp, $i);
my $done = 0;
my $refresh = 0;
# Remove spaces around equal signs, eg 'src = bar' becomes 'src=bar'
$$tagblock =~ s/\s*(=)\s*/$1/g;
# Remove all other forms of whitespace in block
$$tagblock =~ s/(\f|\n|\r|\t)+/ /g;
# Remove leading spaces in block, eg < img ...> becomes <img ...>
$$tagblock =~ s/^\s+//;
# Remove leading and trailing whitespace within quotes
$$tagblock =~ s/(=[\"\'])\s*/$1/g;
$$tagblock =~ s/\s*([\"\'])/$1/g;
@blocks = split(/\s+/, $$tagblock);
$tag = shift(@blocks);
$lctag = lc($tag);
if (exists($LINK_ELEMENTS{$lctag})) {
$$tagblock = $tag;
for ($i = 0; $i < @blocks; $i++) {
if ($blocks[$i] =~ /=/) {
($key, $value) = split(/=/, $blocks[$i], 2);
$lckey = lc($key);
if ($lctag =~ /(applet|img|link|meta|object)/) {
if (exists($LINK_ELEMENTS{$lctag}{$lckey})) {
$value =~ s/(\"|\')//g;
if ($lctag eq 'meta') {
$lcvalue = lc($value);
if ($lckey eq 'http-equiv') {
if ($lcvalue eq 'refresh') {
$refresh = 1;
}
$$tagblock .= " $key=\"$value\"";
next;
} else {
# Must be a content key
while (!$done && $i < @blocks) {
$value .= " $blocks[++$i]";
if (1 == ($value =~ s/\"//g)) {
$done = 1;
}
}
$done = 0;
if ($refresh) {
$tmp = $value;
$value =~ /(\d)+\;\s*url=([^;\s]+)/i;
$delay = $1;
$value = $2;
} else {
$$tagblock .= " $key=\"$value\"";
next;
}
}
}
# deal with potential codebase issues
if ($lctag eq 'applet' || $lctag eq 'object') {
( run in 1.360 second using v1.01-cache-2.11-cpan-2398b32b56e )