c3438163d65de588cc32dd142e48df2f24fa1d2f
[catagits/CatalystX-DynamicComponent.git] / lib / CatalystX / DynamicComponent / ModelToControllerReflector.pm
1 package CatalystX::DynamicComponent::ModelToControllerReflector;
2 use Moose::Role;
3 use Moose::Util qw/does_role/;
4 use List::MoreUtils qw/uniq/;
5 use Moose::Autobox;
6 use namespace::autoclean;
7
8 my $mangle_attributes_on_generated_methods = sub {
9     my ($meta, $config) = @_;
10     foreach my $name (keys %{ $config->{methods}}) {
11         my $m = $meta->get_method($name);
12         $meta->register_method_attributes($m->body, ['Local']);
13     }
14 };
15
16 with 'CatalystX::DynamicComponent' => {
17     name => '_setup_dynamic_controller',
18     pre_immutable_hook => $mangle_attributes_on_generated_methods,
19 };
20
21 requires 'setup_components';
22
23 after 'setup_components' => sub { shift->_setup_dynamic_controllers(@_); };
24
25 sub _setup_dynamic_controllers {
26     my ($app) = @_;
27
28     my @model_names = grep { /::Model::/ } keys %{ $app->components };
29     foreach my $model_name (@model_names) {
30         $app->_reflect_model_to_controller( $model_name, $app->components->{$model_name} );
31     }
32 }
33
34 sub _reflect_model_to_controller {
35     my ( $app, $model_name, $model ) = @_;
36
37     # Model passed in as MyApp::Model::Foo, strip MyApp
38     $model_name =~ s/^[^:]+:://;
39
40     # Get Controller::Foo
41     my $controller_name = $model_name;
42     $controller_name =~ s/^Model::/Controller::/;
43
44     # Get Foo
45     my $suffix = $model_name;
46     $suffix =~ s/Model:://;
47
48     my %controller_methods;
49     # FIXME - Abstract this strategy crap out.
50     my $model_methods = $model->meta->get_method_map;
51     my $interface_roles = [ uniq( map { exists $_->{interface_roles} ? $_->{interface_roles}->flatten : () } $app->config->{$model_name}, $app->config->{'CatalystX::DynamicComponent::ModelToControllerReflector'} ) ];
52     
53     for my $interface_role (@$interface_roles) {
54             for my $required_method ($interface_role->meta->get_required_method_list) {
55                     # Note need to pass model name, as the method actually comes from
56                     # the underlying model class, not the Catalyst shim class we autogenerated.
57                     $controller_methods{$required_method} = 
58                          $app->generate_reflected_controller_action_method($suffix, $model_methods->{$required_method})
59             }
60     }
61
62     # Shallow copy so we don't stuff method refs in config
63     my $config = { %{$app->config->{$controller_name}||{}} };
64
65     $config->{methods} = \%controller_methods;
66     $app->_setup_dynamic_controller( $controller_name, $config );
67 }
68
69 sub generate_reflected_controller_action_method {
70     my ( $app, $model, $method ) = @_;
71     my $method_name = $method->name; # Is it worth passing the actual method object here?
72     sub {
73         my ($self, $c, @args) = @_;
74         $c->res->header('X-From-Model', $model);
75         my $response = $c->model($model)->$method_name($c->req->data);
76         $c->res->header('X-From-Model-Data', $response);
77         $c->res->body('OK');
78         $c->stash->{response} = $response;
79     };
80 }
81
82 1;
83
84 __END__
85
86 =head1 NAME
87
88 CatalystX::DynamicComponent::ModelToControllerReflector - Generate Catalyst controllers automaticall from models and configuration.
89
90 =head1 SYNOPSIS
91
92 =head1 DESCRIPTION
93
94 =head1 LINKS
95
96 L<Catalyst>, L<MooseX::MethodAttributes>, L<CatalystX::ModelsFromConfig>.
97
98 =head1 BUGS
99
100 Probably plenty, test suite certainly isn't comprehensive.. Patches welcome.
101
102 =head1 AUTHOR
103
104 Tomas Doran (t0m) <bobtfish@bobtfish.net>
105
106 =head1 LICENSE
107
108 This code is copyright (c) 2009 Tomas Doran. This code is licensed on the same terms as perl
109 itself.
110
111 =cut
112