0.20 release
[catagits/Catalyst-Model-DBIC-Schema.git] / lib / Catalyst / Model / DBIC / Schema.pm
CommitLineData
ad91060a 1package Catalyst::Model::DBIC::Schema;
2
3use strict;
018eb0e2 4use warnings;
5
6our $VERSION = '0.20';
7
f1613faa 8use base qw/Catalyst::Model Class::Accessor::Fast Class::Data::Accessor/;
ad91060a 9use NEXT;
10use UNIVERSAL::require;
11use Carp;
bfcd6e3d 12use Data::Dumper;
7db6da78 13require DBIx::Class;
ad91060a 14
f1613faa 15__PACKAGE__->mk_classaccessor('composed_schema');
16__PACKAGE__->mk_accessors('schema');
17
ad91060a 18=head1 NAME
19
20Catalyst::Model::DBIC::Schema - DBIx::Class::Schema Model Class
21
22=head1 SYNOPSIS
23
aabc1d75 24Manual creation of a DBIx::Class::Schema and a Catalyst::Model::DBIC::Schema:
25
26=over
27
28=item 1.
29
30Create the DBIx:Class schema in MyApp/Schema/FilmDB.pm:
31
32 package MyApp::Schema::FilmDB;
33 use base qw/DBIx::Class::Schema/;
34
35 __PACKAGE__->load_classes(qw/Actor Role/);
36
37=item 2.
38
39Create some classes for the tables in the database, for example an
40Actor in MyApp/Schema/FilmDB/Actor.pm:
41
42 package MyApp::Schema::FilmDB::Actor;
43 use base qw/DBIx::Class/
07edc53e 44
aabc1d75 45 __PACKAGE__->load_components(qw/Core/);
46 __PACKAGE__->table('actor');
07edc53e 47
aabc1d75 48 ...
49
50and a Role in MyApp/Schema/Role.pm:
51
52 package MyApp::Schema::FilmDB::Role;
53 use base qw/DBIx::Class/
07edc53e 54
aabc1d75 55 __PACKAGE__->load_components(qw/Core/);
4a3e80e9 56 __PACKAGE__->table('role');
07edc53e 57
aabc1d75 58 ...
59
60Notice that the schema is in MyApp::Schema, not in MyApp::Model. This way it's
61usable as a standalone module and you can test/run it without Catalyst.
62
63=item 3.
64
65To expose it to Catalyst as a model, you should create a DBIC Model in
66MyApp/Model/FilmDB.pm:
67
68 package MyApp::Model::FilmDB;
69 use base qw/Catalyst::Model::DBIC::Schema/;
07edc53e 70
aabc1d75 71 __PACKAGE__->config(
72 schema_class => 'MyApp::Schema::FilmDB',
73 connect_info => [
74 "DBI:...",
75 "username",
76 "password",
77 {AutoCommit => 1}
78 ]
79 );
80
81See below for a full list of the possible config parameters.
82
83=back
84
85Now you have a working Model, accessing your separate DBIC Schema. Which can
86be used/accessed in the normal Catalyst manner, via $c->model():
87
88 my $actor = $c->model('FilmDB::Actor')->find(1);
89
90You can also use it to set up DBIC authentication with
91Authentication::Store::DBIC in MyApp.pm:
92
93 package MyApp;
07edc53e 94
aabc1d75 95 use Catalyst qw/... Authentication::Store::DBIC/;
07edc53e 96
aabc1d75 97 ...
07edc53e 98
aabc1d75 99 __PACKAGE__->config->{authentication}{dbic} = {
100 user_class => 'FilmDB::Actor',
101 user_field => 'name',
102 password_field => 'password'
103 }
104
105C<< $c->model() >> returns a L<DBIx::Class::ResultSet> for the source name
106parameter passed. To find out more about which methods can be called on a
107ResultSet, or how to add your own methods to it, please see the ResultSet
108documentation in the L<DBIx::Class> distribution.
109
110Some examples are given below:
111
f1613faa 112 # to access schema methods directly:
113 $c->model('FilmDB')->schema->source(...);
114
115 # to access the source object, resultset, and class:
07edc53e 116 $c->model('FilmDB')->source(...);
117 $c->model('FilmDB')->resultset(...);
118 $c->model('FilmDB')->class(...);
c12b7310 119
07edc53e 120 # For resultsets, there's an even quicker shortcut:
121 $c->model('FilmDB::Actor')
122 # is the same as $c->model('FilmDB')->resultset('Actor')
ad91060a 123
f1613faa 124 # To get the composed schema for making new connections:
125 my $newconn = $c->model('FilmDB')->composed_schema->connect(...);
126
127 # Or the same thing via a convenience shortcut:
128 my $newconn = $c->model('FilmDB')->connect(...);
129
130 # or, if your schema works on different storage drivers:
131 my $newconn = $c->model('FilmDB')->composed_schema->clone();
132 $newconn->storage_type('::LDAP');
133 $newconn->connection(...);
134
135 # and again, a convenience shortcut
136 my $newconn = $c->model('FilmDB')->clone();
137 $newconn->storage_type('::LDAP');
138 $newconn->connection(...);
139
ad91060a 140=head1 DESCRIPTION
141
7b39f3f0 142This is a Catalyst Model for L<DBIx::Class::Schema>-based Models. See
ef91bcf9 143the documentation for L<Catalyst::Helper::Model::DBIC::Schema> for
144information on generating these Models via Helper scripts.
ad91060a 145
146=head1 CONFIG PARAMETERS
147
148=over 4
149
150=item schema_class
151
152This is the classname of your L<DBIx::Class::Schema> Schema. It needs
aabc1d75 153to be findable in C<@INC>, but it does not need to be inside the
154C<Catalyst::Model::> namespace. This parameter is required.
ad91060a 155
156=item connect_info
157
158This is an arrayref of connection parameters, which are specific to your
7db6da78 159C<storage_type> (see your storage type documentation for more details).
ad91060a 160
0f2fd2c0 161This is not required if C<schema_class> already has connection information
d89e6c8a 162defined inside itself (which isn't highly recommended, but can be done)
0f2fd2c0 163
7db6da78 164For L<DBIx::Class::Storage::DBI>, which is the only supported
165C<storage_type> in L<DBIx::Class> at the time of this writing, the
166parameters are your dsn, username, password, and connect options hashref.
167
018eb0e2 168See L<DBIx::Class::Storage::DBI/connect_info> for a detailed explanation
169of the arguments supported.
7db6da78 170
171Examples:
172
07edc53e 173 connect_info => [ 'dbi:Pg:dbname=mypgdb', 'postgres', '' ],
174
175 connect_info => [
176 'dbi:SQLite:dbname=foo.db',
177 {
178 on_connect_do => [
179 'PRAGMA synchronous = OFF',
180 ],
181 }
182 ],
183
184 connect_info => [
185 'dbi:Pg:dbname=mypgdb',
186 'postgres',
187 '',
188 { AutoCommit => 0 },
189 {
190 on_connect_do => [
191 'some SQL statement',
192 'another SQL statement',
193 ],
194 }
195 ],
7db6da78 196
ad91060a 197=item storage_type
198
199Allows the use of a different C<storage_type> than what is set in your
200C<schema_class> (which in turn defaults to C<::DBI> if not set in current
f1613faa 201L<DBIx::Class>). Completely optional, and probably unnecessary for most
202people until other storage backends become available for L<DBIx::Class>.
ad91060a 203
204=back
205
206=head1 METHODS
207
208=over 4
209
210=item new
211
212Instantiates the Model based on the above-documented ->config parameters.
0f2fd2c0 213The only required parameter is C<schema_class>. C<connect_info> is
214required in the case that C<schema_class> does not already have connection
215information defined for it.
ad91060a 216
f1613faa 217=item schema
218
219Accessor which returns the connected schema being used by the this model.
220There are direct shortcuts on the model class itself for
221schema->resultset, schema->source, and schema->class.
222
223=item composed_schema
224
225Accessor which returns the composed schema, which has no connection info,
226which was used in constructing the C<schema> above. Useful for creating
227new connections based on the same schema/model. There are direct shortcuts
228from the model object for composed_schema->clone and composed_schema->connect
229
230=item clone
231
232Shortcut for ->composed_schema->clone
233
234=item connect
235
236Shortcut for ->composed_schema->connect
237
238=item source
c12b7310 239
f1613faa 240Shortcut for ->schema->source
241
242=item class
243
244Shortcut for ->schema->class
245
246=item resultset
247
248Shortcut for ->schema->resultset
249
250=item storage
251
252Provides an accessor for the connected schema's storage object.
253Used often for debugging and controlling transactions.
b8427e0b 254
ad91060a 255=back
256
257=cut
258
259sub new {
46878f2e 260 my $self = shift->NEXT::new(@_);
ad91060a 261
262 my $class = ref($self);
263 my $model_name = $class;
264 $model_name =~ s/^[\w:]+::(?:Model|M):://;
265
0f2fd2c0 266 croak "->config->{schema_class} must be defined for this model"
267 unless $self->{schema_class};
ad91060a 268
269 my $schema_class = $self->{schema_class};
270
1aeb6e1e 271 $schema_class->require
f1613faa 272 or croak "Cannot load schema class '$schema_class': $@";
7db6da78 273
f1613faa 274 if( !$self->{connect_info} ) {
275 if($schema_class->storage && $schema_class->storage->connect_info) {
276 $self->{connect_info} = $schema_class->storage->connect_info;
277 }
278 else {
279 croak "Either ->config->{connect_info} must be defined for $class"
280 . " or $schema_class must have connect info defined on it"
281 . "Here's what we got:\n"
282 . Dumper($self);
283 }
7db6da78 284 }
285
f1613faa 286 $self->composed_schema($schema_class->compose_namespace($class));
287 $self->schema($self->composed_schema->clone);
288
289 $self->schema->storage_type($self->{storage_type})
290 if $self->{storage_type};
7db6da78 291
f1613faa 292 $self->schema->connection(@{$self->{connect_info}});
293
ad91060a 294 no strict 'refs';
295 foreach my $moniker ($self->schema->sources) {
0b2a7108 296 my $classname = "${class}::$moniker";
7db6da78 297 *{"${classname}::ACCEPT_CONTEXT"} = sub {
ad91060a 298 shift;
c12b7310 299 shift->model($model_name)->resultset($moniker);
ad91060a 300 }
301 }
302
303 return $self;
304}
305
f1613faa 306sub clone { shift->composed_schema->clone(@_); }
307
308sub connect { shift->composed_schema->connect(@_); }
309
310sub storage { shift->schema->storage(@_); }
b8427e0b 311
ad91060a 312=head1 SEE ALSO
313
7b39f3f0 314General Catalyst Stuff:
315
316L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
317L<Catalyst::Response>, L<Catalyst::Helper>, L<Catalyst>,
318
319Stuff related to DBIC and this Model style:
320
321L<DBIx::Class>, L<DBIx::Class::Schema>,
ef91bcf9 322L<DBIx::Class::Schema::Loader>, L<Catalyst::Helper::Model::DBIC::Schema>
ad91060a 323
324=head1 AUTHOR
325
326Brandon L Black, C<blblack@gmail.com>
327
328=head1 COPYRIGHT
329
330This program is free software, you can redistribute it and/or modify it
331under the same terms as Perl itself.
332
333=cut
334
3351;