73af1bd86f4af33cc6987c8d0d315d44c69db6a7
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / ExtendingCatalyst.pod
1 =head1 NAME
2
3 Catalyst::Manual::ExtendingCatalyst - Extending The Framework
4
5 =head1 DESCRIPTION
6
7 This document will provide you with access points, techniques and best
8 practices to extend the L<Catalyst> framework, or to find more elegant
9 ways to abstract and use your own code.
10
11 The design of Catalyst is such that the framework itself should not
12 get in your way. There are many entry points to alter or extend
13 Catalyst's behaviour, and this can be confusing. This document is
14 written to help you understand the possibilities, current practices
15 and their consequences.
16
17 Please read the L<BEST PRACTICES> section before deciding on a design,
18 especially if you plan to release your code to CPAN. The Catalyst
19 developer and user communities, which B<you are part of>, will benefit
20 most if we all work together and coordinate.
21
22 If you are unsure on an implementation or have an idea you would like
23 to have RFC'ed, it surely is a good idea to send your questions and
24 suggestions to the Catalyst mailing list (See L<Catalyst/SUPPORT>)
25 and/or come to the C<#catalyst> channel on the C<irc.perl.org>
26 network. You might also want to refer to those places for research to
27 see if a module doing what you're trying to implement already
28 exists. This might give you a solution to your problem or a basis for
29 starting.
30
31 =head1 BEST PRACTICES
32
33 During Catalyst's early days, it was common to write plugins to
34 provide functionality application wide. Since then, Catalyst has
35 become a lot more flexible and powerful. It soon became a best
36 practice to use some other form of abstraction or interface, to keep
37 the scope of its influence as close as possible to where it belongs.
38
39 For those in a hurry, here's a quick checklist of some fundamental
40 points. If you are going to read the whole thing anyway, you can jump
41 forward to L</Namespaces>.
42
43 =head2 Quick Checklist
44
45 =over
46
47 =item Use the C<CatalystX::*> namespace if you can!
48
49 If your extension isn't a Model, View, Controller, Plugin, Engine,
50 or Log, it's best to leave it out of the C<Catalyst::> namespace.
51 Use <CatalystX::> instead.
52
53 =item Don't make it a plugin unless you have to!
54
55 A plugin should be careful since it's overriding Catalyst internals.
56 If your plugin doesn't really need to muck with the internals, make it a
57 base Controller or Model.
58
59 Also, if you think you really need a plugin, please instead consider
60 using a L<Moose::Role>.
61
62 =item There's a community. Use it!
63
64 There are many experienced developers in the Catalyst community,
65 there's always the IRC channel and the mailing list to discuss things.
66
67 =item Add tests and documentation!
68
69 This gives a stable basis for contribution, and even more importantly,
70 builds trust. The easiest way is a test application. See
71 L<Catalyst::Manual::Tutorial::Testing> for more information.
72
73 =back
74
75 =head2 Namespaces
76
77 While some core extensions (engines, plugins, etc.) have to be placed
78 in the C<Catalyst::*> namespace, the Catalyst core would like to ask
79 developers to use the C<CatalystX::*> namespace if possible.
80
81 Please B<do not> invent components which are outside the well
82 known C<Model>, C<View>, C<Controller> or C<Plugin> namespaces!
83
84 When you try to put a base class for a C<Model>, C<View> or
85 C<Controller> directly under your C<MyApp> directory as, for example,
86 C<MyApp::Controller::Foo>, you will have the problem that Catalyst
87 will try to load that base class as a component of your
88 application. The solution is simple: Use another namespace. Common
89 ones are C<MyApp::Base::Controller::*> or C<MyApp::ControllerBase::*>
90 as examples.
91
92 =head2 Can it be a simple module?
93
94 Sometimes you want to use functionality in your application that
95 doesn't require the framework at all. Remember that Catalyst is just
96 Perl and you always can just C<use> a module. If you have application
97 specific code that doesn't need the framework, there is no problem in
98 putting it in your C<MyApp::*> namespace. Just don't put it in
99 C<Model>, C<Controller> or C<View>, because that would make Catalyst
100 try to load them as components.
101
102 Writing a generic component that only works with Catalyst is wasteful
103 of your time.  Try writing a plain perl module, and then a small bit
104 of glue that integrates it with Catalyst.  See
105 L<Catalyst::Model::DBIC::Schema|Catalyst::Model::DBIC::Schema> for a
106 module that takes the approach.  The advantage here is that your
107 "Catalyst" DBIC schema works perfectly outside of Catalyst, making
108 testing (and command-line scripts) a breeze.  The actual Catalyst
109 Model is just a few lines of glue that makes working with the schema
110 convenient.
111
112 If you want the thinnest interface possible, take a look at
113 L<Catalyst::Model::Adaptor|Catalyst::Model::Adaptor>.
114
115 =head2 Using Moose roles to apply method modifiers
116
117 Rather than having a complex set of base classes which you have to mixin
118 via multiple inheritance, if your functionality is well structured, then
119 it's possible to use the composability of L<Moose> roles, and method modifiers
120 to hook onto to provide functionality.
121
122 These can be applied to your models/views/controllers, and your application
123 class, and shipped to CPAN.
124 Please see L<Catalyst::Manual::CatalystAndMoose> for specific information
125 about using Roles in combination with Catalyst, and L<Moose::Manual::Roles>
126 for more information about roles in general.
127
128 =head2 Inheritance and overriding methods
129
130 When overriding a method, keep in mind that some day additional
131 arguments may be provided to the method, if the last parameter is not
132 a flat list. It is thus better to override a method by shifting the
133 invocant off of C<@_> and assign the rest of the used arguments, so
134 you can pass your complete arguments to the original method via C<@_>:
135
136   use MRO::Compat; ...
137
138   sub foo {
139     my $self = shift;
140     my ($bar, $baz) = @_; # ...  return
141     $self->next::method(@_);
142   }
143
144 If you would do the common
145
146   my ($self, $foo, $bar) = @_;
147
148 you'd have to use a much uglier construct to ensure that all arguments
149 will be passed along and the method is future proof:
150
151   $self->next::method(@_[ 1 .. $#_ ]);
152
153 =head2 Tests and documentation
154
155 When you release your module to the CPAN, proper documentation and at
156 least a basic test suite (which means more than pod or even just
157 C<use_ok>, sorry) gives people a good base to contribute to the
158 module.  It also shows that you care for your users. If you would like
159 your module to become a recommended addition, these things will prove
160 invaluable.
161
162 If you're just getting started, try using
163 L<CatalystX::Starter|CatalystX::Starter> to generate some example
164 tests for your module.
165
166 =head2 Maintenance
167
168 In planning to release a module to the community (Catalyst or CPAN and
169 Perl), you should consider if you have the resources to keep it up to
170 date, including fixing bugs and accepting contributions.
171
172 If you're not sure about this, you can always ask in the proper
173 Catalyst or Perl channels if someone else might be interested in the
174 project, and would jump in as co-maintainer.
175
176 A public repository can further ease interaction with the
177 community. Even read only access enables people to provide you with
178 patches to your current development version. subversion, SVN and SVK,
179 are broadly preferred in the Catalyst community.
180
181 If you're developing a Catalyst extension, please consider asking the
182 core team for space in Catalyst's own subversion repository. You can
183 get in touch about this via IRC or the Catalyst developers mailing
184 list.
185
186 =head2 The context object
187
188 Sometimes you want to get a hold of the context object in a component
189 that was created on startup time, where no context existed yet. Often
190 this is about the model reading something out of the stash or other
191 context information (current language, for example).
192
193 If you use the context object in your component you have tied it to an
194 existing request.  This means that you might get into problems when
195 you try to use the component (e.g. the model - the most common case)
196 outside of Catalyst, for example in cronjobs.
197
198 A stable solution to this problem is to design the Catalyst model
199 separately from the underlying model logic. Let's take
200 L<Catalyst::Model::DBIC::Schema> as an example. You can create a
201 schema outside of Catalyst that knows nothing about the web. This kind
202 of design ensures encapsulation and makes development and maintenance
203 a whole lot easier. The you use the aforementioned model to tie your
204 schema to your application. This gives you a C<MyApp::DBIC> (the name
205 is of course just an example) model as well as
206 C<MyApp::DBIC::TableName> models to access your result sources
207 directly.
208
209 By creating such a thin layer between the actual model and the
210 Catalyst application, the schema itself is not at all tied to any
211 application and the layer in-between can access the model's API using
212 information from the context object.
213
214 A Catalyst component accesses the context object at request time with
215 L<Catalyst::Component/"ACCEPT_CONTEXT($c, @args)">.
216
217 =head1 CONFIGURATION
218
219 The application has to interact with the extension with some
220 configuration. There is of course again more than one way to do it.
221
222 =head2 Attributes
223
224 You can specify any valid Perl attribute on Catalyst actions you like.
225 (See L<attributes/"Syntax of Attribute Lists"> for a description of
226 what is valid.) These will be available on the C<Catalyst::Action>
227 instance via its C<attributes> accessor. To give an example, this
228 action:
229
230   sub foo : Local Bar('Baz') {
231       my ($self, $c) = @_;
232       my $attributes = $self->action_for('foo')->attributes;
233       $c->res->body($attributes->{Bar}[0] );
234   }
235
236 will set the response body to C<Baz>. The values always come in an
237 array reference. As you can see, you can use attributes to configure
238 your actions. You can specify or alter these attributes via
239 L</"Component Configuration">, or even react on them as soon as
240 Catalyst encounters them by providing your own L<component base
241 class|/"Component base classes">.
242
243 =head2 Component Configuration
244
245 At creation time, the class configuration of your component (the one
246 available via C<< $self->config >>) will be merged with possible
247 configuration settings from the applications configuration (either
248 directly or via config file). This is done by Catalyst, and the
249 correctly merged configuration is passed to your component's
250 constructor (i.e. the new method).
251
252 Ergo, if you define an accessor for each configuration value
253 that your component takes, then the value will be automatically stored
254 in the controller object's hash reference, and available from the
255 accessor.
256
257 The C<config> accessor always only contains the original class configuration
258 and you B<MUST NEVER> call $self->config to get your component configuration,
259 as the data there is likely to be a subset of the correct config.
260
261 For example:
262
263   package MyApp
264   use Moose;
265
266   extends 'Catalyst';
267
268   ...
269
270   __PACKAGE__->config(
271     'Controller::Foo' => { some_value => 'bar' },
272   );
273
274   ...
275
276   package MyApp::Controller::Foo;
277   use Moose;
278   use namespace::autoclean;
279   BEGIN { extends 'Catalyst::Controller' };
280
281   has some_value ( is => 'ro', required => 1 );
282
283   sub some_method {
284       my $self = shift;
285       return "the value of 'some_value' is " . $self->some_value;
286   }
287
288   ...
289
290   my $controller = $c->controller('Foo');
291   warn $controller->some_value;
292   warn $controller->some_method;
293
294 =head1 IMPLEMENTATION
295
296 This part contains the technical details of various implementation
297 methods. Please read the L</"BEST PRACTICES"> before you start your
298 implementation, if you haven't already.
299
300 =head2 Action classes
301
302 Usually, your action objects are of the class L<Catalyst::Action>.
303 You can override this with the C<ActionClass> attribute to influence
304 execution and/or dispatching of the action. A widely used example of
305 this is L<Catalyst::Action::RenderView>, which is used in every newly
306 created Catalyst application in your root controller:
307
308   sub end : ActionClass('RenderView') { }
309
310 Usually, you want to override the C<execute> and/or the C<match>
311 method. The execute method of the action will naturally call the
312 methods code. You can surround this by overriding the method in a
313 subclass:
314
315   package Catalyst::Action::MyFoo;
316   use Moose;
317   use namespace::autoclean;
318   use MRO::Compat;
319   extends 'Catalyst::Action';
320
321   sub execute {
322       my $self = shift;
323       my ($controller, $c, @args) = @_;
324       # put your 'before' code here
325       my $r = $self->next::method(@_);
326       # put your 'after' code here
327       return $r;
328   }
329   1;
330
331 We are using L<MRO::Compat> to ensure that you have the next::method
332 call, from L<Class::C3> (in older perls), or natively (if you are using
333 perl 5.10) to re-dispatch to the original C<execute> method in the
334 L<Catalyst::Action> class.
335
336 The Catalyst dispatcher handles an incoming request and, depending
337 upon the dispatch type, will call the appropriate target or chain.
338 From time to time it asks the actions themselves, or through the
339 controller, if they would match the current request. That's what the
340 C<match> method does.  So by overriding this, you can change on what
341 the action will match and add new matching criteria.
342
343 For example, the action class below will make the action only match on
344 Mondays:
345
346   package Catalyst::Action::OnlyMondays;
347   use Moose;
348   use namespace::autoclean;
349   use MRO::Compat;
350   extends 'Catalyst::Action';
351
352   sub match {
353       my $self = shift;
354       return 0 if ( localtime(time) )[6] == 1;
355       return $self->next::method(@_);
356    }
357   1;
358
359 And this is how we'd use it:
360
361   sub foo: Local ActionClass('OnlyMondays') {
362       my ($self, $c) = @_;
363       $c->res->body('I feel motivated!');
364   }
365
366 If you are using action classes often or have some specific base
367 classes that you want to specify more conveniently, you can implement
368 a component base class providing an attribute handler.
369
370 It is not possible to use multiple action classes at once, however
371 L<Catalyst::Controller::ActionRole> allows you to apply L<Moose Roles|Moose::Role>
372 to actions.
373
374 For further information on action classes and roles, please refer to
375 L<Catalyst::Action> and L<Catalyst::Manual::Actions>.
376
377 =head2 Component base classes
378
379 Many L<Catalyst::Plugin> that were written in Catalyst's early days
380 should really have been just controller base classes. With such a
381 class, you could provide functionality scoped to a single controller,
382 not polluting the global namespace in the context object.
383
384 You can provide regular Perl methods in a base class as well as
385 actions which will be inherited to the subclass. Please refer to
386 L</Controllers> for an example of this.
387
388 You can introduce your own attributes by specifying a handler method
389 in the controller base. For example, to use a C<FullClass> attribute
390 to specify a fully qualified action class name, you could use the
391 following implementation. Note, however, that this functionality is
392 already provided via the C<+> prefix for action classes. A simple
393
394   sub foo : Local ActionClass('+MyApp::Action::Bar') { ... }
395
396 will use C<MyApp::Action::Bar> as action class.
397
398   package MyApp::Base::Controller::FullClass;
399   use Moose;
400   use namespace::autoclean;
401   BEGIN { extends 'Catalyst::Controller'; }
402
403   sub _parse_FullClass_attr {
404       my ($self, $app_class, $action_name, $value, $attrs) = @_;
405       return( ActionClass => $value );
406   }
407   1;
408
409 Note that the full line of arguments is only provided for completeness
410 sake. We could use this attribute in a subclass like any other
411 Catalyst attribute:
412
413   package MyApp::Controller::Foo;
414   use Moose;
415   use namespace::autoclean;
416   BEGIN { extends 'MyApp::Base::Controller::FullClass'; }
417
418   sub foo : Local FullClass('MyApp::Action::Bar') { ... }
419
420   1;
421
422 =head2 Controllers
423
424 Many things can happen in controllers, and it often improves
425 maintainability to abstract some of the code out into reusable base
426 classes.
427
428 You can provide usual Perl methods that will be available via your
429 controller object, or you can even define Catalyst actions which will
430 be inherited by the subclasses. Consider this controller base class:
431
432   package MyApp::Base::Controller::ModelBase;
433   use Moose;
434   use namespace::autoclean;
435
436   BEGIN { extends 'Catalyst::Controller'; }
437
438   sub list : Chained('base') PathPart('') Args(0) {
439       my ($self, $c) = @_;
440       my $model = $c->model( $self->{model_name} );
441       my $condition = $self->{model_search_condition} || {};
442       my $attrs = $self->{model_search_attrs} || {};
443       $c->stash(rs => $model->search($condition, $attrs);
444   }
445
446   sub load : Chained('base') PathPart('') CaptureArgs(1) {
447       my ($self, $c, $id) = @_;
448       my $model = $c->model( $self->{model_name} );
449       $c->stash(row => $model->find($id));
450   }
451   1;
452
453 This example implements two simple actions. The C<list> action chains
454 to a (currently non-existent) C<base> action and puts a result-set
455 into the stash taking a configured C<model_name> as well as a search
456 condition and attributes. This action is a
457 L<chained|Catalyst::DispatchType::Chained> endpoint. The other action,
458 called C< load > is a chain midpoint that takes one argument. It takes
459 the value as an ID and loads the row from the configured model. Please
460 not that the above code is simplified for clarity. It misses error
461 handling, input validation, and probably other things.
462
463 The class above is not very useful on its own, but we can combine it
464 with some custom actions by sub-classing it:
465
466   package MyApp::Controller::Foo;
467   use Moose;
468   use namespace::autoclean;
469
470   BEGIN { extends 'MyApp::Base::Controller::ModelBase'; }
471
472   __PACKAGE__->config( model_name => 'DB::Foo',
473                        model_search_condition=> { is_active => 1 },
474                        model_search_attrs => { order_by => 'name' },
475                    );
476
477   sub base : Chained PathPart('foo') CaptureArgs(0) { }
478
479   sub view : Chained('load') Args(0) {
480       my ($self, $c) = @_;
481       my $row = $c->stash->{row};
482       $c->res->body(join ': ', $row->name,
483       $row->description); }
484   1;
485
486 This class uses the formerly created controller as a base
487 class. First, we see the configurations that were used in the parent
488 class. Next comes the C<base> action, where everything chains off of.
489
490 Note that inherited actions act like they were declared in your
491 controller itself. You can therefor call them just by their name in
492 C<forward>s, C<detaches> and C<Chained(..)> specifications. This is an
493 important part of what makes this technique so useful.
494
495 The new C<view> action ties itself to the C<load> action specified in
496 the base class and outputs the loaded row's C<name> and C<description>
497 columns. The controller C<MyApp::Controller::Foo> now has these
498 publicly available paths:
499
500 =over
501
502 =item /foo
503
504 Will call the controller's C<base>, then the base classes C<list>
505 action.
506
507 =item /foo/$id/view
508
509 First, the controller's C<base> will be called, then it will C<load>
510 the row with the corresponding C<$id>. After that, C<view> will
511 display some fields out of the object.
512
513 =back
514
515 =head2 Models and Views
516
517 If the functionality you'd like to add is really a data-set that you
518 want to manipulate, for example internal document types, images,
519 files, it might be better suited as a model.
520
521 The same applies for views. If your code handles representation or
522 deals with the applications interface and should be universally
523 available, it could be a perfect candidate for a view.
524
525 Please implement a C<process> method in your views. This method will
526 be called by Catalyst if it is asked to forward to a component without
527 a specified action. Note that C<process> is B<not a Catalyst action>
528 but a simple Perl method.
529
530 You are also encouraged to implement a C<render> method corresponding
531 with the one in L<Catalyst::View::TT>. This has proven invaluable,
532 because people can use your view for much more fine-grained content
533 generation.
534
535 Here is some example code for a fictional view:
536
537   package Catalyst::View::MyView;
538   use Moose;
539   use namespace::autoclean;
540
541   extends 'Catalyst::View';
542
543   sub process {
544       my ($self, $c) = @_;
545       my $template = $c->stash->{template};
546       my $content = $self->render($c, $template, $c->stash);
547       $c->res->body( $content );
548   }
549
550   sub render {
551       my ($self, $c, $template, $args) = @_;
552       # prepare content here
553       return $content;
554   }
555   1;
556
557 =head2 Plugins
558
559 The first thing to say about plugins is that if you're not sure if
560 your module should be a plugin, it probably shouldn't. It once was
561 common to add features to Catalyst by writing plugins that provide
562 accessors to said functionality. As Catalyst grew more popular, it
563 became obvious that this qualifies as bad practice.
564
565 By designing your module as a Catalyst plugin, every method you
566 implement, import or inherit will be available via your applications
567 context object.  A plugin pollutes the global namespace, and you
568 should be only doing that when you really need to.
569
570 Often, developers design extensions as plugins because they need to
571 get hold of the context object. Either to get at the stash or
572 request/response objects are the widely spread reasons. It is,
573 however, perfectly possible to implement a regular Catalyst component
574 (read: model, view or controller) that receives the current context
575 object via L<Catalyst::Component/"ACCEPT_CONTEXT($c, @args)">.
576
577 When is a plugin suited to your task? Your code needs to be a
578 plugin to act upon or alter specific parts of Catalyst's request
579 lifecycle. If your functionality needs to change some C<prepare_*> or
580 C<finalize_*> stages, you won't get around a plugin.
581
582 Note, if you just want to hook into such a stage, and run code before,
583 or after it, then it is recommended that you use L<Moose>s method modifiers
584 to do this.
585
586 Another valid target for a plugin architecture are things that
587 B<really> have to be globally available, like sessions or
588 authentication.
589
590 B<Please do not> release Catalyst extensions as plugins only to
591 provide some functionality application wide. Design it as a controller
592 base class or another better suited technique with a smaller scope, so that
593 your code only influences those parts of the application where it is
594 needed, and namespace clashes and conflicts are ruled out.
595
596 The implementation is pretty easy. Your plugin will be inserted in the
597 application's inheritance list, above Catalyst itself. You can by this
598 alter Catalyst's request lifecycle behaviour. Every method you
599 declare, every import in your package will be available as method on
600 the application and the context object. As an example, let's say you
601 want Catalyst to warn you every time uri_for was called without an action
602 object as the first parameter, for example to test that all your chained
603 uris are generated from actions (a recommended best practice).
604 You could do this with this simple
605 implementation (excuse the lame class name, it's just an example):
606
607   package Catalyst::Plugin::UriforUndefWarning;
608   use strict;
609   use Scalar::Util qw/blessed/;
610   use MRO::Compat;
611
612   sub uri_for {
613       my $c = shift;
614       my $uri = $c->next::method(@_);
615       $c->log->warn( 'uri_for with non action: ', join(', ', @_), )
616         if (!blessed($_[0]) || !$_[0]->isa('Catalyst::Action'));
617       return $uri;
618   }
619
620   1;
621
622 This would override Catalyst's C<uri_for> method and emit a C<warn>
623 log entry containing the arguments to uri_for.
624
625 Please note this is not a practical example, as string URLs are fine for
626 static content etc.
627
628 A simple example like this is actually better as a L<Moose> role, for example:
629
630   package CatalystX::UriforUndefWarning;
631   use Moose::Role;
632   use namespace::autoclean;
633
634   after 'uri_for' => sub {
635     my ($c, $arg) = @_;
636     $c->log->warn( 'uri_for with non action: ', join(', ', @_), )
637       if (!blessed($_[0]) || !$_[0]->isa('Catalyst::Action'));
638     return $uri;
639   };
640
641 Note that Catalyst will load any Moose Roles in the plugin list,
642 and apply them to your application class.
643
644 =head2 Factory components with COMPONENT()
645
646 Every component inheriting from L<Catalyst::Component> contains a
647 C<COMPONENT> method. It is used on application startup by
648 C<setup_components> to instantiate the component object for the
649 Catalyst application. By default, this will merge the components own
650 C<config>uration with the application wide overrides and call the
651 class' C<new> method to return the component object.
652
653 You can override this method and do and return whatever you want.
654 However, you should use L<Class::C3> (via L<MRO::Compat>) to forward
655 to the original C<COMPONENT> method to merge the configuration of
656 your component.
657
658 Here is a stub C<COMPONENT> method:
659
660   package CatalystX::Component::Foo;
661   use Moose;
662   use namespace::autoclean;
663
664   extends 'Catalyst::Component';
665
666   sub COMPONENT {
667       my $class = shift;
668       # Note: $app is like $c, but since the application isn't fully
669       # initialized, we don't want to call it $c yet.  $config
670       # is a hashref of config options possibly set on this component.
671       my ($app, $config) = @_;
672
673       # Do things here before instantiation
674       $new = $class->next::method(@_);
675       # Do things to object after instantiation
676       return $new;
677   }
678
679 The arguments are the class name of the component, the class name of
680 the application instantiating the component, and a hash reference with
681 the controller's configuration.
682
683 You are free to re-bless the object, instantiate a whole other
684 component or really do anything compatible with Catalyst's
685 expectations on a component.
686
687 For more information, please see
688 L<Catalyst::Component/"COMPONENT($c,$arguments)">.
689
690 =head2 Applying roles to parts of the framework
691
692 L<CatalystX::RoleApplicator> will allow you to apply Roles to
693 the following classes:
694
695 =over
696
697 =item Request
698
699 =item Response
700
701 =item Engine
702
703 =item Dispatcher
704
705 =item Stats
706
707 =back
708
709 These roles can add new methods to these classes, or wrap preexisting methods.
710
711 The namespace for roles like this is C<Catalyst::TraitFor::XXX::YYYY>.
712
713 For an example of a CPAN component implemented in this manor, see
714 L<Catalyst::TraitFor::Request::BrowserDetect>.
715
716 =head1 SEE ALSO
717
718 L<Catalyst>, L<Catalyst::Manual::Actions>, L<Catalyst::Component>
719
720 =head1 AUTHORS
721
722 Catalyst Contributors, see Catalyst.pm
723
724 =head1 COPYRIGHT
725
726 This library is free software. You can redistribute it and/or modify it under
727 the same terms as Perl itself.
728
729 =cut
730
731