1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
# Copyright (C) 2008-2010, Sebastian Riedel.
package Mojo::Path;
use strict;
use warnings;
use base 'Mojo::Base';
use overload '""' => sub { shift->to_string }, fallback => 1;
use Mojo::ByteStream 'b';
use Mojo::URL;
__PACKAGE__->attr([qw/leading_slash trailing_slash/] => 0);
__PACKAGE__->attr(parts => sub { [] });
sub new {
my $self = shift->SUPER::new();
$self->parse(@_);
return $self;
}
sub append {
my $self = shift;
for (@_) {
my $value = "$_";
# *( pchar / "/" / "?" )
$value = b($value)->url_escape($Mojo::URL::PCHAR)->to_string;
push @{$self->parts}, $value;
}
return $self;
}
sub canonicalize {
my $self = shift;
# Resolve path
my @path;
for my $part (@{$self->parts}) {
# ".."
if ($part eq '..') {
# Leading '..' can't be resolved
unless (@path && $path[-1] ne '..') { push @path, '..' }
# Uplevel
else { pop @path }
next;
}
# "."
next if $part eq '.';
# Part
push @path, $part;
}
$self->parts(\@path);
return $self;
}
# Homer, the plant called.
# They said if you don't show up tomorrow don't bother showing up on Monday.
# Woo-hoo. Four-day weekend.
sub clone {
my $self = shift;
my $clone = Mojo::Path->new;
$clone->parts([@{$self->parts}]);
$clone->leading_slash($self->leading_slash);
$clone->trailing_slash($self->trailing_slash);
return $clone;
}
sub parse {
my ($self, $path) = @_;
$path ||= '';
# Meta
$self->leading_slash(1) if $path =~ /^\//;
$self->trailing_slash(1) if $path =~ /\/$/;
# Unescape
$path = b($path)->url_unescape($Mojo::URL::PCHAR)->to_string;
# Parse
my @parts;
for my $part (split '/', $path) {
# Empty parts before the first are garbage
next unless length $part or scalar @parts;
# Empty parts behind the first are ok
$part = '' unless defined $part;
# Store
push @parts, $part;
}
$self->parts(\@parts);
return $self;
}
sub to_string {
my $self = shift;
# Escape
my @path;
for my $part (@{$self->parts}) {
# *( pchar / "/" / "?" )
push @path, b($part)->url_escape($Mojo::URL::PCHAR)->to_string;
}
# Format
my $path = join '/', @path;
$path = "/$path" if $self->leading_slash;
$path = "$path/" if @path && $self->trailing_slash;
return $path;
}
1;
__END__
=head1 NAME
Mojo::Path - Path
=head1 SYNOPSIS
use Mojo::Path;
my $path = Mojo::Path->new('/foo/bar%3B/baz.html');
print "$path";
=head1 DESCRIPTION
L<Mojo::Path> is a container for URL paths.
=head1 ATTRIBUTES
L<Mojo::Path> implements the following attributes.
=head2 C<leading_slash>
my $leading_slash = $path->leading_slash;
$path = $path->leading_slash(1);
Path has a leading slash.
=head2 C<parts>
my $parts = $path->parts;
$path = $path->parts(qw/foo bar baz/);
The path parts.
=head2 C<trailing_slash>
my $trailing_slash = $path->trailing_slash;
$path = $path->trailing_slash(1);
Path has a trailing slash.
=head1 METHODS
L<Mojo::Path> inherits all methods from L<Mojo::Base> and implements the
following new ones.
=head2 C<new>
my $path = Mojo::Path->new;
my $path = Mojo::Path->new('/foo/bar%3B/baz.html');
Construct a new L<Mojo::Path> object.
=head2 C<append>
$path = $path->append(qw/foo bar/);
Append parts to path.
=head2 C<canonicalize>
$path = $path->canonicalize;
Canonicalize path.
=head2 C<clone>
my $clone = $path->clone;
Clone path.
=head2 C<parse>
$path = $path->parse('/foo/bar%3B/baz.html');
Parse path.
=head2 C<to_string>
my $string = $path->to_string;
Turn path into a string.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
|