]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI.pm
Lp 1835620: Require some Storage submodules instead of use them
[Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / Application / Storage / CDBI.pm
1 package OpenILS::Application::Storage::CDBI;
2 use UNIVERSAL::require; 
3 BEGIN {                 
4     'Class::DBI::Frozen::301'->use or 'Class::DBI'->use or die $@;
5 }     
6 use base qw/Class::DBI/;
7 use Class::DBI::AbstractSearch;
8
9 # The following modules add, or use, subroutines in modules that are
10 # not available when this module is compiled.  We therefore "require"
11 # these modules rather than "use" them.  Everything is available at
12 # run time.
13 require OpenILS::Application::Storage::CDBI::actor;
14 require OpenILS::Application::Storage::CDBI::action;
15 require OpenILS::Application::Storage::CDBI::booking;
16 require OpenILS::Application::Storage::CDBI::asset;
17 require OpenILS::Application::Storage::CDBI::serial;
18 require OpenILS::Application::Storage::CDBI::authority;
19 require OpenILS::Application::Storage::CDBI::biblio;
20 require OpenILS::Application::Storage::CDBI::config;
21 require OpenILS::Application::Storage::CDBI::metabib;
22 require OpenILS::Application::Storage::CDBI::money;
23 require OpenILS::Application::Storage::CDBI::permission;
24 require OpenILS::Application::Storage::CDBI::container;
25
26 use OpenSRF::Utils::JSON;
27 use OpenSRF::Utils::Logger qw(:level);
28 use OpenSRF::EX qw/:try/;
29
30 our $VERSION = 1;
31 my $log = 'OpenSRF::Utils::Logger';
32
33 if ($Class::DBI::VERSION gt '3.0.1') {
34     $log->error("Your version of Class::DBI, $Class::DBI::VERSION, is too new and incompatible with Evergreen.  You will need to downgrade to version 3.0.1 or install Class::DBI::Frozen::301"); 
35     die("Your version of Class::DBI, $Class::DBI::VERSION, is too new and incompatible with Evergreen.  You will need to downgrade to version 3.0.1 or install Class::DBI::Frozen::301"); 
36 }
37
38 sub child_init {
39     my $self = shift;
40
41     $log->debug("Creating ImaDBI Querys", DEBUG);
42     __PACKAGE__->set_sql( 'OILSFastSearch', <<"    SQL", 'Main');
43         SELECT  %s
44           FROM  %s
45           WHERE %s = ?
46     SQL
47
48     __PACKAGE__->set_sql( 'OILSFastOrderedSearchLike', <<"    SQL", 'Main');
49         SELECT  %s
50           FROM  %s
51           WHERE %s LIKE ?
52           ORDER BY %s
53     SQL
54
55     __PACKAGE__->set_sql( 'OILSFastOrderedSearch', <<"    SQL", 'Main');
56         SELECT  %s
57           FROM  %s
58           WHERE %s = ?
59           ORDER BY %s
60     SQL
61
62     $log->debug("Calling Driver child_init", DEBUG);
63     $self->SUPER::child_init(@_);
64
65 }
66
67 sub fast_flesh_sth {
68     my $class = shift;
69     $class = ref($class) || $class;
70
71     my $field = shift;
72     my $value = shift;
73     my $order = shift;
74     my $like = shift;
75
76
77     if (!(defined($order) and ref($order) and ref($order) eq 'HASH')) {
78         if (defined($value) and ref($value) and ref($value) eq 'HASH') {
79             $order = $value;
80             $value = undef;
81         } else {
82             $order = { order_by => $class->columns('Primary') }
83         }
84     }
85
86     unless (defined $value) {
87         $value = $field;
88         ($field) = $class->columns('Primary');
89     }
90
91     unless (defined $field) {
92         ($field) = $class->columns('Primary');
93     }
94
95     unless ($order->{order_by}) {
96         $order = { order_by => $class->columns('Primary') }
97     }
98
99     my $fm_class = 'Fieldmapper::'.$class;
100     my $field_list = join ',', $class->columns('Essential');
101     
102     my $sth;
103     if (!$like) {
104         $sth = $class->sql_OILSFastOrderedSearch( $field_list, $class->table, $field, $order->{order_by});
105     } else {
106         $sth = $class->sql_OILSFastOrderedSearchLike( $field_list, $class->table, $field, $order->{order_by});
107     }
108     $sth->execute($value);
109     return $sth;
110 }
111
112 sub fast_flesh {
113     my $self = shift;
114     return map $class->construct($_), $self->fast_flesh_sth(@_)->fetchall_hash;
115 }
116
117 sub fast_fieldmapper {
118     my $self = shift;
119     my $id = shift;
120     my $col = shift;
121     my $like = shift;
122     my $options = shift;
123     my $class = ref($self) || $self;
124     my $fm_class = 'Fieldmapper::'.$class;
125     my @fms;
126     $log->debug("fast_fieldmapper() ==> Retrieving $fm_class", INTERNAL);
127     if ($like < 2) {
128         for my $hash ($self->fast_flesh_sth( $col, "$id", { order_by => $col }, $like )->fetchall_hash) {
129             my $fm = $fm_class->new;
130             for my $field ( $fm_class->real_fields ) {
131                 $fm->$field( $$hash{$field} );
132             }
133             push @fms, $fm;
134         }
135     } else {
136         my $search_type = 'search';
137         if ($like == 2) {
138             $search_type = 'search_fts'
139         } elsif ($like == 3) {
140             $search_type = 'search_regex'
141         }
142
143         for my $obj ($class->$search_type({ $col => $id}, $options)) {
144             push @fms, $obj->to_fieldmapper;
145         }
146     }
147     return @fms;
148 }
149
150 sub retrieve {
151     my $self = shift;
152     my $arg = shift;
153     if (ref($arg) &&
154         (UNIVERSAL::isa($arg => 'Fieldmapper') ||
155          UNIVERSAL::isa($arg => 'Class::DBI')) ) {
156         my ($col) = $self->primary_column;
157         $log->debug("Using field $col as the primary key", INTERNAL);
158         $arg = $arg->$col;
159     } elsif (ref $arg) {
160         my ($col) = $self->primary_column;
161         $log->debug("Using field $col as the primary key", INTERNAL);
162         $arg = $arg->{$col};
163     }
164         
165     $log->debug("Retrieving $self with $arg", INTERNAL);
166     my $rec;
167     try {
168         $rec = $self->SUPER::retrieve("$arg");
169     } catch Error with {
170         $log->debug("Could not retrieve $self with $arg! -- ".shift(), DEBUG);
171         return undef;
172     };
173     return $rec;
174 }
175
176 sub to_fieldmapper {
177     my $obj = shift;
178     my $class = ref($obj) || $obj;
179
180     my $fm_class = 'Fieldmapper::'.$class;
181     my $fm = $fm_class->new;
182
183     if (ref($obj)) {
184         for my $field ( $fm->real_fields ) {
185             $fm->$field( ''.$obj->$field ) if $obj->find_column($field) && defined $obj->$field;
186         }
187     }
188
189     return $fm;
190 }
191
192 sub merge {
193     my $self = shift;
194     my $search = shift;
195     my $arg = shift;
196
197     delete $$arg{$_} for (keys %$search);
198
199     $log->debug("CDBI->merge: \$search is $search (".ref($search)." : ".join(',',map{"$_ => $$search{$_}"}keys(%$search)).")",DEBUG);
200     $log->debug("CDBI->merge: \$arg is $arg (".ref($arg)." : ".join(',',map{"$_ => $$arg{$_}"}keys(%$arg)).")",DEBUG);
201
202     my @objs = ($self);
203     @objs = $self->search_where($search) unless (ref $self);
204
205     if (@objs == 1) {
206         $objs[0]->update($arg);
207         return $objs[0];
208     } elsif (@objs == 0) {
209         return $self->create({%$search,%$arg});
210     } else {
211         throw OpenSRF::EX::WARN ("Non-unique search key for merge.  Perhaps you meant to use remote_update?");
212     }
213 }
214
215 sub remote_update {
216     my $self = shift;
217     my $search = shift;
218     my $arg = shift;
219
220     delete $$arg{$_} for (keys %$search);
221
222     $log->debug("CDBI->remote_update: \$search is $search (".ref($search)." : ".join(',',map{"$_ => $$search{$_}"}keys(%$search)).")",DEBUG);
223     $log->debug("CDBI->remote_update: \$arg is $arg (".ref($arg)." : ".join(',',map{"$_ => $$arg{$_}"}keys(%$arg)).")",DEBUG);
224
225 #   my @objs = $self->search_where($search);
226 #   throw OpenSRF::EX::WARN ("No objects found for remote_update.  Perhaps you meant to use merge?")
227 #       if (@objs == 0);
228
229 #   $_->update($arg) for (@objs);
230 #   return scalar(@objs);
231
232     my @finds = sort keys %$search;
233     my @sets = sort keys %$arg;
234
235     my @find_vals = @$search{@finds};
236     my @set_vals = @$arg{@sets};
237
238     my $sql = 'UPDATE %s SET %s WHERE %s';
239
240     my $table = $self->table;
241     my $set = join(', ', map { "$_=?" } @sets);
242     my $where = join(', ', map { "$_=?" } @finds);
243
244     my $sth = $self->db_Main->prepare(sprintf($sql, $table, $set, $where));
245     $sth->execute(@set_vals,@find_vals);
246     return $sth->rows;
247
248 }
249
250 sub create {
251     my $self = shift;
252     my $arg = shift;
253
254     $log->debug("CDBI->create: \$arg is $arg (".ref($arg)." : ".OpenSRF::Utils::JSON->perl2JSON($arg).")",DEBUG);
255
256     if (ref($arg) && UNIVERSAL::isa($arg => 'Fieldmapper')) {
257         return $self->create_from_fieldmapper($arg,@_);
258     }
259
260     return $self->SUPER::create($arg,@_);
261 }
262
263 sub create_from_fieldmapper {
264     my $obj = shift;
265     my $fm = shift;
266     my @params = @_;
267
268     $log->debug("Creating node of type ".ref($fm), DEBUG);
269
270     my $class = ref($obj) || $obj;
271     my ($primary) = $class->columns('Primary');
272
273     if (ref($fm) &&UNIVERSAL::isa($fm => 'Fieldmapper')) {
274         my %hash = map { defined $fm->$_ ?
275                     ($_ => $fm->$_) :
276                     ()
277                 } grep { $_ ne $primary } $class->columns('Essential');
278
279         if ($class->find_column( 'last_xact_id' )) {
280             if ($OpenILS::Application::Storage::IGNORE_XACT_ID_FAILURE) {
281                 $hash{last_xact_id} = 'unknown.'.time.'.'.$$.'.'.rand($$);
282             } else {
283                 my $xact_id = $class->current_xact_id;
284                 throw Error unless ($xact_id);
285                 $hash{last_xact_id} = $xact_id;
286             }
287         }
288
289         return $class->create( \%hash, @params );
290     } else {
291         return undef;
292     }
293 }
294
295 sub delete {
296     my $self = shift;
297     my $arg = shift;
298     my $orig = $self;
299
300     my $class = ref($self) || $self;
301
302     $self = $self->retrieve($arg) if (!ref($self));
303     unless (defined $self) {
304         $log->debug("ARG! Couldn't retrieve record ".$arg->id, DEBUG);
305         throw OpenSRF::EX::WARN ("ARG! Couldn't retrieve record ");
306     }
307
308     if ($class->find_column( 'last_xact_id' )) {
309         my $xact_id = $self->current_xact_id;
310         
311         throw Error ("Deleting from $class requires a transaction be established")
312             unless ($xact_id);
313         
314         throw Error ("The row you are attempting to delete has been changed since you read it")
315             unless ( $orig->last_xact_id eq $self->last_xact_id);
316
317         $self->last_xact_id( $class->current_xact_id );
318         $self->SUPER::update;
319     }
320
321     $self->SUPER::delete;
322
323     return 1;
324 }
325
326 sub debug_object {
327     my $obj = shift;
328     my $string = '';
329
330     $string .= "Object type:\t".ref($obj)."\n";
331     $string .= "Object string:\t$obj\n";
332
333     if (ref($obj) && UNIVERSAL::isa($obj => 'Fieldmapper')) {
334         $string .= "Object fields:\n";
335         for my $col ($obj->real_fields()) {
336             $string .= "\t$col\t=> ".$obj->$col."\n";
337         }
338     } elsif (ref($obj) && UNIVERSAL::isa($obj => 'Class::DBI')) {
339         $string .= "Object cols:\n";
340         for my $col ($obj->columns('All')) {
341             $string .= "\t$col\t=> ".$obj->$col."\n";
342         }
343     } elsif (ref($obj) && UNIVERSAL::isa($obj => 'HASH')) {
344         $string .= "Object keys and vals:\n";
345         for my $col (keys %$obj) {
346             $string .= "\t$col\t=> $$obj{$col}\n";
347         }
348     }
349
350     $string .= "\n";
351     
352     $log->debug($string,DEBUG);
353 }
354
355
356 sub update {
357     my $self = shift;
358     my $arg = shift;
359
360     $log->debug("Attempting to update using $arg", DEBUG) if ($arg);
361
362     if (ref($arg)) {
363         $self = $self->modify_from_fieldmapper($arg);
364         unless (defined $self) {
365             $log->debug("Modification of $arg seems to have failed....", DEBUG);
366             return undef;
367         }
368     }
369
370     $log->debug("Calling Class::DBI->update on modified object $self", DEBUG);
371
372     #debug_object($self);
373
374     return $self->SUPER::update if ($self->is_changed);
375     return 0;
376 }
377
378 sub modify_from_fieldmapper {
379     my $obj = shift;
380     my $fm = shift;
381     my $orig = $obj;
382
383     #debug_object($obj);
384     #debug_object($fm);
385
386     $log->debug("Modifying object using fieldmapper", DEBUG);
387
388     my $class = ref($obj) || $obj;
389     my ($primary) = $class->columns('Primary');
390
391
392     if (!ref($obj)) {
393         $obj = $class->retrieve($fm);
394         #debug_object($obj);
395         unless ($obj) {
396             $log->debug("Retrieve of $class using $fm (".$fm->id.") failed! -- ".shift(), ERROR);
397             throw OpenSRF::EX::WARN ("No $class with id of ".$fm->id."!!");
398         }
399     }
400
401     my %hash;
402     
403     if (ref($fm) and UNIVERSAL::isa($fm => 'Fieldmapper')) {
404         %hash = map { ($_ => $fm->$_) } grep { $_ ne $primary } $class->columns('Essential');
405         delete $hash{passwd} if ($fm->isa('Fieldmapper::actor::user'));
406     } else {
407         %hash = %{$fm};
408     }
409
410     my $au = $obj->autoupdate;
411     $obj->autoupdate(0);
412     
413     #debug_object($obj);
414
415     for my $field ( keys %hash ) {
416         $obj->$field( $hash{$field} ) if ($obj->$field ne $hash{$field});
417         $log->debug("Setting field $field on $obj to $hash{$field}",INTERNAL);
418     }
419
420     if ($class->find_column( 'last_xact_id' ) and $obj->is_changed) {
421         my ($xact_id) = OpenILS::Application::Storage->method_lookup('open-ils.storage.transaction.current')->run();
422         throw Error ("Updating $class requires a transaction be established")
423             unless ($xact_id);
424         throw Error ("The row you are attempting to delete has been changed since you read it")
425             unless ( $fm->last_xact_id eq $obj->last_xact_id);
426         $obj->last_xact_id( $xact_id );
427     } else {
428         $obj->autoupdate($au)
429     }
430
431     return $obj;
432 }
433
434
435
436     #-------------------------------------------------------------------------------
437     actor::user->has_a( home_ou => 'actor::org_unit' );
438     actor::user->has_a( card => 'actor::card' );
439     actor::user->has_a( standing => 'config::standing' );
440     actor::user->has_a( profile => 'permission::grp_tree' );
441     actor::user->has_a( mailing_address => 'actor::user_address' );
442     actor::user->has_a( billing_address => 'actor::user_address' );
443     actor::user->has_a( ident_type => 'config::identification_type' );
444     actor::user->has_a( ident_type2 => 'config::identification_type' );
445     actor::user->has_a( net_access_level => 'config::net_access_level' );
446
447     actor::user_address->has_a( usr => 'actor::user' );
448     
449     actor::card->has_a( usr => 'actor::user' );
450     
451     actor::workstation->has_a( owning_lib => 'actor::org_unit' );
452     actor::org_unit::closed_date->has_a( org_unit => 'actor::org_unit' );
453     actor::org_unit_setting->has_a( org_unit => 'actor::org_unit' );
454
455     actor::usr_note->has_a( usr => 'actor::user' );
456     actor::user->has_many( notes => 'actor::usr_note' );
457
458     actor::user_standing_penalty->has_a( usr => 'actor::user' );
459     actor::user->has_many( standing_penalties => 'actor::user_standing_penalty' );
460
461     actor::org_unit->has_a( parent_ou => 'actor::org_unit' );
462     actor::org_unit->has_a( ou_type => 'actor::org_unit_type' );
463     actor::org_unit->has_a( ill_address => 'actor::org_address' );
464     actor::org_unit->has_a( holds_address => 'actor::org_address' );
465     actor::org_unit->has_a( mailing_address => 'actor::org_address' );
466     actor::org_unit->has_a( billing_address => 'actor::org_address' );
467     actor::org_unit->has_many( children => 'actor::org_unit' => 'parent_ou' );
468     actor::org_unit->has_many( workstations => 'actor::workstation' );
469     actor::org_unit->has_many( closed_dates => 'actor::org_unit::closed_date' );
470     actor::org_unit->has_many( settings => 'actor::org_unit_setting' );
471     #actor::org_unit->might_have( hours_of_operation => 'actor::org_unit::hours_of_operation' );
472
473     actor::org_unit_type->has_a( parent => 'actor::org_unit_type' );
474     actor::org_unit_type->has_many( children => 'actor::org_unit_type' => 'parent' );
475
476     actor::org_address->has_a( org_unit => 'actor::org_unit' );
477     actor::org_unit->has_many( addresses => 'actor::org_address' );
478
479     action::transit_copy->has_a( source => 'actor::org_unit' );
480     action::transit_copy->has_a( dest => 'actor::org_unit' );
481     action::transit_copy->has_a( copy_status => 'config::copy_status' );
482
483     action::hold_transit_copy->has_a( source => 'actor::org_unit' );
484     action::hold_transit_copy->has_a( dest => 'actor::org_unit' );
485     action::hold_transit_copy->has_a( copy_status => 'config::copy_status' );
486     action::hold_transit_copy->has_a( hold => 'action::hold_request' );
487
488     action::hold_request->has_many( transits => 'action::hold_transit_copy' );
489
490     actor::stat_cat_entry->has_a( stat_cat => 'actor::stat_cat' );
491     actor::stat_cat_entry->has_many( default_entries => 'actor::stat_cat_entry_default' );
492     actor::stat_cat_entry_default->has_a( stat_cat => 'actor::stat_cat' );
493     actor::stat_cat_entry_default->has_a( stat_cat_entry => 'actor::stat_cat_entry' );
494     actor::stat_cat->has_a( owner => 'actor::org_unit' );
495     actor::stat_cat->has_many( entries => 'actor::stat_cat_entry' );
496     actor::stat_cat->has_many( default_entries => 'actor::stat_cat_entry_default' );
497     actor::stat_cat_entry_user_map->has_a( stat_cat => 'actor::stat_cat' );
498     actor::stat_cat_entry_user_map->has_a( stat_cat_entry => 'actor::stat_cat_entry' );
499     actor::stat_cat_entry_user_map->has_a( target_usr => 'actor::user' );
500
501     asset::stat_cat_entry->has_a( stat_cat => 'asset::stat_cat' );
502     asset::stat_cat->has_a( owner => 'actor::org_unit' );
503     asset::stat_cat->has_many( entries => 'asset::stat_cat_entry' );
504     asset::stat_cat_entry_copy_map->has_a( stat_cat => 'asset::stat_cat' );
505     asset::stat_cat_entry_copy_map->has_a( stat_cat_entry => 'asset::stat_cat_entry' );
506     asset::stat_cat_entry_copy_map->has_a( owning_copy => 'asset::copy' );
507
508     action::survey_response->has_a( usr => 'actor::user' );
509     action::survey_response->has_a( survey => 'action::survey' );
510     action::survey_response->has_a( question => 'action::survey_question' );
511     action::survey_response->has_a( answer => 'action::survey_answer' );
512
513     action::survey_question->has_a( survey => 'action::survey' );
514
515     action::survey_answer->has_a( question => 'action::survey_question' );
516
517     biblio::peer_bib_copy_map->has_a( target_copy => 'asset::copy' );
518     biblio::peer_bib_copy_map->has_a( peer_record => 'biblio::record_entry' );
519     biblio::peer_bib_copy_map->has_a( peer_type => 'biblio::peer_type' );
520
521     asset::copy_part_map->has_a( target_copy => 'asset::copy' );
522     asset::copy_part_map->has_a( part => 'biblio::monograph_part' );
523
524     biblio::peer_type->has_many( records => 'biblio::record_entry' );
525
526     asset::copy_note->has_a( owning_copy => 'asset::copy' );
527     asset::copy_note->has_a( creator => 'actor::user' );
528
529     actor::user->has_many( stat_cat_entries => [ 'actor::stat_cat_entry_user_map' => 'stat_cat_entry' ] );
530     actor::user->has_many( stat_cat_entry_user_maps => 'actor::stat_cat_entry_user_map' );
531
532     asset::copy->has_many( stat_cat_entries => [ 'asset::stat_cat_entry_copy_map' => 'stat_cat_entry' ] );
533     asset::copy->has_many( stat_cat_entry_copy_maps => 'asset::stat_cat_entry_copy_map' );
534     asset::copy->has_many( peer_bib_copy_maps => 'biblio::peer_bib_copy_map' );
535
536     asset::copy->has_many( part_maps => 'asset::copy_part_map' );
537
538     asset::copy->has_a( call_number => 'asset::call_number' );
539     asset::copy->has_a( creator => 'actor::user' );
540     asset::copy->has_a( editor => 'actor::user' );
541     asset::copy->has_a( status => 'config::copy_status' );
542     asset::copy->has_a( location => 'asset::copy_location' );
543     asset::copy->has_a( circ_lib => 'actor::org_unit' );
544
545     serial::unit->has_a( call_number => 'asset::call_number' );
546     serial::unit->has_a( creator => 'actor::user' );
547     serial::unit->has_a( editor => 'actor::user' );
548     serial::unit->has_a( status => 'config::copy_status' );
549     serial::unit->has_a( location => 'asset::copy_location' );
550     serial::unit->has_a( circ_lib => 'actor::org_unit' );
551
552     serial::item->has_a( unit => 'serial::unit' );
553     serial::item->has_a( issuance => 'serial::issuance' );
554     serial::item->has_a( uri => 'asset::uri' );
555
556     serial::unit->has_many( items => 'serial::item' );
557
558     serial::issuance->has_a( subscription => 'serial::subscription' );
559     serial::issuance->has_many( items => 'serial::item' );
560
561     serial::subscription->has_a( record_entry => 'biblio::record_entry' );
562     serial::subscription->has_many( issuances => 'serial::issuance' );
563
564     asset::call_number_note->has_a( call_number => 'asset::call_number' );
565
566     asset::call_number->has_a( record => 'biblio::record_entry' );
567     asset::call_number->has_a( creator => 'actor::user' );
568     asset::call_number->has_a( editor => 'actor::user' );
569     asset::call_number->has_a( owning_lib => 'actor::org_unit' );
570
571     authority::record_note->has_a( record => 'authority::record_entry' );
572     biblio::record_note->has_a( record => 'biblio::record_entry' );
573     
574     authority::record_entry->has_a( creator => 'actor::user' );
575     authority::record_entry->has_a( editor => 'actor::user' );
576     biblio::record_entry->has_a( creator => 'actor::user' );
577     biblio::record_entry->has_a( editor => 'actor::user' );
578     
579     metabib::metarecord->has_a( master_record => 'biblio::record_entry' );
580     
581     authority::record_descriptor->has_a( record => 'authority::record_entry' );
582     metabib::record_descriptor->has_a( record => 'biblio::record_entry' );
583     
584     authority::full_rec->has_a( record => 'authority::record_entry' );
585     metabib::full_rec->has_a( record => 'biblio::record_entry' );
586     
587     metabib::title_field_entry->has_a( source => 'biblio::record_entry' );
588     metabib::title_field_entry->has_a( field => 'config::metabib_field' );
589
590     metabib::identifier_field_entry->has_a( source => 'biblio::record_entry' );
591     metabib::identifier_field_entry->has_a( field => 'config::metabib_field' );
592     
593     metabib::author_field_entry->has_a( source => 'biblio::record_entry' );
594     metabib::author_field_entry->has_a( field => 'config::metabib_field' );
595     
596     metabib::subject_field_entry->has_a( source => 'biblio::record_entry' );
597     metabib::subject_field_entry->has_a( field => 'config::metabib_field' );
598     
599     metabib::keyword_field_entry->has_a( source => 'biblio::record_entry' );
600     metabib::keyword_field_entry->has_a( field => 'config::metabib_field' );
601     
602     metabib::series_field_entry->has_a( source => 'biblio::record_entry' );
603     metabib::series_field_entry->has_a( field => 'config::metabib_field' );
604     
605     metabib::metarecord_source_map->has_a( metarecord => 'metabib::metarecord' );
606     metabib::metarecord_source_map->has_a( source => 'biblio::record_entry' );
607
608     action::circulation->has_a( usr => 'actor::user' );
609     actor::user->has_many( circulations => 'action::circulation' => 'usr' );
610
611     booking::resource_attr_map->has_a( resource => 'booking::resource' );
612
613     booking::resource->has_a( owner => 'actor::org_unit' );
614     booking::resource->has_a( type => 'booking::resource_type' );
615     booking::resource_type->has_a( owner => 'actor::org_unit' );
616
617     booking::reservation->has_a( usr => 'actor::user' );
618     actor::user->has_many( reservations => 'booking::reservation' => 'usr' );
619     
620     action::circulation->has_a( circ_staff => 'actor::user' );
621     actor::user->has_many( performed_circulations => 'action::circulation' => 'circ_staff' );
622
623     action::circulation->has_a( checkin_staff => 'actor::user' );
624     actor::user->has_many( checkins => 'action::circulation' => 'checkin_staff' );
625
626     action::circulation->has_a( target_copy => 'asset::copy' );
627     asset::copy->has_many( circulations => 'action::circulation' => 'target_copy' );
628     serial::unit->has_many( circulations => 'action::circulation' => 'target_copy' );
629
630     booking::reservation->has_a( pickup_lib => 'actor::org_unit' );
631
632     action::circulation->has_a( circ_lib => 'actor::org_unit' );
633     actor::org_unit->has_many( circulations => 'action::circulation' => 'circ_lib' );
634     
635     action::circulation->has_a( checkin_lib => 'actor::org_unit' );
636     actor::org_unit->has_many( checkins => 'action::circulation' => 'checkin_lib' );
637
638     money::billable_transaction->has_a( usr => 'actor::user' );
639     #money::billable_transaction->might_have( circulation => 'action::circulation' );
640     #money::billable_transaction->might_have( grocery => 'money::grocery' );
641     actor::user->has_many( billable_transactions => 'action::circulation' => 'usr' );
642     
643     
644     #-------------------------------------------------------------------------------
645     actor::user->has_many( survey_responses => 'action::survey_response' );
646     actor::user->has_many( addresses => 'actor::user_address' );
647     actor::user->has_many( cards => 'actor::card' );
648
649     actor::org_unit->has_many( users => 'actor::user' );
650
651     action::survey->has_many( questions => 'action::survey_question' );
652     action::survey->has_many( responses => 'action::survey_response' );
653     
654     action::survey_question->has_many( answers => 'action::survey_answer' );
655     action::survey_question->has_many( responses => 'action::survey_response' );
656
657     action::survey_answer->has_many( responses => 'action::survey_response' );
658
659     asset::copy->has_many( notes => 'asset::copy_note' );
660     asset::call_number->has_many( copies => 'asset::copy' );
661     asset::call_number->has_many( notes => 'asset::call_number_note' );
662
663     asset::call_number->has_a( prefix => 'asset::call_number_prefix' );
664     asset::call_number->has_a( suffix => 'asset::call_number_suffix' );
665
666     asset::call_number_prefix->has_a( owning_lib => 'actor::org_unit' );
667     asset::call_number_suffix->has_a( owning_lib => 'actor::org_unit' );
668
669     asset::call_number_prefix->has_many( call_numbers => 'asset::call_number' );
670     asset::call_number_suffix->has_many( call_numbers => 'asset::call_number' );
671
672     authority::record_entry->has_many( record_descriptor => 'authority::record_descriptor' );
673     authority::record_entry->has_many( notes => 'authority::record_note' );
674
675     biblio::record_entry->has_many( record_descriptor => 'metabib::record_descriptor' );
676     biblio::record_entry->has_many( notes => 'biblio::record_note' );
677     biblio::record_entry->has_many( call_numbers => 'asset::call_number' );
678     biblio::record_entry->has_many( full_record_entries => 'metabib::full_rec' );
679     biblio::record_entry->has_many( title_field_entries => 'metabib::title_field_entry' );
680     biblio::record_entry->has_many( identifier_field_entries => 'metabib::identifier_field_entry' );
681     biblio::record_entry->has_many( author_field_entries => 'metabib::author_field_entry' );
682     biblio::record_entry->has_many( subject_field_entries => 'metabib::subject_field_entry' );
683     biblio::record_entry->has_many( keyword_field_entries => 'metabib::keyword_field_entry' );
684     biblio::record_entry->has_many( series_field_entries => 'metabib::series_field_entry' );
685
686     metabib::metarecord->has_many( source_records => [ 'metabib::metarecord_source_map' => 'source'] );
687     biblio::record_entry->has_many( metarecords => [ 'metabib::metarecord_source_map' => 'metarecord'] );
688
689     money::billing->has_a( xact => 'money::billable_transaction' );
690     money::payment->has_a( xact => 'money::billable_transaction' );
691
692     money::billable_transaction->has_many( billings => 'money::billing' );
693     money::billable_transaction->has_many( payments => 'money::payment' );
694
695     action::circulation->has_many( billings => 'money::billing' => 'xact' );
696     action::circulation->has_many( payments => 'money::payment' => 'xact' );
697     #action::circulation->might_have( billable_transaction => 'money::billable_transaction' );
698     #action::open_circulation->might_have( circulation => 'action::circulation' );
699
700     booking::reservation->has_many( billings => 'money::billing' => 'xact' );
701     booking::reservation->has_many( payments => 'money::payment' => 'xact' );
702
703     action::in_house_use->has_a( org_unit => 'actor::org_unit' );
704     action::in_house_use->has_a( staff => 'actor::user' );
705     action::in_house_use->has_a( item => 'asset::copy' );
706
707     action::non_cataloged_circulation->has_a( circ_lib => 'actor::org_unit' );
708     action::non_cataloged_circulation->has_a( item_type => 'config::non_cataloged_type' );
709     action::non_cataloged_circulation->has_a( patron => 'actor::user' );
710     action::non_cataloged_circulation->has_a( staff => 'actor::user' );
711
712     money::grocery->has_many( billings => 'money::billing' => 'xact' );
713     money::grocery->has_many( payments => 'money::payment' => 'xact' );
714     #money::grocery->might_have( billable_transaction => 'money::billable_transaction' );
715
716     #money::payment->might_have( cash_payment => 'money::cash_payment' );
717     #money::payment->might_have( check_payment => 'money::check_payment' );
718     #money::payment->might_have( credit_card_payment => 'money::credit_card_payment' );
719     #money::payment->might_have( forgive_payment => 'money::forgive_payment' );
720     #money::payment->might_have( work_payment => 'money::work_payment' );
721     #money::payment->might_have( credit_payment => 'money::credit_payment' );
722
723     money::cash_payment->has_a( xact => 'money::billable_transaction' );
724     money::cash_payment->has_a( accepting_usr => 'actor::user' );
725     #money::cash_payment->might_have( payment => 'money::payment' );
726
727     money::check_payment->has_a( xact => 'money::billable_transaction' );
728     money::check_payment->has_a( accepting_usr => 'actor::user' );
729     #money::check_payment->might_have( payment => 'money::payment' );
730
731     money::credit_card_payment->has_a( xact => 'money::billable_transaction' );
732     money::credit_card_payment->has_a( accepting_usr => 'actor::user' );
733     #money::credit_card_payment->might_have( payment => 'money::payment' );
734
735     money::forgive_payment->has_a( xact => 'money::billable_transaction' );
736     money::forgive_payment->has_a( accepting_usr => 'actor::user' );
737     #money::forgive_payment->might_have( payment => 'money::payment' );
738
739     money::work_payment->has_a( xact => 'money::billable_transaction' );
740     money::work_payment->has_a( accepting_usr => 'actor::user' );
741     #money::work_payment->might_have( payment => 'money::payment' );
742
743     money::goods_payment->has_a( xact => 'money::billable_transaction' );
744     money::goods_payment->has_a( accepting_usr => 'actor::user' );
745     #money::goods_payment->might_have( payment => 'money::payment' );
746
747     money::credit_payment->has_a( xact => 'money::billable_transaction' );
748     money::credit_payment->has_a( accepting_usr => 'actor::user' );
749     #money::credit_payment->might_have( payment => 'money::payment' );
750
751     permission::grp_tree->has_a( parent => 'permission::grp_tree' );
752     permission::grp_tree->has_many( children => 'permission::grp_tree' => 'parent' );
753
754     permission::grp_perm_map->has_a( grp => 'permission::grp_tree' );
755     permission::grp_perm_map->has_a(  perm => 'permission::perm_list' );
756     permission::grp_perm_map->has_a(  depth => 'actor::org_unit_type' );
757     
758     permission::usr_perm_map->has_a( usr => 'actor::user' );
759     permission::usr_perm_map->has_a(  perm => 'permission::perm_list' );
760     permission::usr_perm_map->has_a(  depth => 'actor::org_unit_type' );
761     
762     permission::usr_grp_map->has_a(  usr => 'actor::user' );
763     permission::usr_grp_map->has_a(  grp => 'permission::grp_tree' );
764
765     action::hold_notification->has_a(  hold => 'action::hold_request' );
766     
767     action::hold_copy_map->has_a(  hold => 'action::hold_request' );
768     action::hold_copy_map->has_a(  target_copy => 'asset::copy' );
769
770     action::unfulfilled_hold_list->has_a(  current_copy => 'asset::copy' );
771     action::unfulfilled_hold_list->has_a(  hold => 'action::hold_request' );
772     action::unfulfilled_hold_list->has_a(  circ_lib => 'actor::org_unit' );
773
774     action::hold_request->has_a(  current_copy => 'asset::copy' );
775     action::hold_request->has_a(  requestor => 'actor::user' );
776     action::hold_request->has_a(  usr => 'actor::user' );
777     action::hold_request->has_a(  fulfillment_staff => 'actor::user' );
778     action::hold_request->has_a(  pickup_lib => 'actor::org_unit' );
779     action::hold_request->has_a(  request_lib => 'actor::org_unit' );
780     action::hold_request->has_a(  fulfillment_lib => 'actor::org_unit' );
781     action::hold_request->has_a(  selection_ou => 'actor::org_unit' );
782
783     action::hold_request->has_many(  notifications => 'action::hold_notification' );
784     action::hold_request->has_many(  eligible_copies => [ 'action::hold_copy_map' => 'target_copy' ] );
785
786     asset::copy->has_many(  holds => [ 'action::hold_copy_map' => 'hold' ] );
787     serial::unit->has_many(  holds => [ 'action::hold_copy_map' => 'hold' ] );
788
789     container::biblio_record_entry_bucket->has_a( owner => 'actor::user' );
790     container::biblio_record_entry_bucket_item->has_a( bucket => 'container::biblio_record_entry_bucket' );
791     container::biblio_record_entry_bucket_item->has_a( target_biblio_record_entry => 'biblio::record_entry' );
792     container::biblio_record_entry_bucket->has_many( items => 'container::biblio_record_entry_bucket_item' );
793
794     container::user_bucket->has_a( owner => 'actor::user' );
795     container::user_bucket_item->has_a( bucket => 'container::user_bucket' );
796     container::user_bucket_item->has_a( target_user => 'actor::user' );
797     container::user_bucket->has_many( items => 'container::user_bucket_item' );
798
799     container::call_number_bucket->has_a( owner => 'actor::user' );
800     container::call_number_bucket_item->has_a( bucket => 'container::call_number_bucket' );
801     container::call_number_bucket_item->has_a( target_call_number => 'asset::call_number' );
802     container::call_number_bucket->has_many( items => 'container::call_number_bucket_item' );
803
804     container::copy_bucket->has_a( owner => 'actor::user' );
805     container::copy_bucket_item->has_a( bucket => 'container::copy_bucket' );
806     container::copy_bucket_item->has_a( target_copy => 'asset::copy' );
807     container::copy_bucket->has_many( items => 'container::copy_bucket_item' );
808
809
810 1;