X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FController.pm;h=f2ccfa809522e601ad50947c28a4496c7d77257b;hp=02db77a562df015d3e07195811a62e562b5be3a6;hb=342d21698a97962c51114b6ebc6bb8626511cfc6;hpb=e8361cf8fc1d23adf4a14a81726477c48a80449e diff --git a/lib/Catalyst/Controller.pm b/lib/Catalyst/Controller.pm index 02db77a..f2ccfa8 100644 --- a/lib/Catalyst/Controller.pm +++ b/lib/Catalyst/Controller.pm @@ -372,6 +372,8 @@ sub gather_default_action_roles { push @roles, 'Catalyst::ActionRole::ConsumesContent' if $args{attributes}->{Consumes}; + push @roles, 'Catalyst::ActionRole::Scheme' + if $args{attributes}->{Scheme}; return @roles; } @@ -889,6 +891,39 @@ most accurate matches early in the Chain, and your 'catchall' actions last. See L for more. +=head2 Scheme(...) + +Allows you to specify a URI scheme for the action or action chain. For example +you can required that a given path be C or that it is a websocket endpoint +C or C. For an action chain you may currently only have one defined +Scheme. + + package MyApp::Controller::Root; + + use base 'Catalyst::Controller'; + + sub is_http :Path(scheme) Scheme(http) Args(0) { + my ($self, $c) = @_; + $c->response->body("is_http"); + } + + sub is_https :Path(scheme) Scheme(https) Args(0) { + my ($self, $c) = @_; + $c->response->body("is_https"); + } + +In the above example http://localhost/root/scheme would match the first +action (is_http) but https://localhost/root/scheme would match the second. + +As an added benefit, if an action or action chain defines a Scheme, when using +$c->uri_for the scheme of the generated URL will use what you define in the action +or action chain (the current behavior is to set the scheme based on the current +incoming request). This makes it easier to use uri_for on websites where some +paths are secure and others are not. You may also use this to other schemes +like websockets. + +See L for more. + =head1 OPTIONAL METHODS =head2 _parse_[$name]_attr