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