package Catalyst::Plugin::MobileAgent; use strict; use warnings; use NEXT; use Catalyst::Request; use HTTP::MobileAgent; our $VERSION = '0.041'; { package Catalyst::Request; sub mobile_agent { my $self = shift; unless ( $self->{ mobile_agent } ) { $self->{ mobile_agent } = HTTP::MobileAgent->new( $self->headers ); } return $self->{ mobile_agent }; } } =head1 NAME Catalyst::Plugin::MobileAgent - HTTP mobile user agent string parser plugin for Catalyst =head1 SYNOPSIS use Catalyst 'MobileAgent'; if ($c->request->mobile_agent->is_docomo) { # do something } =head1 DESCRIPTION Catalyst plugin parsed user agent string for mobile in Japan. =head1 EXTENDED METHODS =head2 prepare_headers Sets mobile_agent using L. =head1 METHODS =head2 mobile_agent Returns an instance of HTTP::MobileAgent. =head1 SEE ALSO L, L =head1 AUTHOR Yoshiki Kurihara, C<< >> =head1 LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut 1; # End of Catalyst::Plugin::MobileAgent