#!/usr/bin/perl
use LWP::UserAgent;
use Time::HiRes qw(gettimeofday);
use URI::Escape;
sub google_append_color {
my @color_array = split(/,/, $_[0]);
return $color_array[$_[1] % @color_array];
}
sub google_append_screen_res {
my $screen_res = $ENV{"HTTP_UA_PIXELS"};
my $delimiter = "x";
if ($screen_res == "") {
$screen_res = $ENV{"HTTP_X_UP_DEVCAP_SCREENPIXELS"};
$delimiter = ",";
}
my @res_array = split($delimiter, $screen_res);
if (@res_array == 2) {
return "&u_w=" . $res_array[0] . "&u_h=" . $res_array[1];
}
}
my $google_dt = sprintf("%.0f", 1000 * gettimeofday());
my $google_scheme = ($ENV{"HTTPS"} eq "on") ? "https://" : "http://";
my $google_host = uri_escape($google_scheme . $ENV{"HTTP_HOST"});
my $google_ad_url = "http://pagead2.googlesyndication.com/pagead/ads?" .
"ad_type=text" .
"&channel=4739333113" .
"&client=ca-mb-pub-3230937733305989" .
"&color_border=" . google_append_color("FFFFFF", $google_dt) .
"&color_bg=" . google_append_color("FFFFFF", $google_dt) .
"&color_link=" . google_append_color("0000CC", $google_dt) .
"&color_text=" . google_append_color("000000", $google_dt) .
"&color_url=" . google_append_color("008000", $google_dt) .
"&dt=" . $google_dt .
"&format=mobile_single" .
"&host=" . $google_host .
"&ip=" . uri_escape($ENV{"REMOTE_ADDR"}) .
"&markup=xhtml" .
"&oe=utf8" .
"&output=xhtml" .
"&ref=" . uri_escape($ENV{"HTTP_REFERER"}) .
"&url=" . $google_host . uri_escape($ENV{"REQUEST_URI"}) .
"&useragent=" . uri_escape($ENV{"HTTP_USER_AGENT"}) .
google_append_screen_res();
my $google_ua = LWP::UserAgent->new;
my $google_ad_output = $google_ua->get($google_ad_url);
if ($google_ad_output->is_success) {
print $google_ad_output->content;
}
[1] 前のページへ»
[3] 次のページへ»
ぽくすと☆2007年11月バックナンバー
[1] 2007年10月»
[3] 2007年12月»
[2] ページ先頭へ»
[0] トップページへ»
Copyright
(C) 2007 poxt.net [ポクスト]. All Rights Reserved.