POD and sensible name for ACCEPT_CONTEXT args
[catagits/Catalyst-Runtime.git] / lib / Catalyst / SubContainer.pm
index 6f241e5..6d58be9 100644 (file)
@@ -7,7 +7,63 @@ extends 'Bread::Board::Container';
 
 sub get_component {
     my ( $self, $name, $args ) = @_;
-    return $self->resolve( service => $name, parameters => { context => $args } );
+
+    return $self->resolve(
+        service    => $name,
+        parameters => { accept_context_args => $args },
+    );
+}
+
+sub get_component_regexp {
+    my ( $self, $c, $name, $args ) = @_;
+
+    return
+        if $c->config->{disable_component_resolution_regex_fallback} && !ref $name;
+
+    my $appclass = ref $c || $c;
+    my $prefix   = ucfirst $self->name;
+    my $p        = substr $prefix, 0, 1;
+
+    my $query = ref $name ? $name : qr{$name}i;
+    $query =~ s/^${appclass}::($p|$prefix):://i;
+
+    my @result = map {
+        $self->get_component( $_, $args )
+    } grep { m/$query/ } $self->get_service_list;
+
+    if (!ref $name && $result[0]) {
+        $c->log->warn( Carp::shortmess(qq(Found results for "${name}" using regexp fallback)) );
+        $c->log->warn( 'Relying on the regexp fallback behavior for component resolution' );
+        $c->log->warn( 'is unreliable and unsafe. You have been warned' );
+        return $result[0];
+    }
+
+    return @result;
 }
 
 1;
+
+__END__
+
+=pod
+
+=head1 NAME
+
+Catalyst::SubContainer - Container for models, controllers and views
+
+=head1 METHODS
+
+=head2 get_component
+
+=head2 get_component_regexp
+
+=head1 AUTHORS
+
+Catalyst Contributors, see Catalyst.pm
+
+=head1 COPYRIGHT
+
+This library is free software. You can redistribute it and/or modify it under
+the same terms as Perl itself.
+
+=cut