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