Restore ability to handle underdefined root (t/prefetch/incomplete.t)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Admin.pm
1 package DBIx::Class::Admin;
2
3 # check deps
4 BEGIN {
5   use DBIx::Class;
6   die('The following modules are required for DBIx::Class::Admin ' . DBIx::Class::Optional::Dependencies->req_missing_for ('admin') )
7     unless DBIx::Class::Optional::Dependencies->req_ok_for ('admin');
8 }
9
10 use Moose;
11 use MooseX::Types::Moose qw/Int Str Any Bool/;
12 use DBIx::Class::Admin::Types qw/DBICConnectInfo DBICHashRef/;
13 use MooseX::Types::JSON qw(JSON);
14 use MooseX::Types::Path::Class qw(Dir File);
15 use Try::Tiny;
16 use JSON::Any qw(DWIW XS JSON);
17 use namespace::autoclean;
18
19 =head1 NAME
20
21 DBIx::Class::Admin - Administration object for schemas
22
23 =head1 SYNOPSIS
24
25   $ dbicadmin --help
26
27   $ dbicadmin --schema=MyApp::Schema \
28     --connect='["dbi:SQLite:my.db", "", ""]' \
29     --deploy
30
31   $ dbicadmin --schema=MyApp::Schema --class=Employee \
32     --connect='["dbi:SQLite:my.db", "", ""]' \
33     --op=update --set='{ "name": "New_Employee" }'
34
35   use DBIx::Class::Admin;
36
37   # ddl manipulation
38   my $admin = DBIx::Class::Admin->new(
39     schema_class=> 'MY::Schema',
40     sql_dir=> $sql_dir,
41     connect_info => { dsn => $dsn, user => $user, password => $pass },
42   );
43
44   # create SQLite sql
45   $admin->create('SQLite');
46
47   # create SQL diff for an upgrade
48   $admin->create('SQLite', {} , "1.0");
49
50   # upgrade a database
51   $admin->upgrade();
52
53   # install a version for an unversioned schema
54   $admin->install("3.0");
55
56 =head1 REQUIREMENTS
57
58 The Admin interface has additional requirements not currently part of
59 L<DBIx::Class>. See L<DBIx::Class::Optional::Dependencies> for more details.
60
61 =head1 ATTRIBUTES
62
63 =head2 schema_class
64
65 the class of the schema to load
66
67 =cut
68
69 has 'schema_class' => (
70   is  => 'ro',
71   isa => Str,
72 );
73
74
75 =head2 schema
76
77 A pre-connected schema object can be provided for manipulation
78
79 =cut
80
81 has 'schema' => (
82   is          => 'ro',
83   isa         => 'DBIx::Class::Schema',
84   lazy_build  => 1,
85 );
86
87 sub _build_schema {
88   my ($self)  = @_;
89
90   require Class::MOP;
91   Class::MOP::load_class($self->schema_class);
92   $self->connect_info->[3]{ignore_version} = 1;
93   return $self->schema_class->connect(@{$self->connect_info});
94 }
95
96 =head2 resultset
97
98 a resultset from the schema to operate on
99
100 =cut
101
102 has 'resultset' => (
103   is  => 'rw',
104   isa => Str,
105 );
106
107
108 =head2 where
109
110 a hash ref or json string to be used for identifying data to manipulate
111
112 =cut
113
114 has 'where' => (
115   is      => 'rw',
116   isa     => DBICHashRef,
117   coerce  => 1,
118 );
119
120
121 =head2 set
122
123 a hash ref or json string to be used for inserting or updating data
124
125 =cut
126
127 has 'set' => (
128   is      => 'rw',
129   isa     => DBICHashRef,
130   coerce  => 1,
131 );
132
133
134 =head2 attrs
135
136 a hash ref or json string to be used for passing additional info to the ->search call
137
138 =cut
139
140 has 'attrs' => (
141   is      => 'rw',
142   isa     => DBICHashRef,
143   coerce  => 1,
144 );
145
146
147 =head2 connect_info
148
149 connect_info the arguments to provide to the connect call of the schema_class
150
151 =cut
152
153 has 'connect_info' => (
154   is          => 'ro',
155   isa         => DBICConnectInfo,
156   lazy_build  => 1,
157   coerce      => 1,
158 );
159
160 sub _build_connect_info {
161   my ($self) = @_;
162   return $self->_find_stanza($self->config, $self->config_stanza);
163 }
164
165
166 =head2 config_file
167
168 config_file provide a config_file to read connect_info from, if this is provided
169 config_stanze should also be provided to locate where the connect_info is in the config
170 The config file should be in a format readable by Config::Any.
171
172 =cut
173
174 has config_file => (
175   is      => 'ro',
176   isa     => File,
177   coerce  => 1,
178 );
179
180
181 =head2 config_stanza
182
183 config_stanza for use with config_file should be a '::' delimited 'path' to the connection information
184 designed for use with catalyst config files
185
186 =cut
187
188 has 'config_stanza' => (
189   is  => 'ro',
190   isa => Str,
191 );
192
193
194 =head2 config
195
196 Instead of loading from a file the configuration can be provided directly as a hash ref.  Please note
197 config_stanza will still be required.
198
199 =cut
200
201 has config => (
202   is          => 'ro',
203   isa         => DBICHashRef,
204   lazy_build  => 1,
205 );
206
207 sub _build_config {
208   my ($self) = @_;
209
210   try { require Config::Any }
211     catch { die ("Config::Any is required to parse the config file.\n") };
212
213   my $cfg = Config::Any->load_files ( {files => [$self->config_file], use_ext =>1, flatten_to_hash=>1});
214
215   # just grab the config from the config file
216   $cfg = $cfg->{$self->config_file};
217   return $cfg;
218 }
219
220
221 =head2 sql_dir
222
223 The location where sql ddl files should be created or found for an upgrade.
224
225 =cut
226
227 has 'sql_dir' => (
228   is      => 'ro',
229   isa     => Dir,
230   coerce  => 1,
231 );
232
233
234 =head2 sql_type
235
236 The type of sql dialect to use for creating sql files from schema
237
238 =cut
239
240 has 'sql_type' => (
241   is     => 'ro',
242   isa    => Str,
243 );
244
245 =head2 version
246
247 Used for install, the version which will be 'installed' in the schema
248
249 =cut
250
251 has version => (
252   is  => 'rw',
253   isa => Str,
254 );
255
256
257 =head2 preversion
258
259 Previous version of the schema to create an upgrade diff for, the full sql for that version of the sql must be in the sql_dir
260
261 =cut
262
263 has preversion => (
264   is  => 'rw',
265   isa => Str,
266 );
267
268
269 =head2 force
270
271 Try and force certain operations.
272
273 =cut
274
275 has force => (
276   is  => 'rw',
277   isa => Bool,
278 );
279
280
281 =head2 quiet
282
283 Be less verbose about actions
284
285 =cut
286
287 has quiet => (
288   is  => 'rw',
289   isa => Bool,
290 );
291
292 has '_confirm' => (
293   is  => 'bare',
294   isa => Bool,
295 );
296
297
298 =head2 trace
299
300 Toggle DBIx::Class debug output
301
302 =cut
303
304 has trace => (
305     is => 'rw',
306     isa => Bool,
307     trigger => \&_trigger_trace,
308 );
309
310 sub _trigger_trace {
311     my ($self, $new, $old) = @_;
312     $self->schema->storage->debug($new);
313 }
314
315
316 =head1 METHODS
317
318 =head2 create
319
320 =over 4
321
322 =item Arguments: $sqlt_type, \%sqlt_args, $preversion
323
324 =back
325
326 C<create> will generate sql for the supplied schema_class in sql_dir. The
327 flavour of sql to generate can be controlled by supplying a sqlt_type which
328 should be a L<SQL::Translator> name.
329
330 Arguments for L<SQL::Translator> can be supplied in the sqlt_args hashref.
331
332 Optional preversion can be supplied to generate a diff to be used by upgrade.
333
334 =cut
335
336 sub create {
337   my ($self, $sqlt_type, $sqlt_args, $preversion) = @_;
338
339   $preversion ||= $self->preversion();
340   $sqlt_type ||= $self->sql_type();
341
342   my $schema = $self->schema();
343   # create the dir if does not exist
344   $self->sql_dir->mkpath() if ( ! -d $self->sql_dir);
345
346   $schema->create_ddl_dir( $sqlt_type, (defined $schema->schema_version ? $schema->schema_version : ""), $self->sql_dir->stringify, $preversion, $sqlt_args );
347 }
348
349
350 =head2 upgrade
351
352 =over 4
353
354 =item Arguments: <none>
355
356 =back
357
358 upgrade will attempt to upgrade the connected database to the same version as the schema_class.
359 B<MAKE SURE YOU BACKUP YOUR DB FIRST>
360
361 =cut
362
363 sub upgrade {
364   my ($self) = @_;
365   my $schema = $self->schema();
366
367   if (!$schema->get_db_version()) {
368     # schema is unversioned
369     $schema->throw_exception ("Could not determin current schema version, please either install() or deploy().\n");
370   } else {
371     $schema->upgrade_directory ($self->sql_dir) if $self->sql_dir;  # this will override whatever default the schema has
372     my $ret = $schema->upgrade();
373     return $ret;
374   }
375 }
376
377
378 =head2 install
379
380 =over 4
381
382 =item Arguments: $version
383
384 =back
385
386 install is here to help when you want to move to L<DBIx::Class::Schema::Versioned> and have an existing
387 database.  install will take a version and add the version tracking tables and 'install' the version.  No
388 further ddl modification takes place.  Setting the force attribute to a true value will allow overriding of
389 already versioned databases.
390
391 =cut
392
393 sub install {
394   my ($self, $version) = @_;
395
396   my $schema = $self->schema();
397   $version ||= $self->version();
398   if (!$schema->get_db_version() ) {
399     # schema is unversioned
400     print "Going to install schema version\n" if (!$self->quiet);
401     my $ret = $schema->install($version);
402     print "return is $ret\n" if (!$self->quiet);
403   }
404   elsif ($schema->get_db_version() and $self->force ) {
405     warn "Forcing install may not be a good idea\n";
406     if($self->_confirm() ) {
407       $self->schema->_set_db_version({ version => $version});
408     }
409   }
410   else {
411     $schema->throw_exception ("Schema already has a version. Try upgrade instead.\n");
412   }
413
414 }
415
416
417 =head2 deploy
418
419 =over 4
420
421 =item Arguments: $args
422
423 =back
424
425 deploy will create the schema at the connected database.  C<$args> are passed straight to
426 L<DBIx::Class::Schema/deploy>.
427
428 =cut
429
430 sub deploy {
431   my ($self, $args) = @_;
432   my $schema = $self->schema();
433   $schema->deploy( $args, $self->sql_dir );
434 }
435
436 =head2 insert
437
438 =over 4
439
440 =item Arguments: $rs, $set
441
442 =back
443
444 insert takes the name of a resultset from the schema_class and a hashref of data to insert
445 into that resultset
446
447 =cut
448
449 sub insert {
450   my ($self, $rs, $set) = @_;
451
452   $rs ||= $self->resultset();
453   $set ||= $self->set();
454   my $resultset = $self->schema->resultset($rs);
455   my $obj = $resultset->create( $set );
456   print ''.ref($resultset).' ID: '.join(',',$obj->id())."\n" if (!$self->quiet);
457 }
458
459
460 =head2 update
461
462 =over 4
463
464 =item Arguments: $rs, $set, $where
465
466 =back
467
468 update takes the name of a resultset from the schema_class, a hashref of data to update and
469 a where hash used to form the search for the rows to update.
470
471 =cut
472
473 sub update {
474   my ($self, $rs, $set, $where) = @_;
475
476   $rs ||= $self->resultset();
477   $where ||= $self->where();
478   $set ||= $self->set();
479   my $resultset = $self->schema->resultset($rs);
480   $resultset = $resultset->search( ($where||{}) );
481
482   my $count = $resultset->count();
483   print "This action will modify $count ".ref($resultset)." records.\n" if (!$self->quiet);
484
485   if ( $self->force || $self->_confirm() ) {
486     $resultset->update_all( $set );
487   }
488 }
489
490
491 =head2 delete
492
493 =over 4
494
495 =item Arguments: $rs, $where, $attrs
496
497 =back
498
499 delete takes the name of a resultset from the schema_class, a where hashref and a attrs to pass to ->search.
500 The found data is deleted and cannot be recovered.
501
502 =cut
503
504 sub delete {
505   my ($self, $rs, $where, $attrs) = @_;
506
507   $rs ||= $self->resultset();
508   $where ||= $self->where();
509   $attrs ||= $self->attrs();
510   my $resultset = $self->schema->resultset($rs);
511   $resultset = $resultset->search( ($where||{}), ($attrs||()) );
512
513   my $count = $resultset->count();
514   print "This action will delete $count ".ref($resultset)." records.\n" if (!$self->quiet);
515
516   if ( $self->force || $self->_confirm() ) {
517     $resultset->delete_all();
518   }
519 }
520
521
522 =head2 select
523
524 =over 4
525
526 =item Arguments: $rs, $where, $attrs
527
528 =back
529
530 select takes the name of a resultset from the schema_class, a where hashref and a attrs to pass to ->search.
531 The found data is returned in a array ref where the first row will be the columns list.
532
533 =cut
534
535 sub select {
536   my ($self, $rs, $where, $attrs) = @_;
537
538   $rs ||= $self->resultset();
539   $where ||= $self->where();
540   $attrs ||= $self->attrs();
541   my $resultset = $self->schema->resultset($rs);
542   $resultset = $resultset->search( ($where||{}), ($attrs||()) );
543
544   my @data;
545   my @columns = $resultset->result_source->columns();
546   push @data, [@columns];#
547
548   while (my $row = $resultset->next()) {
549     my @fields;
550     foreach my $column (@columns) {
551       push( @fields, $row->get_column($column) );
552     }
553     push @data, [@fields];
554   }
555
556   return \@data;
557 }
558
559 sub _confirm {
560   my ($self) = @_;
561
562   # mainly here for testing
563   return 1 if ($self->meta->get_attribute('_confirm')->get_value($self));
564
565   print "Are you sure you want to do this? (type YES to confirm) \n";
566   my $response = <STDIN>;
567
568   return ($response=~/^YES/);
569 }
570
571 sub _find_stanza {
572   my ($self, $cfg, $stanza) = @_;
573   my @path = split /::/, $stanza;
574   while (my $path = shift @path) {
575     if (exists $cfg->{$path}) {
576       $cfg = $cfg->{$path};
577     }
578     else {
579       die ("Could not find $stanza in config, $path does not seem to exist.\n");
580     }
581   }
582   $cfg = $cfg->{connect_info} if exists $cfg->{connect_info};
583   return $cfg;
584 }
585
586 =head1 AUTHOR
587
588 See L<DBIx::Class/CONTRIBUTORS>.
589
590 =head1 LICENSE
591
592 You may distribute this code under the same terms as Perl itself
593
594 =cut
595
596 1;