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