419 lines
9.6 KiB
Perl
419 lines
9.6 KiB
Perl
package WebGUI::Session::Url;
|
|
|
|
=head1 LEGAL
|
|
|
|
-------------------------------------------------------------------
|
|
WebGUI is Copyright 2001-2006 Plain Black Corporation.
|
|
-------------------------------------------------------------------
|
|
Please read the legal notices (docs/legal.txt) and the license
|
|
(docs/license.txt) that came with this distribution before using
|
|
this software.
|
|
-------------------------------------------------------------------
|
|
http://www.plainblack.com info@plainblack.com
|
|
-------------------------------------------------------------------
|
|
|
|
=cut
|
|
|
|
|
|
use strict;
|
|
use URI;
|
|
use URI::Escape;
|
|
use WebGUI::International;
|
|
use WebGUI::Utility;
|
|
|
|
|
|
=head1 NAME
|
|
|
|
Package WebGUI::Session::Url
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
This package provides URL writing functionality. It is important that all WebGUI URLs be written using these methods so that they can contain any extra information that WebGUI needs to add to the URLs in order to function properly.
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
use WebGUI::Session::Url;
|
|
|
|
$url = WebGUI::Session::Url->new($session);
|
|
|
|
$string = $url->append($base, $pairs);
|
|
$string = $url->escape($string);
|
|
$string = $url->extras($path);
|
|
$string = $url->gateway($pageUrl, $pairs);
|
|
$string = $url->getRequestedUrl;
|
|
$string = $url->getSiteURL;
|
|
$string = $url->makeCompliant($string);
|
|
$string = $url->makeAbsolute($string);
|
|
$string = $url->page($string, $pairs);
|
|
$string = $url->unescape($string);
|
|
$string = $url->urlize($string);
|
|
|
|
$url->setSiteURL($string);
|
|
|
|
|
|
=head1 METHODS
|
|
|
|
These subroutines are available from this package:
|
|
|
|
=cut
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 append ( url, pairs )
|
|
|
|
Returns a URL after adding some information to the end of it.
|
|
|
|
=head3 url
|
|
|
|
The URL to append information to.
|
|
|
|
=head3 pairs
|
|
|
|
Name value pairs to add to the URL in the form of:
|
|
|
|
name1=value1;name2=value2;name3=value3
|
|
|
|
=cut
|
|
|
|
sub append {
|
|
my $self = shift;
|
|
my ($url);
|
|
$url = $_[0];
|
|
if ($url =~ /\?/) {
|
|
$url .= ';'.$_[1];
|
|
} else {
|
|
$url .= '?'.$_[1];
|
|
}
|
|
return $url;
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 DESTROY ( )
|
|
|
|
Deconstructor.
|
|
|
|
=cut
|
|
|
|
sub DESTROY {
|
|
my $self = shift;
|
|
undef $self;
|
|
}
|
|
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 escape ( string )
|
|
|
|
Encodes a string to make it safe to pass in a URL.
|
|
|
|
B<NOTE:> See $self->session->url->unescape()
|
|
|
|
=head3 string
|
|
|
|
The string to escape.
|
|
|
|
=cut
|
|
|
|
sub escape {
|
|
my $self = shift;
|
|
return URI::Escape::uri_escape_utf8(shift);
|
|
}
|
|
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 extras ( path )
|
|
|
|
Combinds the base extrasURL defined in the config file with a specfied path.
|
|
|
|
=head3 path
|
|
|
|
The path to the thing in the extras folder that you're referencing. Note that the preceding / is not necessary.
|
|
|
|
=cut
|
|
|
|
sub extras {
|
|
my $self = shift;
|
|
my $path = shift;
|
|
my $url = $self->session->config->get("extrasURL").'/'.$path;
|
|
$url =~ s/\/+/\//g;
|
|
return $url;
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 gateway ( pageURL [ , pairs ] )
|
|
|
|
Generate a URL based on WebGUI's location directive.
|
|
|
|
=head3 pageURL
|
|
|
|
The url of an asset that you wish to create a fully qualified URL for.
|
|
|
|
=head3 pairs
|
|
|
|
Name value pairs to add to the URL in the form of:
|
|
|
|
name1=value1;name2=value2;name3=value3
|
|
|
|
=cut
|
|
|
|
sub gateway {
|
|
my $self = shift;
|
|
my $pageUrl = shift;
|
|
my $pairs = shift;
|
|
my $url = $self->session->config->get("gateway").'/'.$pageUrl;
|
|
$url =~ s/\/+/\//g;
|
|
if ($self->session->setting->get("preventProxyCache") == 1) {
|
|
$url = $self->append($url,"noCache=".randint(0,1000).','.$self->session->datetime->time());
|
|
}
|
|
if ($pairs) {
|
|
$url = $self->append($url,$pairs);
|
|
}
|
|
return $url;
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 getRefererUrl ( )
|
|
|
|
Returns the URL of the page this request was refered from (no gateway, no query params, just the page url). Returns undef if there was no referer.
|
|
|
|
=cut
|
|
|
|
sub getRefererUrl {
|
|
my $self = shift;
|
|
my $referer = $self->session->env->get("HTTP_REFERER");
|
|
return undef unless ($referer);
|
|
my $url = $referer;
|
|
my $gateway = $self->session->config->get("gateway");
|
|
$url =~ s/htt\w+\:\/\/[A-Za-z0-9\.\-]+$gateway\/*(\S*)/$1/;;
|
|
if ($url eq $referer) {
|
|
return undef;
|
|
} else {
|
|
return $url;
|
|
}
|
|
}
|
|
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 getRequestedUrl ( )
|
|
|
|
Returns the URL of the page requested (no gateway, no query params, just the page url).
|
|
|
|
=cut
|
|
|
|
sub getRequestedUrl {
|
|
my $self = shift;
|
|
return undef unless ($self->session->request);
|
|
unless ($self->{_requestedUrl}) {
|
|
$self->{_requestedUrl} = $self->session->request->uri;
|
|
my $gateway = $self->session->config->get("gateway");
|
|
$self->{_requestedUrl} =~ s/^$gateway(.*)$/$1/;
|
|
}
|
|
return $self->{_requestedUrl};
|
|
}
|
|
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 getSiteURL ( )
|
|
|
|
Returns a constructed site url. The returned value can be overridden using the setSiteURL function.
|
|
|
|
=cut
|
|
|
|
sub getSiteURL {
|
|
my $self = shift;
|
|
unless ($self->{_siteUrl}) {
|
|
my $site = "";
|
|
my $sitenames = $self->session->config->get("sitename");
|
|
if ($self->session->setting->get("hostToUse") eq "sitename" || !isIn($self->session->env->get("HTTP_HOST"),@{$sitenames})) {
|
|
$site = $sitenames->[0];
|
|
} else {
|
|
$site = $self->session->env->get("HTTP_HOST") || $sitenames->[0];
|
|
}
|
|
my $proto = "http://";
|
|
if ($self->session->env->get("HTTPS") eq "on") {
|
|
$proto = "https://";
|
|
}
|
|
$self->{_siteUrl} = $proto.$site;
|
|
}
|
|
return $self->{_siteUrl};
|
|
}
|
|
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 makeAbsolute ( url , [ baseURL ] )
|
|
|
|
Returns an absolute url.
|
|
|
|
=head3 url
|
|
|
|
The url to make absolute.
|
|
|
|
=head3 baseURL
|
|
|
|
The base URL to use. This defaults to current page url.
|
|
|
|
=cut
|
|
|
|
sub makeAbsolute {
|
|
my $self = shift;
|
|
my $url = shift;
|
|
my $baseURL = shift || $self->page();
|
|
return URI->new_abs($url,$baseURL);
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 makeCompliant ( string )
|
|
|
|
Returns a string that has made into a WebGUI compliant URL based upon the language being submitted.
|
|
|
|
=head3 string
|
|
|
|
The string to make compliant. This is usually a page title or a filename.
|
|
|
|
=cut
|
|
|
|
sub makeCompliant {
|
|
my $self = shift;
|
|
my $url = shift;
|
|
my $i18n = WebGUI::International->new($self->session);
|
|
return $i18n->makeUrlCompliant($url);
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 new ( session )
|
|
|
|
Constructor.
|
|
|
|
=head3 session
|
|
|
|
A reference to the current session.
|
|
|
|
=cut
|
|
|
|
sub new {
|
|
my $class = shift;
|
|
my $session = shift;
|
|
bless {_session=>$session}, $class;
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 page ( [ pairs, useSiteUrl, skipPreventProxyCache ] )
|
|
|
|
Returns the URL of the current page.
|
|
|
|
=head3 pairs
|
|
|
|
Name value pairs to add to the URL in the form of:
|
|
gateway()
|
|
name1=value1;name2=value2;name3=value3
|
|
|
|
=head3 useSiteUrl
|
|
|
|
If set to "1" we'll use the full site URL rather than the script (gateway) URL.
|
|
|
|
=head3 skipPreventProxyCache
|
|
|
|
If set to "1" we'll skip adding the prevent proxy cache code to the url.
|
|
|
|
=cut
|
|
|
|
sub page {
|
|
my $self = shift;
|
|
my $pairs = shift;
|
|
my $useFullUrl = shift;
|
|
my $skipPreventProxyCache = shift;
|
|
my $url;
|
|
if ($useFullUrl) {
|
|
$url = $self->getSiteURL();
|
|
}
|
|
$url .= $self->gateway($self->session->asset ? $self->session->asset->get("url") : $self->getRequestedUrl);
|
|
if ($self->session->setting->get("preventProxyCache") == 1 && !$skipPreventProxyCache) {
|
|
$url = $self->append($url,"noCache=".randint(0,1000).','.$self->session->datetime->time());
|
|
}
|
|
if ($pairs) {
|
|
$url = $self->append($url,$pairs);
|
|
}
|
|
return $url;
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 session ( )
|
|
|
|
Returns a reference to the current session.
|
|
|
|
=cut
|
|
|
|
sub session {
|
|
my $self = shift;
|
|
return $self->{_session};
|
|
}
|
|
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 setSiteURL ( )
|
|
|
|
Sets an alternate site url.
|
|
|
|
=cut
|
|
|
|
sub setSiteURL {
|
|
my $self = shift;
|
|
$self->{_siteUrl} = shift;
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 unescape
|
|
|
|
Decodes a string that was URL encoded.
|
|
|
|
B<NOTE:> See $self->session->url->escape()
|
|
|
|
=head3 string
|
|
|
|
The string to unescape.
|
|
|
|
=cut
|
|
|
|
sub unescape {
|
|
my $self = shift;
|
|
return uri_unescape(shift);
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 urlize ( string )
|
|
|
|
Returns a url that is safe for WebGUI pages.
|
|
|
|
=head3 string
|
|
|
|
The string to urlize.
|
|
|
|
=cut
|
|
|
|
sub urlize {
|
|
my $self = shift;
|
|
my ($value);
|
|
$value = lc(shift); #lower cases whole string
|
|
$value = $self->makeCompliant($value);
|
|
$value =~ s/\/$//;
|
|
return $value;
|
|
}
|
|
|
|
|
|
1;
|