fix bug where non-result files were picked up for Moose check
[catagits/Catalyst-Model-DBIC-Schema.git] / lib / Catalyst / Helper / Model / DBIC / Schema.pm
CommitLineData
ad91060a 1package Catalyst::Helper::Model::DBIC::Schema;
2
73f72d28 3use namespace::autoclean;
f090a149 4use Moose;
ffbf1967 5no warnings 'uninitialized';
018eb0e2 6
3fff2940 7our $VERSION = '0.44';
4e251d1a 8$VERSION = eval $VERSION;
2201c2e4 9
0f2fd2c0 10use Carp;
2201c2e4 11use Tie::IxHash ();
12use Data::Dumper ();
c4fee9b8 13use List::Util 'first';
4cbe63e7 14use MooseX::Types::Moose qw/Str HashRef Bool ArrayRef/;
15use Catalyst::Model::DBIC::Schema::Types 'CreateOption';
4cbe63e7 16use List::MoreUtils 'firstidx';
5f9a34d7 17use Scalar::Util 'looks_like_number';
6b6abf77 18use File::Find 'finddepth';
19use Try::Tiny;
2201c2e4 20
ad91060a 21=head1 NAME
22
23Catalyst::Helper::Model::DBIC::Schema - Helper for DBIC Schema Models
24
25=head1 SYNOPSIS
26
2201c2e4 27 script/create.pl model CatalystModelName DBIC::Schema MyApp::SchemaClass \
c34bcab6 28 [ create=dynamic | create=static ] [ traits=trait1,trait2... ] \
2ff00e2b 29 [ Schema::Loader opts ] [ dsn user pass ] \
30 [ other connect_info args ]
0f2fd2c0 31
d89e6c8a 32=head1 DESCRIPTION
33
34Helper for the DBIC Schema Models.
35
36=head2 Arguments:
37
018eb0e2 38C<CatalystModelName> is the short name for the Catalyst Model class
39being generated (i.e. callable with C<$c-E<gt>model('CatalystModelName')>).
6116daed 40
018eb0e2 41C<MyApp::SchemaClass> is the fully qualified classname of your Schema,
6116daed 42which might or might not yet exist. Note that you should have a good
43reason to create this under a new global namespace, otherwise use an
44existing top level namespace for your schema class.
45
018eb0e2 46C<create=dynamic> instructs this Helper to generate the named Schema
6116daed 47class for you, basing it on L<DBIx::Class::Schema::Loader> (which
48means the table information will always be dynamically loaded at
49runtime from the database).
50
018eb0e2 51C<create=static> instructs this Helper to generate the named Schema
6116daed 52class for you, using L<DBIx::Class::Schema::Loader> in "one shot"
53mode to create a standard, manually-defined L<DBIx::Class::Schema>
54setup, based on what the Loader sees in your database at this moment.
55A Schema/Model pair generated this way will not require
56L<DBIx::Class::Schema::Loader> at runtime, and will not automatically
57adapt itself to changes in your database structure. You can edit
58the generated classes by hand to refine them.
59
c34bcab6 60C<traits> is the list of traits to apply to the model, see
2ff00e2b 61L<Catalyst::Model::DBIC::Schema> for details.
62
63C<Schema::Loader opts> are described in L</TYPICAL EXAMPLES> below.
64
018eb0e2 65C<connect_info> arguments are the same as what
6116daed 66DBIx::Class::Schema::connect expects, and are storage_type-specific.
67For DBI-based storage, these arguments are the dsn, username,
68password, and connect options, respectively. These are optional for
69existing Schemas, but required if you use either of the C<create=>
70options.
d89e6c8a 71
a75b6e58 72username and password can be omitted for C<SQLite> dsns.
73
d89e6c8a 74Use of either of the C<create=> options requires L<DBIx::Class::Schema::Loader>.
0b2a7108 75
76=head1 TYPICAL EXAMPLES
77
a75b6e58 78Use DBIx::Class::Schema::Loader to create a static DBIx::Class::Schema,
79and a Model which references it:
80
2201c2e4 81 script/myapp_create.pl model CatalystModelName DBIC::Schema \
82 MyApp::SchemaClass create=static dbi:mysql:foodb myuname mypass
83
a75b6e58 84Same, with extra connect_info args
85user and pass can be omitted for sqlite, since they are always empty
86
2201c2e4 87 script/myapp_create.pl model CatalystModelName DBIC::Schema \
a75b6e58 88 MyApp::SchemaClass create=static dbi:SQLite:foo.db \
2201c2e4 89 AutoCommit=1 cursor_class=DBIx::Class::Cursor::Cached \
a75b6e58 90 on_connect_do='["select 1", "select 2"]' quote_char='"'
91
c34bcab6 92If using a 2 character quote_char:
93
94 script/myapp_create.pl ... quote_char='[]'
95
a75b6e58 96B<ON WINDOWS COMMAND LINES QUOTING RULES ARE DIFFERENT>
97
98In C<cmd.exe> the above example would be:
99
100 script/myapp_create.pl model CatalystModelName DBIC::Schema \
101 MyApp::SchemaClass create=static dbi:SQLite:foo.db \
102 AutoCommit=1 cursor_class=DBIx::Class::Cursor::Cached \
103 on_connect_do="[\"select 1\", \"select 2\"]" quote_char="\""
104
105Same, but with extra Schema::Loader args (separate multiple values by commas):
0b2a7108 106
2201c2e4 107 script/myapp_create.pl model CatalystModelName DBIC::Schema \
108 MyApp::SchemaClass create=static db_schema=foodb components=Foo,Bar \
4cbe63e7 109 exclude='^(wibble|wobble)$' moniker_map='{ foo => "FOO" }' \
2201c2e4 110 dbi:Pg:dbname=foodb myuname mypass
34f036a0 111
ce9e19dc 112Coderefs are also supported:
113
114 script/myapp_create.pl model CatalystModelName DBIC::Schema \
115 MyApp::SchemaClass create=static \
116 inflect_singular='sub { $_[0] =~ /\A(.+?)(_id)?\z/; $1 }' \
117 moniker_map='sub { join(q{}, map ucfirst, split(/[\W_]+/, lc $_[0])); }' \
118 dbi:mysql:foodb myuname mypass
119
a75b6e58 120See L<DBIx::Class::Schema::Loader::Base> for a list of options
121
122Create a dynamic DBIx::Class::Schema::Loader-based Schema,
123and a Model which references it (B<DEPRECATED>):
34f036a0 124
2201c2e4 125 script/myapp_create.pl model CatalystModelName DBIC::Schema \
126 MyApp::SchemaClass create=dynamic dbi:mysql:foodb myuname mypass
ad91060a 127
a75b6e58 128Reference an existing Schema of any kind, and provide some connection information for ->config:
129
2201c2e4 130 script/myapp_create.pl model CatalystModelName DBIC::Schema \
131 MyApp::SchemaClass dbi:mysql:foodb myuname mypass
ad91060a 132
a75b6e58 133Same, but don't supply connect information yet (you'll need to do this
134in your app config, or [not recommended] in the schema itself).
135
d89e6c8a 136 script/myapp_create.pl model ModelName DBIC::Schema My::SchemaClass
ad91060a 137
f090a149 138=cut
139
140has helper => (is => 'ro', isa => 'Catalyst::Helper', required => 1);
4cbe63e7 141has create => (is => 'rw', isa => CreateOption);
142has args => (is => 'ro', isa => ArrayRef);
c34bcab6 143has traits => (is => 'rw', isa => ArrayRef);
61ed82a5 144has schema_class => (is => 'ro', isa => Str, required => 1);
61ed82a5 145has loader_args => (is => 'rw', isa => HashRef);
146has connect_info => (is => 'rw', isa => HashRef);
61ed82a5 147has old_schema => (is => 'rw', isa => Bool, lazy_build => 1);
6b6abf77 148has is_moose_schema => (is => 'rw', isa => Bool, lazy_build => 1);
4cbe63e7 149has components => (is => 'rw', isa => ArrayRef);
f090a149 150
018eb0e2 151=head1 METHODS
ad91060a 152
018eb0e2 153=head2 mk_compclass
ad91060a 154
0fbbc8d5 155This is called by L<Catalyst::Helper> with the commandline args to generate the
156files.
157
ad91060a 158=cut
159
160sub mk_compclass {
2201c2e4 161 my ($package, $helper, $schema_class, @args) = @_;
162
4cbe63e7 163 my $self = $package->new(
164 helper => $helper,
165 schema_class => $schema_class,
166 args => \@args
167 );
0f2fd2c0 168
4cbe63e7 169 $self->run;
170}
171
172sub BUILD {
173 my $self = shift;
174 my $helper = $self->helper;
7dfd616a 175 my @args = @{ $self->args || [] };
4cbe63e7 176
177 $helper->{schema_class} = $self->schema_class;
c4fee9b8 178
179 @args = $self->_cleanup_args(\@args);
d89e6c8a 180
c34bcab6 181 my ($traits_idx, $traits);
182 if (($traits_idx = firstidx { ($traits) = /^traits=(\S*)\z/ } @args) != -1) {
183 my @traits = split /,/ => $traits;
2201c2e4 184
c34bcab6 185 $self->traits(\@traits);
4cbe63e7 186
c34bcab6 187 $helper->{traits} = '['
7dfd616a 188 .(join ',' => map { qq{'$_'} } @traits)
4cbe63e7 189 .']';
190
c34bcab6 191 splice @args, $traits_idx, 1, ();
4cbe63e7 192 }
193
194 if ($args[0] && $args[0] =~ /^create=(\S*)\z/) {
195 $self->create($1);
196 shift @args;
2ff00e2b 197
2201c2e4 198 if (@args) {
199 $self->_parse_loader_args(\@args);
200
4cbe63e7 201 $helper->{loader_args} = $self->_build_helper_loader_args;
ca7cf6f0 202 }
203 }
4cbe63e7 204
ca7cf6f0 205 my $dbi_dsn_part;
206 if (first { ($dbi_dsn_part) = /^(dbi):/i } @args) {
207 die
a4803ca6 208qq{DSN must start with 'dbi:' not '$dbi_dsn_part' (case matters!)}
ca7cf6f0 209 if $dbi_dsn_part ne 'dbi';
a4803ca6 210
ca7cf6f0 211 $helper->{setup_connect_info} = 1;
2201c2e4 212
ca7cf6f0 213 $helper->{connect_info} =
214 $self->_build_helper_connect_info(\@args);
2201c2e4 215
ca7cf6f0 216 $self->_parse_connect_info(\@args);
d89e6c8a 217 }
0f2fd2c0 218
2201c2e4 219 $helper->{generator} = ref $self;
220 $helper->{generator_version} = $VERSION;
4cbe63e7 221}
222
9f7cc709 223=head2 run
224
225Can be called on an instance to generate the files.
226
227=cut
228
4cbe63e7 229sub run {
230 my $self = shift;
2201c2e4 231
4cbe63e7 232 if ($self->create eq 'dynamic') {
c4fee9b8 233 $self->_print_dynamic_deprecation_warning;
2201c2e4 234 $self->_gen_dynamic_schema;
4cbe63e7 235 } elsif ($self->create eq 'static') {
2201c2e4 236 $self->_gen_static_schema;
237 }
238
239 $self->_gen_model;
240}
241
242sub _parse_loader_args {
243 my ($self, $args) = @_;
244
245 my %loader_args = $self->_read_loader_args($args);
246
247 while (my ($key, $val) = each %loader_args) {
248 next if $key =~ /^(?:components|constraint|exclude)\z/;
249
5f9a34d7 250 $loader_args{$key} = $self->_eval($val);
c4fee9b8 251 die "syntax error for loader args key '$key' with value '$val': $@"
2201c2e4 252 if $@;
253 }
254
7e6a622c 255 my @components = $self->_build_loader_components(
256 delete $loader_args{components},
257 $loader_args{use_namespaces},
258 );
2201c2e4 259
4cbe63e7 260 $self->components(\@components);
261
2201c2e4 262 for my $re_opt (qw/constraint exclude/) {
263 $loader_args{$re_opt} = qr/$loader_args{$re_opt}/
264 if exists $loader_args{$re_opt};
265 }
266
267 tie my %result, 'Tie::IxHash';
268
269 %result = (
270 relationships => 1,
6b6abf77 271 use_moose => $self->is_moose_schema ? 1 : 0,
f0279514 272 col_collision_map => 'column_%s',
f090a149 273 (!$self->old_schema ? (
2201c2e4 274 use_namespaces => 1
275 ) : ()),
276 (@components ? (
277 components => \@components
7e6a622c 278 ) : ()),
279 (%loader_args ? %loader_args : ()),
2201c2e4 280 );
281
282 $self->loader_args(\%result);
283
284 wantarray ? %result : \%result;
285}
286
287sub _read_loader_args {
288 my ($self, $args) = @_;
289
290 my %loader_args;
291
a4803ca6 292 while (@$args && $args->[0] !~ /^dbi:/i) {
2201c2e4 293 my ($key, $val) = split /=/, shift(@$args), 2;
ca14239e 294
4cbe63e7 295 if ($self->_is_struct($val)) {
296 $loader_args{$key} = $val;
297 } elsif ((my @vals = split /,/ => $val) > 1) {
2201c2e4 298 $loader_args{$key} = \@vals;
ca14239e 299 } else {
2201c2e4 300 $loader_args{$key} = $val;
ca14239e 301 }
302 }
303
2201c2e4 304 wantarray ? %loader_args : \%loader_args;
305}
306
307sub _build_helper_loader_args {
308 my $self = shift;
309
310 my $args = $self->loader_args;
311
312 tie my %loader_args, 'Tie::IxHash';
313
314 while (my ($arg, $val) = each %$args) {
315 if (ref $val) {
316 $loader_args{$arg} = $self->_data_struct_to_string($val);
317 } else {
318 $loader_args{$arg} = qq{'$val'};
0b2a7108 319 }
0f2fd2c0 320 }
321
2201c2e4 322 \%loader_args
323}
324
325sub _build_loader_components {
7e6a622c 326 my ($self, $components, $use_namespaces) = @_;
d89e6c8a 327
7e6a622c 328 my @components = $self->old_schema && (not $use_namespaces) ? ()
329 : ('InflateColumn::DateTime');
d89e6c8a 330
2201c2e4 331 if ($components) {
332 $components = [ $components ] if !ref $components;
333 push @components, @$components;
d89e6c8a 334 }
2201c2e4 335
336 wantarray ? @components : \@components;
337}
338
339sub _build_helper_connect_info {
340 my ($self, $connect_info) = @_;
341
342 my @connect_info = @$connect_info;
343
a75b6e58 344 my ($dsn, $user, $password) = $self->_get_dsn_user_pass(\@connect_info);
2201c2e4 345
346 tie my %helper_connect_info, 'Tie::IxHash';
347
348 %helper_connect_info = (
349 dsn => qq{'$dsn'},
350 user => qq{'$user'},
351 password => qq{'$password'}
352 );
353
354 for (@connect_info) {
355 if (/^\s*{.*}\s*\z/) {
5f9a34d7 356 my $hash = $self->_eval($_);
c4fee9b8 357 die "Syntax errorr in connect_info hash: $_: $@" if $@;
2201c2e4 358 my %hash = %$hash;
359
360 for my $key (keys %hash) {
361 my $val = $hash{$key};
362
363 if (ref $val) {
364 $val = $self->_data_struct_to_string($val);
365 } else {
c34bcab6 366 $val = $self->_quote($val);
2201c2e4 367 }
368
369 $helper_connect_info{$key} = $val;
592cd3ae 370 }
2201c2e4 371
372 next;
592cd3ae 373 }
374
2201c2e4 375 my ($key, $val) = split /=/, $_, 2;
1d155058 376
c34bcab6 377 if ($key eq 'quote_char') {
378 $helper_connect_info{$key} = length($val) == 1 ?
379 $self->_quote($val) :
380 $self->_data_struct_to_string([split //, $val]);
381 } else {
382 $helper_connect_info{$key} = $self->_quote_unless_struct($val);
383 }
2201c2e4 384 }
1d155058 385
2201c2e4 386 \%helper_connect_info
387}
1d155058 388
61ed82a5 389sub _build_old_schema {
390 my $self = shift;
391
392 my @schema_pm = split '::', $self->schema_class;
393 $schema_pm[-1] .= '.pm';
394 my $schema_file =
395 File::Spec->catfile($self->helper->{base}, 'lib', @schema_pm);
396
397 if (-f $schema_file) {
398 my $schema_code = do { local (@ARGV, $/) = $schema_file; <> };
399 return 1 if $schema_code =~ /->load_classes/;
400 }
401
402 0;
403}
404
6b6abf77 405sub _build_is_moose_schema {
406 my $self = shift;
407
408 my @schema_parts = split '::', $self->schema_class;
409 my $schema_dir =
410 File::Spec->catfile($self->helper->{base}, 'lib', @schema_parts);
411
412 # assume yes for new schemas
413 return 1 if not -d $schema_dir;
414
415 my $uses_moose = 1;
416
417 try {
418 finddepth(sub {
9a6afcd6 419 return if $File::Find::name !~ /\.pm\z/;
420
6b6abf77 421 open my $fh, '<', $File::Find::name
422 or die "Could not open $File::Find::name: $!";
423
424 my $code = do { local $/; <$fh> };
425 close $fh;
426
427 $uses_moose = 0 if $code !~ /\nuse Moose;\n/;
428
429 die;
430 }, $schema_dir);
431 };
432
433 return $uses_moose;
434}
435
2201c2e4 436sub _data_struct_to_string {
437 my ($self, $data) = @_;
34f036a0 438
2201c2e4 439 local $Data::Dumper::Terse = 1;
440 local $Data::Dumper::Quotekeys = 0;
441 local $Data::Dumper::Indent = 0;
442 local $Data::Dumper::Useqq = 1;
34f036a0 443
2201c2e4 444 return Data::Dumper->Dump([$data]);
445}
34f036a0 446
a75b6e58 447sub _get_dsn_user_pass {
448 my ($self, $connect_info) = @_;
449
450 my $dsn = shift @$connect_info;
451 my ($user, $password);
452
453 if ($dsn =~ /sqlite/i) {
454 ($user, $password) = ('', '');
108a45d1 455 shift @$connect_info while @$connect_info and $connect_info->[0] eq '';
a75b6e58 456 } else {
457 ($user, $password) = splice @$connect_info, 0, 2;
458 }
459
460 ($dsn, $user, $password)
461}
462
2201c2e4 463sub _parse_connect_info {
464 my ($self, $connect_info) = @_;
465
466 my @connect_info = @$connect_info;
467
a75b6e58 468 my ($dsn, $user, $password) = $self->_get_dsn_user_pass(\@connect_info);
2201c2e4 469
470 tie my %connect_info, 'Tie::IxHash';
471 @connect_info{qw/dsn user password/} = ($dsn, $user, $password);
472
473 for (@connect_info) {
474 if (/^\s*{.*}\s*\z/) {
5f9a34d7 475 my $hash = $self->_eval($_);
c4fee9b8 476 die "Syntax errorr in connect_info hash: $_: $@" if $@;
2201c2e4 477
478 %connect_info = (%connect_info, %$hash);
ca14239e 479
2201c2e4 480 next;
ca14239e 481 }
482
2201c2e4 483 my ($key, $val) = split /=/, $_, 2;
484
c34bcab6 485 if ($key eq 'quote_char') {
486 $connect_info{$key} = length($val) == 1 ? $val : [split //, $val];
487 } elsif ($key =~ /^(?:name_sep|limit_dialect)\z/) {
3f139b02 488 $connect_info{$key} = $val;
489 } else {
5f9a34d7 490 $connect_info{$key} = $self->_eval($val);
3f139b02 491 }
492
c4fee9b8 493 die "syntax error for connect_info key '$key' with value '$val': $@"
2201c2e4 494 if $@;
d89e6c8a 495 }
202d09c8 496
2201c2e4 497 $self->connect_info(\%connect_info);
498
499 \%connect_info
500}
501
4cbe63e7 502sub _is_struct {
503 my ($self, $val) = @_;
504
ce9e19dc 505 return $val =~ /^\s*(?:sub|[[{])/;
4cbe63e7 506}
507
c34bcab6 508sub _quote {
509 my ($self, $val) = @_;
510
511 return 'q{'.$val.'}';
512}
513
2201c2e4 514sub _quote_unless_struct {
515 my ($self, $val) = @_;
516
c34bcab6 517 $val = $self->_quote($val) if not $self->_is_struct($val);
2201c2e4 518
c34bcab6 519 return $val;
2201c2e4 520}
521
5f9a34d7 522sub _eval {
523 my ($self, $code) = @_;
524
525 return $code if looks_like_number $code;
526
97631b44 527 return $code if not $self->_is_struct($code);
5f9a34d7 528
529 return eval "{no strict; $code}";
530}
531
2201c2e4 532sub _gen_dynamic_schema {
533 my $self = shift;
534
535 my $helper = $self->helper;
536
537 my @schema_parts = split(/\:\:/, $self->schema_class);
538 my $schema_file_part = pop @schema_parts;
539
540 my $schema_dir = File::Spec->catfile(
541 $helper->{base}, 'lib', @schema_parts
542 );
543 my $schema_file = File::Spec->catfile(
544 $schema_dir, $schema_file_part . '.pm'
545 );
546
547 $helper->mk_dir($schema_dir);
548 $helper->render_file('schemaclass', $schema_file);
549}
550
551sub _gen_static_schema {
552 my $self = shift;
553
c4fee9b8 554 die "cannot load schema without connect info" unless $self->connect_info;
2201c2e4 555
556 my $helper = $self->helper;
557
558 my $schema_dir = File::Spec->catfile($helper->{base}, 'lib');
559
f090a149 560 eval { Class::MOP::load_class('DBIx::Class::Schema::Loader') };
c4fee9b8 561 die "Cannot load DBIx::Class::Schema::Loader: $@" if $@;
f090a149 562
563 DBIx::Class::Schema::Loader->import(
2201c2e4 564 "dump_to_dir:$schema_dir", 'make_schema_at'
f090a149 565 );
2201c2e4 566
567 make_schema_at(
568 $self->schema_class,
569 $self->loader_args,
570 [$self->connect_info]
571 );
572}
573
2201c2e4 574sub _gen_model {
575 my $self = shift;
576 my $helper = $self->helper;
577
578 $helper->render_file('compclass', $helper->{file} );
ad91060a 579}
580
c4fee9b8 581sub _print_dynamic_deprecation_warning {
582 warn <<EOF;
583************************************ WARNING **********************************
584* create=dynamic is DEPRECATED, please use create=static instead. *
585*******************************************************************************
586EOF
587 print "Continue? [y/n]: ";
588 chomp(my $response = <STDIN>);
589 exit 0 if $response =~ /^n(o)?\z/;
590}
591
592sub _cleanup_args {
593 my ($self, $args) = @_;
594
595# remove blanks, ie. someoned doing foo \ bar
61ed82a5 596 my @res = grep !/^\s+\z/, @$args;
c4fee9b8 597
598# remove leading whitespace, ie. foo \ bar
599 s/^\s*// for @res;
600
601 @res
602}
603
ad91060a 604=head1 SEE ALSO
605
7b39f3f0 606General Catalyst Stuff:
607
ad91060a 608L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
7b39f3f0 609L<Catalyst::Response>, L<Catalyst::Helper>, L<Catalyst>,
610
611Stuff related to DBIC and this Model style:
612
613L<DBIx::Class>, L<DBIx::Class::Schema>,
ef91bcf9 614L<DBIx::Class::Schema::Loader>, L<Catalyst::Model::DBIC::Schema>
ad91060a 615
616=head1 AUTHOR
617
4e251d1a 618See L<Catalyst::Model::DBIC::Schema/AUTHOR> and
619L<Catalyst::Model::DBIC::Schema/CONTRIBUTORS>.
ad91060a 620
4e251d1a 621=head1 COPYRIGHT
2ff00e2b 622
4e251d1a 623See L<Catalyst::Model::DBIC::Schema/COPYRIGHT>.
2ff00e2b 624
ad91060a 625=head1 LICENSE
626
627This library is free software, you can redistribute it and/or modify
628it under the same terms as Perl itself.
629
630=cut
631
dce0dfe8 6321;
633
ad91060a 634__DATA__
635
5d11d759 636=begin pod_to_ignore
637
d89e6c8a 638__schemaclass__
639package [% schema_class %];
640
641use strict;
642use base qw/DBIx::Class::Schema::Loader/;
643
644__PACKAGE__->loader_options(
2201c2e4 645 [%- FOREACH key = loader_args.keys %]
646 [% key %] => [% loader_args.${key} %],
647 [%- END -%]
648
d89e6c8a 649);
650
651=head1 NAME
652
2201c2e4 653[% schema_class %] - L<DBIx::Class::Schema::Loader> class
d89e6c8a 654
655=head1 SYNOPSIS
656
657See L<[% app %]>
658
659=head1 DESCRIPTION
660
2201c2e4 661Dynamic L<DBIx::Class::Schema::Loader> schema for use in L<[% class %]>
662
663=head1 GENERATED BY
664
665[% generator %] - [% generator_version %]
d89e6c8a 666
667=head1 AUTHOR
668
2201c2e4 669[% author.replace(',+$', '') %]
d89e6c8a 670
671=head1 LICENSE
672
673This library is free software, you can redistribute it and/or modify
674it under the same terms as Perl itself.
675
676=cut
677
6781;
679
ad91060a 680__compclass__
681package [% class %];
682
683use strict;
684use base 'Catalyst::Model::DBIC::Schema';
685
686__PACKAGE__->config(
0f2fd2c0 687 schema_class => '[% schema_class %]',
c34bcab6 688 [% IF traits %]traits => [% traits %],[% END %]
2201c2e4 689 [% IF setup_connect_info %]connect_info => {
690 [%- FOREACH key = connect_info.keys %]
691 [% key %] => [% connect_info.${key} %],
692 [%- END -%]
693
694 }[% END %]
ad91060a 695);
696
697=head1 NAME
698
1aeb6e1e 699[% class %] - Catalyst DBIC Schema Model
2201c2e4 700
ad91060a 701=head1 SYNOPSIS
702
703See L<[% app %]>
704
705=head1 DESCRIPTION
706
d89e6c8a 707L<Catalyst::Model::DBIC::Schema> Model using schema L<[% schema_class %]>
ad91060a 708
2201c2e4 709=head1 GENERATED BY
710
711[% generator %] - [% generator_version %]
712
ad91060a 713=head1 AUTHOR
714
2201c2e4 715[% author.replace(',+$', '') %]
ad91060a 716
717=head1 LICENSE
718
719This library is free software, you can redistribute it and/or modify
720it under the same terms as Perl itself.
721
722=cut
723
7241;
a75b6e58 725__END__
726# vim:sts=4 sw=4: