0.11 released, fixes to the connect_info extra options support
[catagits/Catalyst-Model-DBIC-Schema.git] / lib / Catalyst / Model / DBIC / Schema.pm
CommitLineData
ad91060a 1package Catalyst::Model::DBIC::Schema;
2
3use strict;
14d912a2 4use base qw/Catalyst::Model Class::Accessor::Fast Class::Data::Accessor/;
ad91060a 5use NEXT;
6use UNIVERSAL::require;
7use Carp;
7db6da78 8require DBIx::Class;
ad91060a 9
4bd6775c 10our $VERSION = '0.11';
ad91060a 11
14d912a2 12__PACKAGE__->mk_classaccessor('composed_schema');
ad91060a 13__PACKAGE__->mk_accessors('schema');
14
15=head1 NAME
16
17Catalyst::Model::DBIC::Schema - DBIx::Class::Schema Model Class
18
19=head1 SYNOPSIS
20
21 package MyApp::Model::Foo;
22 use strict;
23 use base 'Catalyst::Model::DBIC::Schema';
24
25 __PACKAGE__->config(
cd7e6e4f 26 schema_class => 'Foo::SchemaClass',
27 connect_info => [ 'dbi:Pg:dbname=foodb',
28 'postgres',
29 '',
30 { AutoCommit => 1 },
4bd6775c 31 { limit_dialect => 'xxx',
32 quote_char => q{`},
33 name_sep => q{@},
34 on_connect_do => [
35 'sql statement 1',
36 'sql statement 2',
37 ]
38 }
cd7e6e4f 39 ],
ad91060a 40 );
41
42 1;
43
44 # In controller code:
45
46 # ->schema To access schema methods:
47 $c->model('Foo')->schema->source(...);
48
c12b7310 49 # certain ->schema methods (source, resultset, class) have shortcuts
50 $c->model('Foo')->source(...);
51 $c->model('Foo')->resultset(...);
52 $c->model('Foo')->class(...);
53
54 # For resultsets, there's an even quicker shortcut:
55 $c->model('Foo::Bar')
56 # is the same as $c->model('Foo')->resultset('Bar')
ad91060a 57
58 # To get the composed schema for making new connections:
59 my $newconn = $c->model('Foo')->composed_schema->connect(...);
60
61 # Or the same thing via a convenience shortcut:
62 my $newconn = $c->model('Foo')->connect(...);
63
64 # or, if your schema works on different storage drivers:
65 my $newconn = $c->model('Foo')->composed_schema->clone();
66 $newconn->storage_type('::LDAP');
f7a944f8 67 $newconn->connection(...);
ad91060a 68
69 # and again, a convenience shortcut
70 my $newconn = $c->model('Foo')->clone();
71 $newconn->storage_type('::LDAP');
f7a944f8 72 $newconn->connection(...);
ad91060a 73
74=head1 DESCRIPTION
75
7b39f3f0 76This is a Catalyst Model for L<DBIx::Class::Schema>-based Models. See
77the documentation for L<Catalyst::Helper::Model::DBIC::Schema> and
1aeb6e1e 78L<Catalyst::Helper::Model::DBIC::SchemaLoader> for information
79on generating these Models via Helper scripts. The latter of the two
80will also generated a L<DBIx::Class::Schema::Loader>-based Schema class
81for you.
ad91060a 82
83=head1 CONFIG PARAMETERS
84
85=over 4
86
87=item schema_class
88
89This is the classname of your L<DBIx::Class::Schema> Schema. It needs
90to be findable in C<@INC>, but it does not need to be underneath
0f2fd2c0 91C<Catalyst::Model::>. This parameter is required.
ad91060a 92
93=item connect_info
94
95This is an arrayref of connection parameters, which are specific to your
7db6da78 96C<storage_type> (see your storage type documentation for more details).
ad91060a 97
0f2fd2c0 98This is not required if C<schema_class> already has connection information
99defined in itself (which would be the case for a Schema defined by
100L<DBIx::Class::Schema::Loader>, for instance).
101
7db6da78 102For L<DBIx::Class::Storage::DBI>, which is the only supported
103C<storage_type> in L<DBIx::Class> at the time of this writing, the
104parameters are your dsn, username, password, and connect options hashref.
105
106If you need to specify the L<DBIx::Class::Storage::DBI> specific parameter
107C<on_connect_do>, or the related C<sql_maker> options C<limit_dialect>,
108C<quote_char>, or C<name_sep>, you can place these options into a hashref
109as the final element of the C<connect_info> arrayref. If in doubt, don't
110specify these options. You would know it if you needed them.
111
112Examples:
113
114 connect_info => [ 'dbi:Pg:dbname=mypgdb', 'postgres', '' ],
115 connect_info => [
116 'dbi:SQLite:dbname=foo.db',
117 {
118 on_connect_do => [
119 'some SQL statement',
120 'another SQL statement',
121 ],
122 }
123 ],
124 connect_info => [
125 'dbi:Pg:dbname=mypgdb',
126 'postgres',
127 '',
128 { AutoCommit => 0 },
129 {
130 on_connect_do => [
131 'some SQL statement',
132 'another SQL statement',
133 ],
134 }
135 ],
136
ad91060a 137=item storage_type
138
139Allows the use of a different C<storage_type> than what is set in your
140C<schema_class> (which in turn defaults to C<::DBI> if not set in current
b8427e0b 141L<DBIx::Class>). Completely optional, and probably unnecessary for most
142people until other storage backends become available for L<DBIx::Class>.
ad91060a 143
144=back
145
146=head1 METHODS
147
148=over 4
149
150=item new
151
152Instantiates the Model based on the above-documented ->config parameters.
0f2fd2c0 153The only required parameter is C<schema_class>. C<connect_info> is
154required in the case that C<schema_class> does not already have connection
155information defined for it.
ad91060a 156
157=item schema
158
159Accessor which returns the connected schema being used by the this model.
c12b7310 160There are already direct shortcuts on the model class itself for
161schema->resultset, schema->source, and schema->class.
ad91060a 162
163=item composed_schema
164
165Accessor which returns the composed schema, which has no connection info,
166which was used in constructing the C<schema> above. Useful for creating
c12b7310 167new connections based on the same schema/model. There are direct shortcuts
168from the model object for composed_schema->clone and composed_schema->connect
ad91060a 169
170=item clone
171
172Shortcut for ->composed_schema->clone
173
174=item connect
175
176Shortcut for ->composed_schema->connect
177
c12b7310 178=item source
179
180Shortcut for ->schema->source
181
182=item class
183
184Shortcut for ->schema->class
185
186=item resultset
187
188Shortcut for ->schema->resultset
189
b8427e0b 190=item storage
191
192Provides an accessor for the connected schema's storage object.
193Used often for debugging and controlling transactions.
194
ad91060a 195=back
196
197=cut
198
199sub new {
46878f2e 200 my $self = shift->NEXT::new(@_);
ad91060a 201
202 my $class = ref($self);
203 my $model_name = $class;
204 $model_name =~ s/^[\w:]+::(?:Model|M):://;
205
0f2fd2c0 206 croak "->config->{schema_class} must be defined for this model"
207 unless $self->{schema_class};
ad91060a 208
209 my $schema_class = $self->{schema_class};
210
1aeb6e1e 211 $schema_class->require
212 or croak "Cannot load schema class '$schema_class': $@";
ad91060a 213
0f2fd2c0 214 if( !$self->{connect_info} ) {
215 if($schema_class->storage && $schema_class->storage->connect_info) {
216 $self->{connect_info} = $schema_class->storage->connect_info;
217 }
218 else {
219 croak "Either ->config->{connect_info} must be defined for $class"
1aeb6e1e 220 . " or $schema_class must have connect info defined on it";
0f2fd2c0 221 }
222 }
223
ad91060a 224 $self->composed_schema($schema_class->compose_namespace($class));
225 $self->schema($self->composed_schema->clone);
cd7e6e4f 226
227 $self->schema->storage_type($self->{storage_type})
228 if $self->{storage_type};
7db6da78 229
230 # XXX This is temporary, until DBIx::Class::Storage::DBI supports the
231 # same syntax and we switch our requisite to that version somewhere
232 # down the line. This syntax is already committed into DBIx::Class
233 # dev branch post-0.06.
234 # At that time, this whole block can revert back to just being:
235 # $self->schema->connection(@{$self->{connect_info}});
236
237 my $connect_info = [ @{$self->{connect_info}} ];
238 my ($on_connect_do, %sql_maker_opts);
239 if($DBIx::Class::VERSION < 0.069) {
240 my $used;
241 my $last_info = $self->{connect_info}->[-1];
242 if(ref $last_info eq 'HASH') {
243 if($on_connect_do = $last_info->{on_connect_do}) {
244 $used = 1;
245 }
246 for my $sql_maker_opt (qw/limit_dialect quote_char name_sep/) {
247 if(my $opt_val = $last_info->{$sql_maker_opt}) {
248 $used = 1;
249 $sql_maker_opts{$sql_maker_opt} = $opt_val;
250 }
4bd6775c 251 }
7db6da78 252 pop(@$connect_info) if $used;
4bd6775c 253 }
254 }
ad91060a 255
7db6da78 256 $self->schema->connection(@$connect_info);
257
258 if($DBIx::Class::VERSION < 0.069) {
259 $self->schema->storage->on_connect_do($on_connect_do)
260 if $on_connect_do;
261 foreach my $sql_maker_opt (keys %sql_maker_opts) {
262 $self->schema->storage->sql_maker->$sql_maker_opt(
263 $sql_maker_opts{$sql_maker_opt}
264 );
265 }
266 }
267
268 # XXX end of compatibility block referenced above
269
ad91060a 270 no strict 'refs';
271 foreach my $moniker ($self->schema->sources) {
0b2a7108 272 my $classname = "${class}::$moniker";
7db6da78 273 *{"${classname}::ACCEPT_CONTEXT"} = sub {
ad91060a 274 shift;
c12b7310 275 shift->model($model_name)->resultset($moniker);
ad91060a 276 }
277 }
278
279 return $self;
280}
281
ad91060a 282sub clone { shift->composed_schema->clone(@_); }
283
ad91060a 284sub connect { shift->composed_schema->connect(@_); }
285
b8427e0b 286sub storage { shift->schema->storage(@_); }
287
ad91060a 288=head1 SEE ALSO
289
7b39f3f0 290General Catalyst Stuff:
291
292L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
293L<Catalyst::Response>, L<Catalyst::Helper>, L<Catalyst>,
294
295Stuff related to DBIC and this Model style:
296
297L<DBIx::Class>, L<DBIx::Class::Schema>,
298L<DBIx::Class::Schema::Loader>, L<Catalyst::Helper::Model::DBIC::Schema>,
1aeb6e1e 299L<Catalyst::Helper::Model::DBIC::SchemaLoader>
ad91060a 300
301=head1 AUTHOR
302
303Brandon L Black, C<blblack@gmail.com>
304
305=head1 COPYRIGHT
306
307This program is free software, you can redistribute it and/or modify it
308under the same terms as Perl itself.
309
310=cut
311
3121;