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
|
package Path::Dispatcher::Rule::Enum;
# ABSTRACT: one of a list of strings must match
our $VERSION = '1.08';
use Moo;
use MooX::TypeTiny;
use Types::Standard qw(Str ArrayRef Bool);
extends 'Path::Dispatcher::Rule';
has enum => (
is => 'ro',
isa => ArrayRef[Str],
required => 1,
);
has case_sensitive => (
is => 'ro',
isa => Bool,
default => 1,
);
sub _match {
my $self = shift;
my $path = shift;
if ($self->case_sensitive) {
for my $value (@{ $self->enum }) {
return {} if $path->path eq $value;
}
}
else {
for my $value (@{ $self->enum }) {
return {} if lc($path->path) eq lc($value);
}
}
return;
}
sub _prefix_match {
my $self = shift;
my $path = shift;
my $truncated = substr($path->path, 0, length($self->string));
if ($self->case_sensitive) {
for my $value (@{ $self->enum }) {
next unless $truncated eq $value;
return {
leftover => substr($path->path, length($self->string)),
};
}
}
else {
for my $value (@{ $self->enum }) {
next unless lc($truncated) eq lc($value);
return {
leftover => substr($path->path, length($self->string)),
};
}
}
return;
}
sub complete {
my $self = shift;
my $path = shift->path;
my @completions;
# by convention, complete does include the path itself if it
# is a complete match
my @enum = grep { length($path) < length($_) } @{ $self->enum };
if ($self->case_sensitive) {
for my $value (@enum) {
my $partial = substr($value, 0, length($path));
push @completions, $value if $partial eq $path;
}
}
else {
for my $value (@enum) {
my $partial = substr($value, 0, length($path));
push @completions, $value if lc($partial) eq lc($path);
}
}
return @completions;
}
__PACKAGE__->meta->make_immutable;
no Moo;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Path::Dispatcher::Rule::Enum - one of a list of strings must match
=head1 VERSION
version 1.08
=head1 SYNOPSIS
my $rule = Path::Dispatcher::Rule::Enum->new(
enum => [qw(perl ruby python php)],
block => sub { warn "I love " . shift->pos(1) },
);
=head1 DESCRIPTION
Rules of this class check whether the path matches any of its
L</enum> strings.
=head1 ATTRIBUTES
=head2 enum
=head2 case_sensitive
=head1 SUPPORT
Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=Path-Dispatcher>
(or L<bug-Path-Dispatcher@rt.cpan.org|mailto:bug-Path-Dispatcher@rt.cpan.org>).
=head1 AUTHOR
Shawn M Moore, C<< <sartak at bestpractical.com> >>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2020 by Shawn M Moore.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|