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
|
# Copyright (C) 2008-2010, Sebastian Riedel.
package Mojolicious::Plugin::AgentCondition;
use strict;
use warnings;
use base 'Mojolicious::Plugin';
# Wow, there's a million aliens! I've never seen something so mind-blowing!
# Ooh, a reception table with muffins!
sub register {
my ($self, $app) = @_;
# Agent
$app->routes->add_condition(
agent => sub {
my ($r, $tx, $captures, $pattern) = @_;
# Pattern
return unless $pattern && ref $pattern eq 'Regexp';
# Match
my $agent = $tx->req->headers->user_agent;
return $captures if $agent && $agent =~ $pattern;
# Nothing
return;
}
);
}
1;
__END__
=head1 NAME
Mojolicious::Plugin::AgentCondition - Agent Condition Plugin
=head1 SYNOPSIS
# Mojolicious
$self->plugin('agent_condition');
$self->routes->route('/:controller/:action')->over(agent => qr/Firefox/);
# Mojolicious::Lite
plugin 'agent_condition';
get '/' => (agent => qr/Firefox/) => sub {...};
=head1 DESCRIPTION
L<Mojolicous::Plugin::AgentCondition> is a routes condition for user agent
based routes.
=head1 METHODS
L<Mojolicious::Plugin::AgentCondition> inherits all methods from
L<Mojolicious::Plugin> and implements the following new ones.
=head2 C<register>
$plugin->register;
Register condition in L<Mojolicious> application.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
|