some improvements/shortcuts
[catagits/Catalyst-Model-DBIC-Schema.git] / lib / Catalyst / Model / DBIC / Schema.pm
CommitLineData
ad91060a 1package Catalyst::Model::DBIC::Schema;
2
3use strict;
4use base qw/Catalyst::Base Class::Accessor::Fast Class::Data::Accessor/;
5use NEXT;
6use UNIVERSAL::require;
7use Carp;
8
9our $VERSION = '0.01';
10
11__PACKAGE__->mk_classdata('composed_schema');
12__PACKAGE__->mk_accessors('schema');
13
14=head1 NAME
15
16Catalyst::Model::DBIC::Schema - DBIx::Class::Schema Model Class
17
18=head1 SYNOPSIS
19
20 package MyApp::Model::Foo;
21 use strict;
22 use base 'Catalyst::Model::DBIC::Schema';
23
24 __PACKAGE__->config(
25 schema_class => 'Foo::SchemaClass',
26 connect_info => [ 'dbi:Pg:dbname=foodb',
27 'postgres',
28 '',
29 { AutoCommit => 1 },
30 ],
31 );
32
33 1;
34
35 # In controller code:
36
37 # ->schema To access schema methods:
38 $c->model('Foo')->schema->source(...);
39
c12b7310 40 # certain ->schema methods (source, resultset, class) have shortcuts
41 $c->model('Foo')->source(...);
42 $c->model('Foo')->resultset(...);
43 $c->model('Foo')->class(...);
44
45 # For resultsets, there's an even quicker shortcut:
46 $c->model('Foo::Bar')
47 # is the same as $c->model('Foo')->resultset('Bar')
ad91060a 48
49 # To get the composed schema for making new connections:
50 my $newconn = $c->model('Foo')->composed_schema->connect(...);
51
52 # Or the same thing via a convenience shortcut:
53 my $newconn = $c->model('Foo')->connect(...);
54
55 # or, if your schema works on different storage drivers:
56 my $newconn = $c->model('Foo')->composed_schema->clone();
57 $newconn->storage_type('::LDAP');
58 $newconn->connect(...);
59
60 # and again, a convenience shortcut
61 my $newconn = $c->model('Foo')->clone();
62 $newconn->storage_type('::LDAP');
63 $newconn->connect(...);
64
65=head1 DESCRIPTION
66
67This is a Catalyst Model for L<DBIx::Class::Schema>-based Models.
68
69=head1 CONFIG PARAMETERS
70
71=over 4
72
73=item schema_class
74
75This is the classname of your L<DBIx::Class::Schema> Schema. It needs
76to be findable in C<@INC>, but it does not need to be underneath
77C<Catalyst::Model::>.
78
79=item connect_info
80
81This is an arrayref of connection parameters, which are specific to your
82C<storage_type>. For C<::DBI>, which is the only supported C<storage_type>
83in L<DBIx::Class> at the time of this writing, the 4 parameters are your
84dsn, username, password, and connect options hashref.
85
86=item storage_type
87
88Allows the use of a different C<storage_type> than what is set in your
89C<schema_class> (which in turn defaults to C<::DBI> if not set in current
90L<DBIx::Class>). Completely optional, and probably unneccesary for most
91people, until other storage backends become available for L<DBIx::Class>.
92
93=back
94
95=head1 METHODS
96
97=over 4
98
99=item new
100
101Instantiates the Model based on the above-documented ->config parameters.
102
103=item schema
104
105Accessor which returns the connected schema being used by the this model.
c12b7310 106There are already direct shortcuts on the model class itself for
107schema->resultset, schema->source, and schema->class.
ad91060a 108
109=item composed_schema
110
111Accessor which returns the composed schema, which has no connection info,
112which was used in constructing the C<schema> above. Useful for creating
c12b7310 113new connections based on the same schema/model. There are direct shortcuts
114from the model object for composed_schema->clone and composed_schema->connect
ad91060a 115
116=item clone
117
118Shortcut for ->composed_schema->clone
119
120=item connect
121
122Shortcut for ->composed_schema->connect
123
c12b7310 124=item source
125
126Shortcut for ->schema->source
127
128=item class
129
130Shortcut for ->schema->class
131
132=item resultset
133
134Shortcut for ->schema->resultset
135
ad91060a 136=back
137
138=cut
139
140sub new {
141 my ( $self, $c ) = @_;
142 $self = $self->NEXT::new($c);
143
144 my $class = ref($self);
145 my $model_name = $class;
146 $model_name =~ s/^[\w:]+::(?:Model|M):://;
147
148 foreach (qw/ connect_info schema_class /) {
149 croak "->config->{$_} must be defined for this model"
150 unless $self->{$_};
151 }
152
153 my $schema_class = $self->{schema_class};
154
155 $schema_class->require
156 or croak "Cannot load schema class '$schema_class': $@";
157
158 $self->composed_schema($schema_class->compose_namespace($class));
159 $self->schema($self->composed_schema->clone);
160 $self->schema->storage_type($self->{storage_type}) if $self->{storage_type};
161 $self->schema->connect(@{$self->{connect_info}});
162
163 no strict 'refs';
164 foreach my $moniker ($self->schema->sources) {
165 *{"${class}::${moniker}::ACCEPT_CONTEXT"} = sub {
166 shift;
c12b7310 167 shift->model($model_name)->resultset($moniker);
ad91060a 168 }
169 }
170
171 return $self;
172}
173
174# convenience method
175sub clone { shift->composed_schema->clone(@_); }
176
177# convenience method
178sub connect { shift->composed_schema->connect(@_); }
179
180=head1 SEE ALSO
181
182L<Catalyst>, L<DBIx::Class>, L<DBIx::Class::Schema>,
183L<DBIx::Class::Schema::Loader>
184
185=head1 AUTHOR
186
187Brandon L Black, C<blblack@gmail.com>
188
189=head1 COPYRIGHT
190
191This program is free software, you can redistribute it and/or modify it
192under the same terms as Perl itself.
193
194=cut
195
1961;