]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Serial.pm
Serials: closer to full working receiving in the batch receive interface
[working/Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Serial.pm
1 #!/usr/bin/perl
2
3 # This program is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU General Public License
5 # as published by the Free Software Foundation; either version 2
6 # of the License, or (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16
17 =head1 NAME
18
19 OpenILS::Application::Serial - Performs serials-related tasks such as receiving issues and generating predictions
20
21 =head1 SYNOPSIS
22
23 TBD
24
25 =head1 DESCRIPTION
26
27 TBD
28
29 =head1 AUTHOR
30
31 Dan Wells, dbw2@calvin.edu
32
33 =cut
34
35 package OpenILS::Application::Serial;
36
37 use strict;
38 use warnings;
39
40
41 use OpenILS::Application;
42 use base qw/OpenILS::Application/;
43 use OpenILS::Application::AppUtils;
44 use OpenILS::Event;
45 use OpenSRF::AppSession;
46 use OpenSRF::Utils qw/:datetime/;
47 use OpenSRF::Utils::Logger qw/:logger/;
48 use OpenILS::Utils::CStoreEditor q/:funcs/;
49 use OpenILS::Utils::Fieldmapper;
50 use OpenILS::Utils::MFHD;
51 use MARC::File::XML (BinaryEncoding => 'utf8');
52 my $U = 'OpenILS::Application::AppUtils';
53 my @MFHD_NAMES = ('basic','supplement','index');
54 my %MFHD_NAMES_BY_TAG = (  '853' => $MFHD_NAMES[0],
55                         '863' => $MFHD_NAMES[0],
56                         '854' => $MFHD_NAMES[1],
57                         '864' => $MFHD_NAMES[1],
58                         '855' => $MFHD_NAMES[2],
59                         '865' => $MFHD_NAMES[2] );
60 my %MFHD_TAGS_BY_NAME = (  $MFHD_NAMES[0] => '853',
61                         $MFHD_NAMES[1] => '854',
62                         $MFHD_NAMES[2] => '855');
63
64 # helper method for conforming dates to ISO8601
65 sub _cleanse_dates {
66     my $item = shift;
67     my $fields = shift;
68
69     foreach my $field (@$fields) {
70         $item->$field(OpenSRF::Utils::clense_ISO8601($item->$field)) if $item->$field;
71     }
72     return 0;
73 }
74
75 sub _get_mvr {
76     $U->simplereq(
77         "open-ils.search",
78         "open-ils.search.biblio.record.mods_slim.retrieve",
79         @_
80     );
81 }
82
83
84 ##########################################################################
85 # item methods
86 #
87 __PACKAGE__->register_method(
88     method    => 'fleshed_item_alter',
89     api_name  => 'open-ils.serial.item.fleshed.batch.update',
90     api_level => 1,
91     argc      => 2,
92     signature => {
93         desc     => 'Receives an array of one or more items and updates the database as needed',
94         'params' => [ {
95                  name => 'authtoken',
96                  desc => 'Authtoken for current user session',
97                  type => 'string'
98             },
99             {
100                  name => 'items',
101                  desc => 'Array of fleshed items',
102                  type => 'array'
103             }
104
105         ],
106         'return' => {
107             desc => 'Returns 1 if successful, event if failed',
108             type => 'mixed'
109         }
110     }
111 );
112
113 sub fleshed_item_alter {
114     my( $self, $conn, $auth, $items ) = @_;
115     return 1 unless ref $items;
116     my( $reqr, $evt ) = $U->checkses($auth);
117     return $evt if $evt;
118     my $editor = new_editor(requestor => $reqr, xact => 1);
119     my $override = $self->api_name =~ /override/;
120
121 # TODO: permission check
122 #        return $editor->event unless
123 #            $editor->allowed('UPDATE_COPY', $class->copy_perm_org($vol, $copy));
124
125     for my $item (@$items) {
126
127         my $itemid = $item->id;
128         $item->editor($editor->requestor->id);
129         $item->edit_date('now');
130
131         if( $item->isdeleted ) {
132             $evt = _delete_sitem( $editor, $override, $item);
133         } elsif( $item->isnew ) {
134             # TODO: reconsider this
135             # if the item has a new issuance, create the issuance first
136             if (ref $item->issuance eq 'Fieldmapper::serial::issuance' and $item->issuance->isnew) {
137                 fleshed_issuance_alter($self, $conn, $auth, [$item->issuance]);
138             }
139             _cleanse_dates($item, ['date_expected','date_received']);
140             $evt = _create_sitem( $editor, $item );
141         } else {
142             _cleanse_dates($item, ['date_expected','date_received']);
143             $evt = _update_sitem( $editor, $override, $item );
144         }
145     }
146
147     if( $evt ) {
148         $logger->info("fleshed item-alter failed with event: ".OpenSRF::Utils::JSON->perl2JSON($evt));
149         $editor->rollback;
150         return $evt;
151     }
152     $logger->debug("item-alter: done updating item batch");
153     $editor->commit;
154     $logger->info("fleshed item-alter successfully updated ".scalar(@$items)." items");
155     return 1;
156 }
157
158 sub _delete_sitem {
159     my ($editor, $override, $item) = @_;
160     $logger->info("item-alter: delete item ".OpenSRF::Utils::JSON->perl2JSON($item));
161     return $editor->event unless $editor->delete_serial_item($item);
162     return 0;
163 }
164
165 sub _create_sitem {
166     my ($editor, $item) = @_;
167
168     $item->creator($editor->requestor->id);
169     $item->create_date('now');
170
171     $logger->info("item-alter: new item ".OpenSRF::Utils::JSON->perl2JSON($item));
172     return $editor->event unless $editor->create_serial_item($item);
173     return 0;
174 }
175
176 sub _update_sitem {
177     my ($editor, $override, $item) = @_;
178
179     $logger->info("item-alter: retrieving item ".$item->id);
180     my $orig_item = $editor->retrieve_serial_item($item->id);
181
182     $logger->info("item-alter: original item ".OpenSRF::Utils::JSON->perl2JSON($orig_item));
183     $logger->info("item-alter: updated item ".OpenSRF::Utils::JSON->perl2JSON($item));
184     return $editor->event unless $editor->update_serial_item($item);
185     return 0;
186 }
187
188 __PACKAGE__->register_method(
189     method  => "fleshed_serial_item_retrieve_batch",
190     authoritative => 1,
191     api_name    => "open-ils.serial.item.fleshed.batch.retrieve"
192 );
193
194 sub fleshed_serial_item_retrieve_batch {
195     my( $self, $client, $ids ) = @_;
196 # FIXME: permissions?
197     $logger->info("Fetching fleshed serial items @$ids");
198     return $U->cstorereq(
199         "open-ils.cstore.direct.serial.item.search.atomic",
200         { id => $ids },
201         { flesh => 2,
202           flesh_fields => {sitem => [ qw/issuance creator editor stream unit notes/ ], sstr => ["distribution"], sunit => ["call_number"], siss => [qw/creator editor subscription/]}
203         });
204 }
205
206
207 ##########################################################################
208 # issuance methods
209 #
210 __PACKAGE__->register_method(
211     method    => 'fleshed_issuance_alter',
212     api_name  => 'open-ils.serial.issuance.fleshed.batch.update',
213     api_level => 1,
214     argc      => 2,
215     signature => {
216         desc     => 'Receives an array of one or more issuances and updates the database as needed',
217         'params' => [ {
218                  name => 'authtoken',
219                  desc => 'Authtoken for current user session',
220                  type => 'string'
221             },
222             {
223                  name => 'issuances',
224                  desc => 'Array of fleshed issuances',
225                  type => 'array'
226             }
227
228         ],
229         'return' => {
230             desc => 'Returns 1 if successful, event if failed',
231             type => 'mixed'
232         }
233     }
234 );
235
236 sub fleshed_issuance_alter {
237     my( $self, $conn, $auth, $issuances ) = @_;
238     return 1 unless ref $issuances;
239     my( $reqr, $evt ) = $U->checkses($auth);
240     return $evt if $evt;
241     my $editor = new_editor(requestor => $reqr, xact => 1);
242     my $override = $self->api_name =~ /override/;
243
244 # TODO: permission support
245 #        return $editor->event unless
246 #            $editor->allowed('UPDATE_COPY', $class->copy_perm_org($vol, $copy));
247
248     for my $issuance (@$issuances) {
249         my $issuanceid = $issuance->id;
250         $issuance->editor($editor->requestor->id);
251         $issuance->edit_date('now');
252
253         if( $issuance->isdeleted ) {
254             $evt = _delete_siss( $editor, $override, $issuance);
255         } elsif( $issuance->isnew ) {
256             _cleanse_dates($issuance, ['date_published']);
257             $evt = _create_siss( $editor, $issuance );
258         } else {
259             _cleanse_dates($issuance, ['date_published']);
260             $evt = _update_siss( $editor, $override, $issuance );
261         }
262     }
263
264     if( $evt ) {
265         $logger->info("fleshed issuance-alter failed with event: ".OpenSRF::Utils::JSON->perl2JSON($evt));
266         $editor->rollback;
267         return $evt;
268     }
269     $logger->debug("issuance-alter: done updating issuance batch");
270     $editor->commit;
271     $logger->info("fleshed issuance-alter successfully updated ".scalar(@$issuances)." issuances");
272     return 1;
273 }
274
275 sub _delete_siss {
276     my ($editor, $override, $issuance) = @_;
277     $logger->info("issuance-alter: delete issuance ".OpenSRF::Utils::JSON->perl2JSON($issuance));
278     return $editor->event unless $editor->delete_serial_issuance($issuance);
279     return 0;
280 }
281
282 sub _create_siss {
283     my ($editor, $issuance) = @_;
284
285     $issuance->creator($editor->requestor->id);
286     $issuance->create_date('now');
287
288     $logger->info("issuance-alter: new issuance ".OpenSRF::Utils::JSON->perl2JSON($issuance));
289     return $editor->event unless $editor->create_serial_issuance($issuance);
290     return 0;
291 }
292
293 sub _update_siss {
294     my ($editor, $override, $issuance) = @_;
295
296     $logger->info("issuance-alter: retrieving issuance ".$issuance->id);
297     my $orig_issuance = $editor->retrieve_serial_issuance($issuance->id);
298
299     $logger->info("issuance-alter: original issuance ".OpenSRF::Utils::JSON->perl2JSON($orig_issuance));
300     $logger->info("issuance-alter: updated issuance ".OpenSRF::Utils::JSON->perl2JSON($issuance));
301     return $editor->event unless $editor->update_serial_issuance($issuance);
302     return 0;
303 }
304
305 __PACKAGE__->register_method(
306     method  => "fleshed_serial_issuance_retrieve_batch",
307     authoritative => 1,
308     api_name    => "open-ils.serial.issuance.fleshed.batch.retrieve"
309 );
310
311 sub fleshed_serial_issuance_retrieve_batch {
312     my( $self, $client, $ids ) = @_;
313 # FIXME: permissions?
314     $logger->info("Fetching fleshed serial issuances @$ids");
315     return $U->cstorereq(
316         "open-ils.cstore.direct.serial.issuance.search.atomic",
317         { id => $ids },
318         { flesh => 1,
319           flesh_fields => {siss => [ qw/creator editor subscription/ ]}
320         });
321 }
322
323
324 ##########################################################################
325 # unit methods
326 #
327 __PACKAGE__->register_method(
328     method    => 'fleshed_sunit_alter',
329     api_name  => 'open-ils.serial.sunit.fleshed.batch.update',
330     api_level => 1,
331     argc      => 2,
332     signature => {
333         desc     => 'Receives an array of one or more Units and updates the database as needed',
334         'params' => [ {
335                  name => 'authtoken',
336                  desc => 'Authtoken for current user session',
337                  type => 'string'
338             },
339             {
340                  name => 'sunits',
341                  desc => 'Array of fleshed Units',
342                  type => 'array'
343             }
344
345         ],
346         'return' => {
347             desc => 'Returns 1 if successful, event if failed',
348             type => 'mixed'
349         }
350     }
351 );
352
353 sub fleshed_sunit_alter {
354     my( $self, $conn, $auth, $sunits ) = @_;
355     return 1 unless ref $sunits;
356     my( $reqr, $evt ) = $U->checkses($auth);
357     return $evt if $evt;
358     my $editor = new_editor(requestor => $reqr, xact => 1);
359     my $override = $self->api_name =~ /override/;
360
361 # TODO: permission support
362 #        return $editor->event unless
363 #            $editor->allowed('UPDATE_COPY', $class->copy_perm_org($vol, $copy));
364
365     for my $sunit (@$sunits) {
366         if( $sunit->isdeleted ) {
367             $evt = _delete_sunit( $editor, $override, $sunit );
368         } else {
369             $sunit->default_location( $sunit->default_location->id ) if ref $sunit->default_location;
370
371             if( $sunit->isnew ) {
372                 $evt = _create_sunit( $editor, $sunit );
373             } else {
374                 $evt = _update_sunit( $editor, $override, $sunit );
375             }
376         }
377     }
378
379     if( $evt ) {
380         $logger->info("fleshed sunit-alter failed with event: ".OpenSRF::Utils::JSON->perl2JSON($evt));
381         $editor->rollback;
382         return $evt;
383     }
384     $logger->debug("sunit-alter: done updating sunit batch");
385     $editor->commit;
386     $logger->info("fleshed sunit-alter successfully updated ".scalar(@$sunits)." Units");
387     return 1;
388 }
389
390 sub _delete_sunit {
391     my ($editor, $override, $sunit) = @_;
392     $logger->info("sunit-alter: delete sunit ".OpenSRF::Utils::JSON->perl2JSON($sunit));
393     return $editor->event unless $editor->delete_serial_unit($sunit);
394     return 0;
395 }
396
397 sub _create_sunit {
398     my ($editor, $sunit) = @_;
399
400     $logger->info("sunit-alter: new Unit ".OpenSRF::Utils::JSON->perl2JSON($sunit));
401     return $editor->event unless $editor->create_serial_unit($sunit);
402     return 0;
403 }
404
405 sub _update_sunit {
406     my ($editor, $override, $sunit) = @_;
407
408     $logger->info("sunit-alter: retrieving sunit ".$sunit->id);
409     my $orig_sunit = $editor->retrieve_serial_unit($sunit->id);
410
411     $logger->info("sunit-alter: original sunit ".OpenSRF::Utils::JSON->perl2JSON($orig_sunit));
412     $logger->info("sunit-alter: updated sunit ".OpenSRF::Utils::JSON->perl2JSON($sunit));
413     return $editor->event unless $editor->update_serial_unit($sunit);
414     return 0;
415 }
416
417 __PACKAGE__->register_method(
418         method  => "retrieve_unit_list",
419     authoritative => 1,
420         api_name        => "open-ils.serial.unit_list.retrieve"
421 );
422
423 sub retrieve_unit_list {
424
425         my( $self, $client, @sdist_ids ) = @_;
426
427         if(ref($sdist_ids[0])) { @sdist_ids = @{$sdist_ids[0]}; }
428
429         my $e = new_editor();
430
431     my $query = {
432         'select' => 
433             { 'sunit' => [ 'id', 'summary_contents', 'sort_key' ],
434               'sitem' => ['stream'],
435               'sstr' => ['distribution'],
436               'sdist' => [{'column' => 'label', 'alias' => 'sdist_label'}]
437             },
438         'from' =>
439             { 'sdist' =>
440                 { 'sstr' =>
441                     { 'join' =>
442                         { 'sitem' =>
443                             { 'join' => { 'sunit' => {} } }
444                         }
445                     }
446                 }
447             },
448         'distinct' => 'true',
449         'where' => { '+sdist' => {'id' => \@sdist_ids} },
450         'order_by' => [{'class' => 'sunit', 'field' => 'sort_key'}]
451     };
452
453     my $unit_list_entries = $e->json_query($query);
454     
455     my @entries;
456     foreach my $entry (@$unit_list_entries) {
457         my $value = {'sunit' => $entry->{id}, 'sstr' => $entry->{stream}, 'sdist' => $entry->{distribution}};
458         my $label = $entry->{summary_contents};
459         if (length($label) > 100) {
460             $label = substr($label, 0, 100) . '...'; # limited space in dropdown / menu
461         }
462         $label = "[$entry->{sdist_label}/$entry->{stream} #$entry->{id}] " . $label;
463         push (@entries, [$label, OpenSRF::Utils::JSON->perl2JSON($value)]);
464     }
465
466     return \@entries;
467 }
468
469
470
471 ##########################################################################
472 # predict and receive methods
473 #
474 __PACKAGE__->register_method(
475     method    => 'make_predictions',
476     api_name  => 'open-ils.serial.make_predictions',
477     api_level => 1,
478     argc      => 1,
479     signature => {
480         desc     => 'Receives an ssub id and populates the issuance and item tables',
481         'params' => [ {
482                  name => 'ssub_id',
483                  desc => 'Serial Subscription ID',
484                  type => 'int'
485             }
486         ]
487     }
488 );
489
490 sub make_predictions {
491     my ($self, $conn, $authtoken, $args) = @_;
492
493     my $editor = OpenILS::Utils::CStoreEditor->new();
494     my $ssub_id = $args->{ssub_id};
495     my $mfhd = MFHD->new(MARC::Record->new());
496
497     my $ssub = $editor->retrieve_serial_subscription([$ssub_id]);
498     my $scaps = $editor->search_serial_caption_and_pattern({ subscription => $ssub_id, active => 't'});
499     my $sdists = $editor->search_serial_distribution( [{ subscription => $ssub->id }, {  flesh => 1,
500               flesh_fields => {sdist => [ qw/ streams / ]}, limit => 1 }] ); #TODO: 'deleted' support?
501
502     my @predictions;
503     my $link_id = 1;
504     foreach my $scap (@$scaps) {
505         my $caption_field = _revive_caption($scap);
506         $caption_field->update('8' => $link_id);
507         $mfhd->append_fields($caption_field);
508         my $options = {
509                 'caption' => $caption_field,
510                 'scap_id' => $scap->id,
511                 'num_to_predict' => $args->{num_to_predict}
512                 };
513         if ($args->{base_issuance}) { # predict from a given issuance
514             $options->{predict_from} = _revive_holding($args->{base_issuance}->holding_code, $caption_field, 1); # fresh MFHD Record, so we simply default to 1 for seqno
515         } else { # default to predicting from last published
516             my $last_published = $editor->search_serial_issuance([
517                     {'caption_and_pattern' => $scap->id,
518                     'subscription' => $ssub_id},
519                 {limit => 1, order_by => { siss => "date_published DESC" }}]
520                 );
521             if ($last_published->[0]) {
522                 my $last_siss = $last_published->[0];
523                 $options->{predict_from} = _revive_holding($last_siss->holding_code, $caption_field, 1);
524             } else {
525                 #TODO: throw event (can't predict from nothing!)
526             }
527         }
528         push( @predictions, _generate_issuance_values($mfhd, $options) );
529         $link_id++;
530     }
531
532     my @issuances;
533     foreach my $prediction (@predictions) {
534         my $issuance = new Fieldmapper::serial::issuance;
535         $issuance->isnew(1);
536         $issuance->label($prediction->{label});
537         $issuance->date_published($prediction->{date_published}->strftime('%F'));
538         $issuance->holding_code(OpenSRF::Utils::JSON->perl2JSON($prediction->{holding_code}));
539         $issuance->holding_type($prediction->{holding_type});
540         $issuance->caption_and_pattern($prediction->{caption_and_pattern});
541         $issuance->subscription($ssub->id);
542         push (@issuances, $issuance);
543     }
544
545     fleshed_issuance_alter($self, $conn, $authtoken, \@issuances); # FIXME: catch events
546
547     my @items;
548     for (my $i = 0; $i < @issuances; $i++) {
549         my $date_expected = $predictions[$i]->{date_published}->add(seconds => interval_to_seconds($ssub->expected_date_offset))->strftime('%F');
550         my $issuance = $issuances[$i];
551         #$issuance->label(interval_to_seconds($ssub->expected_date_offset));
552         foreach my $sdist (@$sdists) {
553             my $streams = $sdist->streams;
554             foreach my $stream (@$streams) {
555                 my $item = new Fieldmapper::serial::item;
556                 $item->isnew(1);
557                 $item->stream($stream->id);
558                 $item->date_expected($date_expected);
559                 $item->issuance($issuance->id);
560                 push (@items, $item);
561             }
562         }
563     }
564     fleshed_item_alter($self, $conn, $authtoken, \@items); # FIXME: catch events
565     return \@items;
566 }
567
568 #
569 # _generate_issuance_values() is an initial attempt at a function which can be used
570 # to populate an issuance table with a list of predicted issues.  It accepts
571 # a hash ref of options initially defined as:
572 # caption : the caption field to predict on
573 # num_to_predict : the number of issues you wish to predict
574 # last_rec_date : the date of the last received issue, to be used as an offset
575 #                 for predicting future issues
576 #
577 # The basic method is to first convert to a single holding if compressed, then
578 # increment the holding and save the resulting values to @issuances.
579
580 # returns @issuance_values, an array of hashrefs containing (formatted
581 # label, formatted chronology date, formatted estimated arrival date, and an
582 # array ref of holding subfields as (key, value, key, value ...)) (not a hash
583 # to protect order and possible duplicate keys), and a holding type.
584 #
585 sub _generate_issuance_values {
586     my ($mfhd, $options) = @_;
587     my $caption = $options->{caption};
588     my $scap_id = $options->{scap_id};
589     my $num_to_predict = $options->{num_to_predict};
590     my $predict_from = $options->{predict_from};   # issuance to predict from
591     #my $last_rec_date = $options->{last_rec_date};   # expected or actual
592
593     # TODO: add support for predicting serials with no chronology by passing in
594     # a last_pub_date option?
595
596
597 # Only needed for 'real' MFHD records, not our temp records
598 #    my $link_id = $caption->link_id;
599 #    if(!$predict_from) {
600 #        my $htag = $caption->tag;
601 #        $htag =~ s/^85/86/;
602 #        my @holdings = $mfhd->holdings($htag, $link_id);
603 #        my $last_holding = $holdings[-1];
604 #
605 #        #if ($last_holding->is_compressed) {
606 #        #    $last_holding->compressed_to_last; # convert to last in range
607 #        #}
608 #        $predict_from = $last_holding;
609 #    }
610 #
611
612     $predict_from->notes('public',  []);
613 # add a note marker for system use (?)
614     $predict_from->notes('private', ['AUTOGEN']);
615
616     my $strp = new DateTime::Format::Strptime(pattern => '%F');
617     my $pub_date;
618     my @issuance_values;
619     my @predictions = $mfhd->generate_predictions({'base_holding' => $predict_from, 'num_to_predict' => $num_to_predict});
620     foreach my $prediction (@predictions) {
621         $pub_date = $strp->parse_datetime($prediction->chron_to_date);
622         push(
623                 @issuance_values,
624                 {
625                     #$link_id,
626                     label => $prediction->format,
627                     date_published => $pub_date,
628                     #date_expected => $date_expected->strftime('%F'),
629                     holding_code => [$prediction->indicator(1),$prediction->indicator(2),$prediction->subfields_list],
630                     holding_type => $MFHD_NAMES_BY_TAG{$caption->tag},
631                     caption_and_pattern => $scap_id
632                 }
633             );
634     }
635
636     return @issuance_values;
637 }
638
639 sub _revive_caption {
640     my $scap = shift;
641
642     my $pattern_code = $scap->pattern_code;
643
644     # build MARC::Field
645     my $pattern_parts = OpenSRF::Utils::JSON->JSON2perl($pattern_code);
646     unshift(@$pattern_parts, $MFHD_TAGS_BY_NAME{$scap->type});
647     my $pattern_field = new MARC::Field(@$pattern_parts);
648
649     # build MFHD::Caption
650     return new MFHD::Caption($pattern_field);
651 }
652
653 sub _revive_holding {
654     my $holding_code = shift;
655     my $caption_field = shift;
656     my $seqno = shift;
657
658     # build MARC::Field
659     my $holding_parts = OpenSRF::Utils::JSON->JSON2perl($holding_code);
660     my $captag = $caption_field->tag;
661     $captag =~ s/^85/86/;
662     unshift(@$holding_parts, $captag);
663     my $holding_field = new MARC::Field(@$holding_parts);
664
665     # build MFHD::Holding
666     return new MFHD::Holding($seqno, $holding_field, $caption_field);
667 }
668
669 __PACKAGE__->register_method(
670     method    => 'unitize_items',
671     api_name  => 'open-ils.serial.receive_items',
672     api_level => 1,
673     argc      => 1,
674     signature => {
675         desc     => 'Marks an item as received, updates the shelving unit (creating a new shelving unit if needed), and updates the summaries',
676         'params' => [ {
677                  name => 'items',
678                  desc => 'array of serial items',
679                  type => 'array'
680             }
681         ],
682         'return' => {
683             desc => 'Returns number of received items',
684             type => 'int'
685         }
686     }
687 );
688
689 sub unitize_items {
690     my ($self, $conn, $auth, $items) = @_;
691
692     my( $reqr, $evt ) = $U->checkses($auth);
693     return $evt if $evt;
694     my $editor = new_editor(requestor => $reqr, xact => 1);
695     $self->api_name =~ /serial\.(\w*)_items/;
696     my $mode = $1;
697     
698     my %found_unit_ids;
699     my %found_stream_ids;
700     my %found_types;
701
702     my %stream_ids_by_unit_id;
703
704     my %unit_map;
705     my %sdist_by_unit_id;
706     my %sdist_by_stream_id;
707
708     my $new_unit_id; # id for '-2' units to share
709     foreach my $item (@$items) {
710         # for debugging only, TODO: delete
711         if (!ref $item) { # hopefully we got an id instead
712             $item = $editor->retrieve_serial_item($item);
713         }
714         # get ids
715         my $unit_id = ref($item->unit) ? $item->unit->id : $item->unit;
716         my $stream_id = ref($item->stream) ? $item->stream->id : $item->stream;
717         my $issuance_id = ref($item->issuance) ? $item->issuance->id : $item->issuance;
718         #TODO: evt on any missing ids
719
720         if ($mode eq 'receive') {
721             $item->date_received('now');
722             $item->status('Received');
723         } else {
724             $item->status('Bindery');
725         }
726
727         # check for types to trigger summary updates
728         my $scap;
729         if (!ref $item->issuance) {
730             my $scaps = $editor->search_serial_caption_and_pattern([{"+siss" => {"id" => $issuance_id}}, { "join" => {"siss" => {}} }]);
731             $scap = $scaps->[0];
732         } elsif (!ref $item->issuance->caption_and_pattern) {
733             $scap = $editor->retrieve_serial_caption_and_pattern($item->issuance->caption_and_pattern);
734         } else {
735             $scap = $editor->issuance->caption_and_pattern;
736         }
737         if (!exists($found_types{$stream_id})) {
738             $found_types{$stream_id} = {};
739         }
740         $found_types{$stream_id}->{$scap->type} = 1;
741
742         # create unit if needed
743         if ($unit_id == -1 or (!$new_unit_id and $unit_id == -2)) { # create unit per item
744             my $unit;
745             my $sdists = $editor->search_serial_distribution([{"+sstr" => {"id" => $stream_id}}, { "join" => {"sstr" => {}} }]);
746             $unit = _build_unit($editor, $sdists->[0], $mode);
747             my $evt =  _create_sunit($editor, $unit);
748             return $evt if $evt;
749             if ($unit_id == -2) {
750                 $new_unit_id = $unit->id;
751                 $unit_id = $new_unit_id;
752             } else {
753                 $unit_id = $unit->id;
754             }
755             $item->unit($unit_id);
756             
757             # get unit with 'DEFAULT's and save unit and sdist for later use
758             $unit = $editor->retrieve_serial_unit($unit->id);
759             $unit_map{$unit_id} = $unit;
760             $sdist_by_unit_id{$unit_id} = $sdists->[0];
761             $sdist_by_stream_id{$stream_id} = $sdists->[0];
762         } elsif ($unit_id == -2) { # create one unit for all '-2' items
763             $unit_id = $new_unit_id;
764             $item->unit($unit_id);
765         }
766
767         $found_unit_ids{$unit_id} = 1;
768         $found_stream_ids{$stream_id} = 1;
769
770         # save the stream_id for this unit_id
771         # TODO: prevent items from different streams in same unit? (perhaps in interface)
772         $stream_ids_by_unit_id{$unit_id} = $stream_id;
773
774         my $evt = _update_sitem($editor, undef, $item);
775         return $evt if $evt;
776     }
777
778     # deal with unit level labels
779     foreach my $unit_id (keys %found_unit_ids) {
780
781         # get all the needed issuances for unit
782         my $issuances = $editor->search_serial_issuance([ {"+sitem" => {"unit" => $unit_id, "status" => "Received"}}, {"join" => {"sitem" => {}}, "order_by" => {"siss" => "date_published"}} ]);
783         #TODO: evt on search failure
784
785         my ($mfhd, $formatted_parts) = _summarize_contents($editor, $issuances);
786
787         # special case for single formatted_part (may have summarized version)
788         if (@$formatted_parts == 1) {
789             #TODO: MFHD.pm should have a 'format_summary' method for this
790         }
791
792         # retrieve and update unit contents
793         my $sunit;
794         my $sdist;
795
796         # if we just created the unit, we will already have it and the distribution stored
797         if (exists $unit_map{$unit_id}) {
798             $sunit = $unit_map{$unit_id};
799             $sdist = $sdist_by_unit_id{$unit_id};
800         } else {
801             $sunit = $editor->retrieve_serial_unit($unit_id);
802             $sdist = $editor->search_serial_distribution([{"+sstr" => {"id" => $stream_ids_by_unit_id{$unit_id}}}, { "join" => {"sstr" => {}} }]);
803             $sdist = $sdist->[0];
804         }
805
806         $sunit->detailed_contents($sdist->unit_label_prefix . ' '
807                     . join(', ', @$formatted_parts) . ' '
808                     . $sdist->unit_label_suffix);
809
810         $sunit->summary_contents($sunit->detailed_contents); #TODO: change this when real summary contents are available
811
812         # create sort_key by left padding numbers to 6 digits
813         my $sort_key = $sunit->detailed_contents;
814         $sort_key =~ s/(\d+)/sprintf '%06d', $1/eg; # this may need improvement
815         $sunit->sort_key($sort_key);
816         
817         if ($mode eq 'bind') {
818             $sunit->status(2); # set to 'Bindery' status
819         }
820
821         my $evt = _update_sunit($editor, undef, $sunit);
822         return $evt if $evt;
823     }
824
825     # TODO: cleanup 'dead' units (units which are now emptied of their items)
826
827     if ($mode eq 'receive') { # the summary holdings do not change when binding
828         # deal with stream level summaries
829         # summaries will be built from the "primary" stream only, that is, the stream with the lowest ID per distribution
830         # (TODO: consider direct designation)
831         my %primary_streams_by_sdist;
832         my %streams_by_sdist;
833
834         # see if we have primary streams, and if so, associate them with their distributions
835         foreach my $stream_id (keys %found_stream_ids) {
836             my $sdist;
837             if (exists $sdist_by_stream_id{$stream_id}) {
838                 $sdist = $sdist_by_stream_id{$stream_id};
839             } else {
840                 $sdist = $editor->search_serial_distribution([{"+sstr" => {"id" => $stream_id}}, { "join" => {"sstr" => {}} }]);
841                 $sdist = $sdist->[0];
842             }
843             my $streams;
844             if (!exists($streams_by_sdist{$sdist->id})) {
845                 $streams = $editor->search_serial_stream([{"distribution" => $sdist->id}, {"order_by" => {"sstr" => "id"}}]);
846                 $streams_by_sdist{$sdist->id} = $streams;
847             } else {
848                 $streams = $streams_by_sdist{$sdist->id};
849             }
850             $primary_streams_by_sdist{$sdist->id} = $streams->[0] if ($stream_id == $streams->[0]->id);
851         }
852
853         # retrieve and update summaries for each affected primary stream's distribution
854         foreach my $sdist_id (keys %primary_streams_by_sdist) {
855             my $stream = $primary_streams_by_sdist{$sdist_id};
856             my $stream_id = $stream->id;
857             # get all the needed issuances for stream
858             # FIXME: search in Bindery/Bound/Not Published? as well as Received
859             foreach my $type (keys %{$found_types{$stream_id}}) {
860                 my $issuances = $editor->search_serial_issuance([ {"+sitem" => {"stream" => $stream_id, "status" => "Received"}, "+scap" => {"type" => $type}}, {"join" => {"sitem" => {}, "scap" => {}}, "order_by" => {"siss" => "date_published"}} ]);
861                 #TODO: evt on search failure
862
863                 my ($mfhd, $formatted_parts) = _summarize_contents($editor, $issuances);
864
865                 # retrieve and update the generated_coverage of the summary
866                 my $search_method = "search_serial_${type}_summary";
867                 my $summary = $editor->$search_method([{"distribution" => $sdist_id}]);
868                 $summary = $summary->[0];
869                 $summary->generated_coverage(join(', ', @$formatted_parts));
870                 my $update_method = "update_serial_${type}_summary";
871                 return $editor->event unless $editor->$update_method($summary);
872             }
873         }
874     }
875
876     $editor->commit;
877     return {'num_items_received' => scalar @$items, 'new_unit_id' => $new_unit_id};
878 }
879
880 __PACKAGE__->register_method(
881     method    => "receive_items_one_unit_per",
882     api_name  => "open-ils.serial.receive_items.one_unit_per",
883     stream => 1,
884     api_level => 1,
885     argc      => 1,
886     signature => {
887         desc     => "Marks items in a list as received, creates a new unit for each item if any unit is fleshed on",
888         "params" => [ {
889                  name => "items",
890                  desc => "array of serial items, possibly fleshed with units and definitely fleshed with stream->distribution",
891                  type => "array"
892             }
893         ],
894         "return" => {
895             desc => "The item ID for each item successfully received",
896             type => "int"
897         }
898     }
899 );
900
901 sub receive_items_one_unit_per {
902     # XXX This function may be temporary. unitize_items() would seem to aim to
903     # accomodate what this function does as well as other variations on the
904     # operation (binding multiple items into one unit, etc.?) plus generating
905     # summaries.  This is just a minimal get-it-working-now implementation.
906     # In the future, when unitize_items() is ready, perhaps any registered
907     # method names that point to this function can be repointed at
908     # unitize_items()
909
910     my ($self, $client, $auth, $items) = @_;
911
912     my $e = new_editor("authtoken" => $auth, "xact" => 1);
913     return $e->die_event unless $e->checkauth;
914
915     my $user_id = $e->requestor->id;
916
917     # Get a list of all the non-virtual field names in a serial::unit for
918     # merging given unit objects with template-built units later.
919     # XXX move this somewhere global so it isn't re-run all the time
920     my $all_unit_fields =
921         $Fieldmapper::fieldmap->{"Fieldmapper::serial::unit"}->{"fields"};
922     my @real_unit_fields = grep {
923         not $all_unit_fields->{$_}->{"virtual"}
924     } keys %$all_unit_fields;
925
926     foreach my $item (@$items) {
927         # Note that we expect a certain fleshing on the items we're getting.
928         my $sdist = $item->stream->distribution;
929
930         # Create unit if given by user
931         if (ref $item->unit) {
932             # detach from the item, as we need to create separately
933             my $user_unit = $item->unit;
934
935             # get a unit based on associated template
936             my $template_unit = _build_unit($e, $sdist, "receive");
937             if ($U->event_code($template_unit)) {
938                 $e->rollback;
939                 $template_unit->{"note"} = "Item ID: " . $item->id;
940                 return $template_unit;
941             }
942
943             # merge built unit with provided unit from user
944             foreach (@real_unit_fields) {
945                 unless ($user_unit->$_) {
946                     $user_unit->$_($template_unit->$_);
947                 }
948             }
949
950             # set the incontrovertibles on the unit
951             $user_unit->edit_date("now");
952             $user_unit->create_date("now");
953             $user_unit->editor($user_id);
954             $user_unit->creator($user_id);
955
956             return $e->die_event unless $e->create_serial_unit($user_unit);
957
958             # save reference to new unit
959             $item->unit($e->data->id);
960         }
961
962         # Create notes if given by user
963         if (ref($item->notes) and @{$item->notes}) {
964             foreach my $note (@{$item->notes}) {
965                 $note->creator($user_id);
966                 $note->create_date("now");
967
968                 return $e->die_event unless $e->create_serial_item_note($note);
969             }
970
971             $item->clear_notes; # They're saved; we no longer want them here.
972         }
973
974         # Set the incontrovertibles on the item
975         $item->date_received("now");
976         $item->edit_date("now");
977         $item->editor($user_id);
978
979         return $e->die_event unless $e->update_serial_item($item);
980
981         # send client a response
982         $client->respond($item->id);
983     }
984
985     # XXX TODO update basic/supplementary/index summaries
986
987     $e->commit or return $e->die_event;
988     undef;
989 }
990
991 sub _build_unit {
992     my $editor = shift;
993     my $sdist = shift;
994     my $mode = shift;
995
996     my $attr = $mode . '_unit_template';
997     my $template = $editor->retrieve_asset_copy_template($sdist->$attr) or
998         return new OpenILS::Event("SERIAL_DISTRIBUTION_HAS_NO_COPY_TEMPLATE");
999
1000     my @parts = qw( status location loan_duration fine_level age_protect circulate deposit ref holdable deposit_amount price circ_modifier circ_as_type alert_message opac_visible floating mint_condition );
1001
1002     my $unit = new Fieldmapper::serial::unit;
1003     foreach my $part (@parts) {
1004         my $value = $template->$part;
1005         next if !defined($value);
1006         $unit->$part($value);
1007     }
1008
1009     # ignore circ_lib in template, set to distribution holding_lib
1010     $unit->circ_lib($sdist->holding_lib);
1011     $unit->creator($editor->requestor->id);
1012     $unit->editor($editor->requestor->id);
1013
1014     $attr = $mode . '_call_number';
1015     my $cn = $sdist->$attr or
1016         return new OpenILS::Event("SERIAL_DISTRIBUTION_HAS_NO_CALL_NUMBER");
1017
1018     $unit->call_number($cn);
1019     $unit->barcode('AUTO');
1020     $unit->sort_key('');
1021     $unit->summary_contents('');
1022     $unit->detailed_contents('');
1023
1024     return $unit;
1025 }
1026
1027
1028 sub _summarize_contents {
1029     my $editor = shift;
1030     my $issuances = shift;
1031
1032     # create MFHD record
1033     my $mfhd = MFHD->new(MARC::Record->new());
1034     my %scaps;
1035     my %scap_fields;
1036     my @scap_fields_ordered;
1037     my $seqno = 1;
1038     my $link_id = 1;
1039     foreach my $issuance (@$issuances) {
1040         my $scap_id = $issuance->caption_and_pattern;
1041         next if (!$scap_id); # skip issuances with no caption/pattern
1042
1043         my $scap;
1044         my $scap_field;
1045         # if this is the first appearance of this scap, retrieve it and add it to the temporary record
1046         if (!exists $scaps{$issuance->caption_and_pattern}) {
1047             $scaps{$scap_id} = $editor->retrieve_serial_caption_and_pattern($scap_id);
1048             $scap = $scaps{$scap_id};
1049             $scap_field = _revive_caption($scap);
1050             $scap_fields{$scap_id} = $scap_field;
1051             push(@scap_fields_ordered, $scap_field);
1052             $scap_field->update('8' => $link_id);
1053             $mfhd->append_fields($scap_field);
1054             $link_id++;
1055         } else {
1056             $scap = $scaps{$scap_id};
1057             $scap_field = $scap_fields{$scap_id};
1058         }
1059
1060         $mfhd->append_fields(_revive_holding($issuance->holding_code, $scap_field, $seqno));
1061         $seqno++;
1062     }
1063
1064     my @formatted_parts;
1065     foreach my $scap_field (@scap_fields_ordered) { #TODO: use generic MFHD "summarize" method, once available
1066        my @updated_holdings = $mfhd->get_compressed_holdings($scap_field);
1067        foreach my $holding (@updated_holdings) {
1068            push(@formatted_parts, $holding->format);
1069        }
1070     }
1071
1072     return ($mfhd, \@formatted_parts);
1073 }
1074
1075 ##########################################################################
1076 # note methods
1077 #
1078 __PACKAGE__->register_method(
1079     method      => 'fetch_notes',
1080     api_name        => 'open-ils.serial.item_note.retrieve.all',
1081     signature   => q/
1082         Returns an array of copy note objects.  
1083         @param args A named hash of parameters including:
1084             authtoken   : Required if viewing non-public notes
1085             item_id      : The id of the item whose notes we want to retrieve
1086             pub         : True if all the caller wants are public notes
1087         @return An array of note objects
1088     /
1089 );
1090
1091 __PACKAGE__->register_method(
1092     method      => 'fetch_notes',
1093     api_name        => 'open-ils.serial.subscription_note.retrieve.all',
1094     signature   => q/
1095         Returns an array of copy note objects.  
1096         @param args A named hash of parameters including:
1097             authtoken       : Required if viewing non-public notes
1098             subscription_id : The id of the item whose notes we want to retrieve
1099             pub             : True if all the caller wants are public notes
1100         @return An array of note objects
1101     /
1102 );
1103
1104 __PACKAGE__->register_method(
1105     method      => 'fetch_notes',
1106     api_name        => 'open-ils.serial.distribution_note.retrieve.all',
1107     signature   => q/
1108         Returns an array of copy note objects.  
1109         @param args A named hash of parameters including:
1110             authtoken       : Required if viewing non-public notes
1111             distribution_id : The id of the item whose notes we want to retrieve
1112             pub             : True if all the caller wants are public notes
1113         @return An array of note objects
1114     /
1115 );
1116
1117 # TODO: revisit this method to consider replacing cstore direct calls
1118 sub fetch_notes {
1119     my( $self, $connection, $args ) = @_;
1120     
1121     $self->api_name =~ /serial\.(\w*)_note/;
1122     my $type = $1;
1123
1124     my $id = $$args{object_id};
1125     my $authtoken = $$args{authtoken};
1126     my( $r, $evt);
1127
1128     if( $$args{pub} ) {
1129         return $U->cstorereq(
1130             'open-ils.cstore.direct.serial.'.$type.'_note.search.atomic',
1131             { $type => $id, pub => 't' } );
1132     } else {
1133         # FIXME: restore perm check
1134         # ( $r, $evt ) = $U->checksesperm($authtoken, 'VIEW_COPY_NOTES');
1135         # return $evt if $evt;
1136         return $U->cstorereq(
1137             'open-ils.cstore.direct.serial.'.$type.'_note.search.atomic', {$type => $id} );
1138     }
1139
1140     return undef;
1141 }
1142
1143 __PACKAGE__->register_method(
1144     method      => 'create_note',
1145     api_name        => 'open-ils.serial.item_note.create',
1146     signature   => q/
1147         Creates a new item note
1148         @param authtoken The login session key
1149         @param note The note object to create
1150         @return The id of the new note object
1151     /
1152 );
1153
1154 __PACKAGE__->register_method(
1155     method      => 'create_note',
1156     api_name        => 'open-ils.serial.subscription_note.create',
1157     signature   => q/
1158         Creates a new subscription note
1159         @param authtoken The login session key
1160         @param note The note object to create
1161         @return The id of the new note object
1162     /
1163 );
1164
1165 __PACKAGE__->register_method(
1166     method      => 'create_note',
1167     api_name        => 'open-ils.serial.distribution_note.create',
1168     signature   => q/
1169         Creates a new distribution note
1170         @param authtoken The login session key
1171         @param note The note object to create
1172         @return The id of the new note object
1173     /
1174 );
1175
1176 sub create_note {
1177     my( $self, $connection, $authtoken, $note ) = @_;
1178
1179     $self->api_name =~ /serial\.(\w*)_note/;
1180     my $type = $1;
1181
1182     my $e = new_editor(xact=>1, authtoken=>$authtoken);
1183     return $e->event unless $e->checkauth;
1184
1185     # FIXME: restore permission support
1186 #    my $item = $e->retrieve_serial_item(
1187 #        [
1188 #            $note->item
1189 #        ]
1190 #    );
1191 #
1192 #    return $e->event unless
1193 #        $e->allowed('CREATE_COPY_NOTE', $item->call_number->owning_lib);
1194
1195     $note->create_date('now');
1196     $note->creator($e->requestor->id);
1197     $note->pub( ($U->is_true($note->pub)) ? 't' : 'f' );
1198     $note->clear_id;
1199
1200     my $method = "create_serial_${type}_note";
1201     $e->$method($note) or return $e->event;
1202     $e->commit;
1203     return $note->id;
1204 }
1205
1206 __PACKAGE__->register_method(
1207     method      => 'delete_note',
1208     api_name        =>  'open-ils.serial.item_note.delete',
1209     signature   => q/
1210         Deletes an existing item note
1211         @param authtoken The login session key
1212         @param noteid The id of the note to delete
1213         @return 1 on success - Event otherwise.
1214         /
1215 );
1216
1217 __PACKAGE__->register_method(
1218     method      => 'delete_note',
1219     api_name        =>  'open-ils.serial.subscription_note.delete',
1220     signature   => q/
1221         Deletes an existing subscription note
1222         @param authtoken The login session key
1223         @param noteid The id of the note to delete
1224         @return 1 on success - Event otherwise.
1225         /
1226 );
1227
1228 __PACKAGE__->register_method(
1229     method      => 'delete_note',
1230     api_name        =>  'open-ils.serial.distribution_note.delete',
1231     signature   => q/
1232         Deletes an existing distribution note
1233         @param authtoken The login session key
1234         @param noteid The id of the note to delete
1235         @return 1 on success - Event otherwise.
1236         /
1237 );
1238
1239 sub delete_note {
1240     my( $self, $conn, $authtoken, $noteid ) = @_;
1241
1242     $self->api_name =~ /serial\.(\w*)_note/;
1243     my $type = $1;
1244
1245     my $e = new_editor(xact=>1, authtoken=>$authtoken);
1246     return $e->die_event unless $e->checkauth;
1247
1248     my $method = "retrieve_serial_${type}_note";
1249     my $note = $e->$method([
1250         $noteid,
1251     ]) or return $e->die_event;
1252
1253 # FIXME: restore permissions check
1254 #    if( $note->creator ne $e->requestor->id ) {
1255 #        return $e->die_event unless
1256 #            $e->allowed('DELETE_COPY_NOTE', $note->item->call_number->owning_lib);
1257 #    }
1258
1259     $method = "delete_serial_${type}_note";
1260     $e->$method($note) or return $e->die_event;
1261     $e->commit;
1262     return 1;
1263 }
1264
1265
1266 ##########################################################################
1267 # subscription methods
1268 #
1269 __PACKAGE__->register_method(
1270     method    => 'fleshed_ssub_alter',
1271     api_name  => 'open-ils.serial.subscription.fleshed.batch.update',
1272     api_level => 1,
1273     argc      => 2,
1274     signature => {
1275         desc     => 'Receives an array of one or more subscriptions and updates the database as needed',
1276         'params' => [ {
1277                  name => 'authtoken',
1278                  desc => 'Authtoken for current user session',
1279                  type => 'string'
1280             },
1281             {
1282                  name => 'subscriptions',
1283                  desc => 'Array of fleshed subscriptions',
1284                  type => 'array'
1285             }
1286
1287         ],
1288         'return' => {
1289             desc => 'Returns 1 if successful, event if failed',
1290             type => 'mixed'
1291         }
1292     }
1293 );
1294
1295 sub fleshed_ssub_alter {
1296     my( $self, $conn, $auth, $ssubs ) = @_;
1297     return 1 unless ref $ssubs;
1298     my( $reqr, $evt ) = $U->checkses($auth);
1299     return $evt if $evt;
1300     my $editor = new_editor(requestor => $reqr, xact => 1);
1301     my $override = $self->api_name =~ /override/;
1302
1303 # TODO: permission check
1304 #        return $editor->event unless
1305 #            $editor->allowed('UPDATE_COPY', $class->copy_perm_org($vol, $copy));
1306
1307     for my $ssub (@$ssubs) {
1308
1309         my $ssubid = $ssub->id;
1310
1311         if( $ssub->isdeleted ) {
1312             $evt = _delete_ssub( $editor, $override, $ssub);
1313         } elsif( $ssub->isnew ) {
1314             _cleanse_dates($ssub, ['start_date','end_date']);
1315             $evt = _create_ssub( $editor, $ssub );
1316         } else {
1317             _cleanse_dates($ssub, ['start_date','end_date']);
1318             $evt = _update_ssub( $editor, $override, $ssub );
1319         }
1320     }
1321
1322     if( $evt ) {
1323         $logger->info("fleshed subscription-alter failed with event: ".OpenSRF::Utils::JSON->perl2JSON($evt));
1324         $editor->rollback;
1325         return $evt;
1326     }
1327     $logger->debug("subscription-alter: done updating subscription batch");
1328     $editor->commit;
1329     $logger->info("fleshed subscription-alter successfully updated ".scalar(@$ssubs)." subscriptions");
1330     return 1;
1331 }
1332
1333 sub _delete_ssub {
1334     my ($editor, $override, $ssub) = @_;
1335     $logger->info("subscription-alter: delete subscription ".OpenSRF::Utils::JSON->perl2JSON($ssub));
1336     my $sdists = $editor->search_serial_distribution(
1337             { subscription => $ssub->id }, { limit => 1 } ); #TODO: 'deleted' support?
1338     my $cps = $editor->search_serial_caption_and_pattern(
1339             { subscription => $ssub->id }, { limit => 1 } ); #TODO: 'deleted' support?
1340     my $sisses = $editor->search_serial_issuance(
1341             { subscription => $ssub->id }, { limit => 1 } ); #TODO: 'deleted' support?
1342     return OpenILS::Event->new(
1343             'SERIAL_SUBSCRIPTION_NOT_EMPTY', payload => $ssub->id ) if (@$sdists or @$cps or @$sisses);
1344
1345     return $editor->event unless $editor->delete_serial_subscription($ssub);
1346     return 0;
1347 }
1348
1349 sub _create_ssub {
1350     my ($editor, $ssub) = @_;
1351
1352     $logger->info("subscription-alter: new subscription ".OpenSRF::Utils::JSON->perl2JSON($ssub));
1353     return $editor->event unless $editor->create_serial_subscription($ssub);
1354     return 0;
1355 }
1356
1357 sub _update_ssub {
1358     my ($editor, $override, $ssub) = @_;
1359
1360     $logger->info("subscription-alter: retrieving subscription ".$ssub->id);
1361     my $orig_ssub = $editor->retrieve_serial_subscription($ssub->id);
1362
1363     $logger->info("subscription-alter: original subscription ".OpenSRF::Utils::JSON->perl2JSON($orig_ssub));
1364     $logger->info("subscription-alter: updated subscription ".OpenSRF::Utils::JSON->perl2JSON($ssub));
1365     return $editor->event unless $editor->update_serial_subscription($ssub);
1366     return 0;
1367 }
1368
1369 __PACKAGE__->register_method(
1370     method  => "fleshed_serial_subscription_retrieve_batch",
1371     authoritative => 1,
1372     api_name    => "open-ils.serial.subscription.fleshed.batch.retrieve"
1373 );
1374
1375 sub fleshed_serial_subscription_retrieve_batch {
1376     my( $self, $client, $ids ) = @_;
1377 # FIXME: permissions?
1378     $logger->info("Fetching fleshed subscriptions @$ids");
1379     return $U->cstorereq(
1380         "open-ils.cstore.direct.serial.subscription.search.atomic",
1381         { id => $ids },
1382         { flesh => 1,
1383           flesh_fields => {ssub => [ qw/owning_lib notes/ ]}
1384         });
1385 }
1386
1387 __PACKAGE__->register_method(
1388         method  => "retrieve_sub_tree",
1389     authoritative => 1,
1390         api_name        => "open-ils.serial.subscription_tree.retrieve"
1391 );
1392
1393 __PACKAGE__->register_method(
1394         method  => "retrieve_sub_tree",
1395         api_name        => "open-ils.serial.subscription_tree.global.retrieve"
1396 );
1397
1398 sub retrieve_sub_tree {
1399
1400         my( $self, $client, $user_session, $docid, @org_ids ) = @_;
1401
1402         if(ref($org_ids[0])) { @org_ids = @{$org_ids[0]}; }
1403
1404         $docid = "$docid";
1405
1406         # TODO: permission support
1407         if(!@org_ids and $user_session) {
1408                 my $user_obj = 
1409                         OpenILS::Application::AppUtils->check_user_session( $user_session ); #throws EX on error
1410                         @org_ids = ($user_obj->home_ou);
1411         }
1412
1413         if( $self->api_name =~ /global/ ) {
1414                 return _build_subs_list( { record_entry => $docid } ); # TODO: filter for !deleted, or active?
1415
1416         } else {
1417
1418                 my @all_subs;
1419                 for my $orgid (@org_ids) {
1420                         my $subs = _build_subs_list( 
1421                                         { record_entry => $docid, owning_lib => $orgid } );# TODO: filter for !deleted, or active?
1422                         push( @all_subs, @$subs );
1423                 }
1424                 
1425                 return \@all_subs;
1426         }
1427
1428         return undef;
1429 }
1430
1431 sub _build_subs_list {
1432         my $search_hash = shift;
1433
1434         #$search_hash->{deleted} = 'f';
1435         my $e = new_editor();
1436
1437         my $subs = $e->search_serial_subscription([$search_hash, { 'order_by' => {'ssub' => 'id'} }]);
1438
1439         my @built_subs;
1440
1441         for my $sub (@$subs) {
1442
1443         # TODO: filter on !deleted?
1444                 my $dists = $e->search_serial_distribution(
1445             [{ subscription => $sub->id }, { 'order_by' => {'sdist' => 'label'} }]
1446             );
1447
1448                 #$dists = [ sort { $a->label cmp $b->label } @$dists  ];
1449
1450                 $sub->distributions($dists);
1451         
1452         # TODO: filter on !deleted?
1453                 my $issuances = $e->search_serial_issuance(
1454                         [{ subscription => $sub->id }, { 'order_by' => {'siss' => 'label'} }]
1455             );
1456
1457                 #$issuances = [ sort { $a->label cmp $b->label } @$issuances  ];
1458                 $sub->issuances($issuances);
1459
1460         # TODO: filter on !deleted?
1461                 my $scaps = $e->search_serial_caption_and_pattern(
1462                         [{ subscription => $sub->id }, { 'order_by' => {'scap' => 'id'} }]
1463             );
1464
1465                 #$scaps = [ sort { $a->id cmp $b->id } @$scaps  ];
1466                 $sub->scaps($scaps);
1467                 push( @built_subs, $sub );
1468         }
1469
1470         return \@built_subs;
1471
1472 }
1473
1474 __PACKAGE__->register_method(
1475     method  => "subscription_orgs_for_title",
1476     authoritative => 1,
1477     api_name    => "open-ils.serial.subscription.retrieve_orgs_by_title"
1478 );
1479
1480 sub subscription_orgs_for_title {
1481     my( $self, $client, $record_id ) = @_;
1482
1483     my $subs = $U->simple_scalar_request(
1484         "open-ils.cstore",
1485         "open-ils.cstore.direct.serial.subscription.search.atomic",
1486         { record_entry => $record_id }); # TODO: filter on !deleted?
1487
1488     my $orgs = { map {$_->owning_lib => 1 } @$subs };
1489     return [ keys %$orgs ];
1490 }
1491
1492
1493 ##########################################################################
1494 # distribution methods
1495 #
1496 __PACKAGE__->register_method(
1497     method    => 'fleshed_sdist_alter',
1498     api_name  => 'open-ils.serial.distribution.fleshed.batch.update',
1499     api_level => 1,
1500     argc      => 2,
1501     signature => {
1502         desc     => 'Receives an array of one or more distributions and updates the database as needed',
1503         'params' => [ {
1504                  name => 'authtoken',
1505                  desc => 'Authtoken for current user session',
1506                  type => 'string'
1507             },
1508             {
1509                  name => 'distributions',
1510                  desc => 'Array of fleshed distributions',
1511                  type => 'array'
1512             }
1513
1514         ],
1515         'return' => {
1516             desc => 'Returns 1 if successful, event if failed',
1517             type => 'mixed'
1518         }
1519     }
1520 );
1521
1522 sub fleshed_sdist_alter {
1523     my( $self, $conn, $auth, $sdists ) = @_;
1524     return 1 unless ref $sdists;
1525     my( $reqr, $evt ) = $U->checkses($auth);
1526     return $evt if $evt;
1527     my $editor = new_editor(requestor => $reqr, xact => 1);
1528     my $override = $self->api_name =~ /override/;
1529
1530 # TODO: permission check
1531 #        return $editor->event unless
1532 #            $editor->allowed('UPDATE_COPY', $class->copy_perm_org($vol, $copy));
1533
1534     for my $sdist (@$sdists) {
1535         my $sdistid = $sdist->id;
1536
1537         if( $sdist->isdeleted ) {
1538             $evt = _delete_sdist( $editor, $override, $sdist);
1539         } elsif( $sdist->isnew ) {
1540             $evt = _create_sdist( $editor, $sdist );
1541         } else {
1542             $evt = _update_sdist( $editor, $override, $sdist );
1543         }
1544     }
1545
1546     if( $evt ) {
1547         $logger->info("fleshed distribution-alter failed with event: ".OpenSRF::Utils::JSON->perl2JSON($evt));
1548         $editor->rollback;
1549         return $evt;
1550     }
1551     $logger->debug("distribution-alter: done updating distribution batch");
1552     $editor->commit;
1553     $logger->info("fleshed distribution-alter successfully updated ".scalar(@$sdists)." distributions");
1554     return 1;
1555 }
1556
1557 sub _delete_sdist {
1558     my ($editor, $override, $sdist) = @_;
1559     $logger->info("distribution-alter: delete distribution ".OpenSRF::Utils::JSON->perl2JSON($sdist));
1560     return $editor->event unless $editor->delete_serial_distribution($sdist);
1561     return 0;
1562 }
1563
1564 sub _create_sdist {
1565     my ($editor, $sdist) = @_;
1566
1567     $logger->info("distribution-alter: new distribution ".OpenSRF::Utils::JSON->perl2JSON($sdist));
1568     return $editor->event unless $editor->create_serial_distribution($sdist);
1569
1570     # create summaries too
1571     my $summary = new Fieldmapper::serial::basic_summary;
1572     $summary->distribution($sdist->id);
1573     $summary->generated_coverage('');
1574     return $editor->event unless $editor->create_serial_basic_summary($summary);
1575     $summary = new Fieldmapper::serial::supplement_summary;
1576     $summary->distribution($sdist->id);
1577     $summary->generated_coverage('');
1578     return $editor->event unless $editor->create_serial_supplement_summary($summary);
1579     $summary = new Fieldmapper::serial::index_summary;
1580     $summary->distribution($sdist->id);
1581     $summary->generated_coverage('');
1582     return $editor->event unless $editor->create_serial_index_summary($summary);
1583
1584     # create a starter stream (TODO: reconsider this)
1585     my $stream = new Fieldmapper::serial::stream;
1586     $stream->distribution($sdist->id);
1587     return $editor->event unless $editor->create_serial_stream($stream);
1588
1589     return 0;
1590 }
1591
1592 sub _update_sdist {
1593     my ($editor, $override, $sdist) = @_;
1594
1595     $logger->info("distribution-alter: retrieving distribution ".$sdist->id);
1596     my $orig_sdist = $editor->retrieve_serial_distribution($sdist->id);
1597
1598     $logger->info("distribution-alter: original distribution ".OpenSRF::Utils::JSON->perl2JSON($orig_sdist));
1599     $logger->info("distribution-alter: updated distribution ".OpenSRF::Utils::JSON->perl2JSON($sdist));
1600     return $editor->event unless $editor->update_serial_distribution($sdist);
1601     return 0;
1602 }
1603
1604 __PACKAGE__->register_method(
1605     method  => "fleshed_serial_distribution_retrieve_batch",
1606     authoritative => 1,
1607     api_name    => "open-ils.serial.distribution.fleshed.batch.retrieve"
1608 );
1609
1610 sub fleshed_serial_distribution_retrieve_batch {
1611     my( $self, $client, $ids ) = @_;
1612 # FIXME: permissions?
1613     $logger->info("Fetching fleshed distributions @$ids");
1614     return $U->cstorereq(
1615         "open-ils.cstore.direct.serial.distribution.search.atomic",
1616         { id => $ids },
1617         { flesh => 1,
1618           flesh_fields => {sdist => [ qw/ holding_lib receive_call_number receive_unit_template bind_call_number bind_unit_template streams / ]}
1619         });
1620 }
1621
1622 ##########################################################################
1623 # caption and pattern methods
1624 #
1625 __PACKAGE__->register_method(
1626     method    => 'scap_alter',
1627     api_name  => 'open-ils.serial.caption_and_pattern.batch.update',
1628     api_level => 1,
1629     argc      => 2,
1630     signature => {
1631         desc     => 'Receives an array of one or more caption and patterns and updates the database as needed',
1632         'params' => [ {
1633                  name => 'authtoken',
1634                  desc => 'Authtoken for current user session',
1635                  type => 'string'
1636             },
1637             {
1638                  name => 'scaps',
1639                  desc => 'Array of caption and patterns',
1640                  type => 'array'
1641             }
1642
1643         ],
1644         'return' => {
1645             desc => 'Returns 1 if successful, event if failed',
1646             type => 'mixed'
1647         }
1648     }
1649 );
1650
1651 sub scap_alter {
1652     my( $self, $conn, $auth, $scaps ) = @_;
1653     return 1 unless ref $scaps;
1654     my( $reqr, $evt ) = $U->checkses($auth);
1655     return $evt if $evt;
1656     my $editor = new_editor(requestor => $reqr, xact => 1);
1657     my $override = $self->api_name =~ /override/;
1658
1659 # TODO: permission check
1660 #        return $editor->event unless
1661 #            $editor->allowed('UPDATE_COPY', $class->copy_perm_org($vol, $copy));
1662
1663     for my $scap (@$scaps) {
1664         my $scapid = $scap->id;
1665
1666         if( $scap->isdeleted ) {
1667             $evt = _delete_scap( $editor, $override, $scap);
1668         } elsif( $scap->isnew ) {
1669             $evt = _create_scap( $editor, $scap );
1670         } else {
1671             $evt = _update_scap( $editor, $override, $scap );
1672         }
1673     }
1674
1675     if( $evt ) {
1676         $logger->info("caption_and_pattern-alter failed with event: ".OpenSRF::Utils::JSON->perl2JSON($evt));
1677         $editor->rollback;
1678         return $evt;
1679     }
1680     $logger->debug("caption_and_pattern-alter: done updating caption_and_pattern batch");
1681     $editor->commit;
1682     $logger->info("caption_and_pattern-alter successfully updated ".scalar(@$scaps)." caption_and_patterns");
1683     return 1;
1684 }
1685
1686 sub _delete_scap {
1687     my ($editor, $override, $scap) = @_;
1688     $logger->info("caption_and_pattern-alter: delete caption_and_pattern ".OpenSRF::Utils::JSON->perl2JSON($scap));
1689     my $sisses = $editor->search_serial_issuance(
1690             { caption_and_pattern => $scap->id }, { limit => 1 } ); #TODO: 'deleted' support?
1691     return OpenILS::Event->new(
1692             'SERIAL_CAPTION_AND_PATTERN_HAS_ISSUANCES', payload => $scap->id ) if (@$sisses);
1693
1694     return $editor->event unless $editor->delete_serial_caption_and_pattern($scap);
1695     return 0;
1696 }
1697
1698 sub _create_scap {
1699     my ($editor, $scap) = @_;
1700
1701     $logger->info("caption_and_pattern-alter: new caption_and_pattern ".OpenSRF::Utils::JSON->perl2JSON($scap));
1702     return $editor->event unless $editor->create_serial_caption_and_pattern($scap);
1703     return 0;
1704 }
1705
1706 sub _update_scap {
1707     my ($editor, $override, $scap) = @_;
1708
1709     $logger->info("caption_and_pattern-alter: retrieving caption_and_pattern ".$scap->id);
1710     my $orig_scap = $editor->retrieve_serial_caption_and_pattern($scap->id);
1711
1712     $logger->info("caption_and_pattern-alter: original caption_and_pattern ".OpenSRF::Utils::JSON->perl2JSON($orig_scap));
1713     $logger->info("caption_and_pattern-alter: updated caption_and_pattern ".OpenSRF::Utils::JSON->perl2JSON($scap));
1714     return $editor->event unless $editor->update_serial_caption_and_pattern($scap);
1715     return 0;
1716 }
1717
1718 __PACKAGE__->register_method(
1719     method  => "serial_caption_and_pattern_retrieve_batch",
1720     authoritative => 1,
1721     api_name    => "open-ils.serial.caption_and_pattern.batch.retrieve"
1722 );
1723
1724 sub serial_caption_and_pattern_retrieve_batch {
1725     my( $self, $client, $ids ) = @_;
1726     $logger->info("Fetching caption_and_patterns @$ids");
1727     return $U->cstorereq(
1728         "open-ils.cstore.direct.serial.caption_and_pattern.search.atomic",
1729         { id => $ids }
1730     );
1731 }
1732
1733 __PACKAGE__->register_method(
1734     "method" => "bre_by_identifier",
1735     "api_name" => "open-ils.serial.biblio.record_entry.by_identifier",
1736     "stream" => 1,
1737     "signature" => {
1738         "desc" => "Find instances of biblio.record_entry given a search token" .
1739             " that could be a value for any identifier defined in " .
1740             "config.metabib_field",
1741         "params" => [
1742             {"desc" => "Search token", "type" => "string"},
1743             {"desc" => "Options: require_subscriptions, add_mvr, is_actual_id" .
1744                 " (all boolean)", "type" => "object"}
1745         ],
1746         "return" => {
1747             "desc" => "Any matching BREs, or if the add_mvr option is true, " .
1748                 "objects with a 'bre' key/value pair, and an 'mvr' " .
1749                 "key-value pair.  BREs have subscriptions fleshed on.",
1750             "type" => "object"
1751         }
1752     }
1753 );
1754
1755 sub bre_by_identifier {
1756     my ($self, $client, $term, $options) = @_;
1757
1758     return new OpenILS::Event("BAD_PARAMS") unless $term;
1759
1760     $options ||= {};
1761     my $e = new_editor();
1762
1763     my @ids;
1764
1765     if ($options->{"is_actual_id"}) {
1766         @ids = ($term);
1767     } else {
1768         my $cmf =
1769             $e->search_config_metabib_field({"field_class" => "identifier"})
1770                 or return $e->die_event;
1771
1772         my @identifiers = map { $_->name } @$cmf;
1773         my $query = join(" || ", map { "id|$_: $term" } @identifiers);
1774
1775         my $search = create OpenSRF::AppSession("open-ils.search");
1776         my $search_result = $search->request(
1777             "open-ils.search.biblio.multiclass.query.staff", {}, $query
1778         )->gather(1);
1779         $search->disconnect;
1780
1781         # Un-nest results. They tend to look like [[1],[2],[3]] for some reason.
1782         @ids = map { @{$_} } @{$search_result->{"ids"}};
1783
1784         unless (@ids) {
1785             $e->disconnect;
1786             return undef;
1787         }
1788     }
1789
1790     my $bre = $e->search_biblio_record_entry([
1791         {"id" => \@ids}, {
1792             "flesh" => 2, "flesh_fields" => {
1793                 "bre" => ["subscriptions"],
1794                 "ssub" => ["owning_lib"]
1795             }
1796         }
1797     ]) or return $e->die_event;
1798
1799     if (@$bre && $options->{"require_subscriptions"}) {
1800         $bre = [ grep { @{$_->subscriptions} } @$bre ];
1801     }
1802
1803     $e->disconnect;
1804
1805     if (@$bre) { # re-evaluate after possible grep
1806         if ($options->{"add_mvr"}) {
1807             $client->respond(
1808                 {"bre" => $_, "mvr" => _get_mvr($_->id)}
1809             ) foreach (@$bre);
1810         } else {
1811             $client->respond($_) foreach (@$bre);
1812         }
1813     }
1814
1815     undef;
1816 }
1817
1818 __PACKAGE__->register_method(
1819     "method" => "get_receivable_items",
1820     "api_name" => "open-ils.serial.items.receivable.by_subscription",
1821     "stream" => 1,
1822     "signature" => {
1823         "desc" => "Return all receivable items under a given subscription",
1824         "params" => [
1825             {"desc" => "Authtoken", "type" => "string"},
1826             {"desc" => "Subscription ID", "type" => "number"},
1827         ],
1828         "return" => {
1829             "desc" => "All receivable items under a given subscription",
1830             "type" => "object"
1831         }
1832     }
1833 );
1834
1835 __PACKAGE__->register_method(
1836     "method" => "get_receivable_items",
1837     "api_name" => "open-ils.serial.items.receivable.by_issuance",
1838     "stream" => 1,
1839     "signature" => {
1840         "desc" => "Return all receivable items under a given issuance",
1841         "params" => [
1842             {"desc" => "Authtoken", "type" => "string"},
1843             {"desc" => "Issuance ID", "type" => "number"},
1844         ],
1845         "return" => {
1846             "desc" => "All receivable items under a given issuance",
1847             "type" => "object"
1848         }
1849     }
1850 );
1851
1852 sub get_receivable_items {
1853     my ($self, $client, $auth, $term)  = @_;
1854
1855     my $e = new_editor("authtoken" => $auth);
1856     return $e->die_event unless $e->checkauth;
1857
1858     # XXX permissions
1859
1860     my $by = ($self->api_name =~ /by_(\w+)$/)[0];
1861
1862     my %where = (
1863         "issuance" => {"issuance" => $term},
1864         "subscription" => {"+siss" => {"subscription" => $term}}
1865     );
1866
1867     my $item_ids = $e->json_query(
1868         {
1869             "select" => {"sitem" => ["id"]},
1870             "from" => {"sitem" => "siss"},
1871             "where" => {
1872                 %{$where{$by}}, "date_received" => undef
1873             },
1874             "order_by" => {"sitem" => ["id"]}
1875         }
1876     ) or return $e->die_event;
1877
1878     return undef unless @$item_ids;
1879
1880     foreach (map { $_->{"id"} } @$item_ids) {
1881         $client->respond(
1882             $e->retrieve_serial_item([
1883                 $_, {
1884                     "flesh" => 3,
1885                     "flesh_fields" => {
1886                         "sitem" => ["stream", "issuance"],
1887                         "sstr" => ["distribution"],
1888                         "sdist" => ["holding_lib"]
1889                     }
1890                 }
1891             ])
1892         );
1893     }
1894
1895     $e->disconnect;
1896     undef;
1897 }
1898
1899 __PACKAGE__->register_method(
1900     "method" => "get_receivable_issuances",
1901     "api_name" => "open-ils.serial.issuances.receivable",
1902     "stream" => 1,
1903     "signature" => {
1904         "desc" => "Return all issuances with receivable items given " .
1905             "a subscription ID",
1906         "params" => [
1907             {"desc" => "Authtoken", "type" => "string"},
1908             {"desc" => "Subscription ID", "type" => "number"},
1909         ],
1910         "return" => {
1911             "desc" => "All issuances with receivable items " .
1912                 "(but not the items themselves)", "type" => "object"
1913         }
1914     }
1915 );
1916
1917 sub get_receivable_issuances {
1918     my ($self, $client, $auth, $sub_id) = @_;
1919
1920     my $e = new_editor("authtoken" => $auth);
1921     return $e->die_event unless $e->checkauth;
1922
1923     # XXX permissions
1924
1925     my $issuance_ids = $e->json_query({
1926         "select" => {
1927             "siss" => [
1928                 {"transform" => "distinct", "column" => "id"},
1929                 "date_published"
1930             ]
1931         },
1932         "from" => {"siss" => "sitem"},
1933         "where" => {
1934             "subscription" => $sub_id,
1935             "+sitem" => {"date_received" => undef}
1936         },
1937         "order_by" => {
1938             "siss" => {"date_published" => {"direction" => "asc"}}
1939         }
1940
1941     }) or return $e->die_event;
1942
1943     $client->respond($e->retrieve_serial_issuance($_->{"id"}))
1944         foreach (@$issuance_ids);
1945
1946     $e->disconnect;
1947     undef;
1948 }
1949
1950 __PACKAGE__->register_method(
1951     "method" => "receive_items_by_id",
1952     "api_name" => "open-ils.serial.items.receive_by_id",
1953     "stream" => 1,
1954     "signature" => {
1955         "desc" => "Given sitem IDs, just set their date_received to now()",
1956         "params" => [
1957             {"desc" => "Authtoken", "type" => "string"},
1958             {"desc" => "Serial Item IDs", "type" => "array"},
1959         ],
1960         "return" => {
1961             "desc" => "Stream of updated items", "type" => "object"
1962         }
1963     }
1964 );
1965
1966 sub receive_items_by_id {
1967     my ($self, $client, $auth, $id_list) = @_;
1968
1969     my $e = new_editor("authtoken" => $auth, "xact" => 1);
1970     return $e->die_event unless $e->checkauth;
1971
1972     # XXX permissions
1973
1974     # for now this function doesn't do nearly enough. simply sets
1975     # date_received to now()
1976
1977     my @results = ();
1978     foreach (@$id_list) {
1979         my $sitem = $e->retrieve_serial_item($_) or return $e->die_event;
1980
1981         $sitem->date_received("now");
1982         $e->update_serial_item($sitem) or return $e->die_event;
1983
1984         push @results, $sitem;
1985     }
1986
1987     $e->commit;
1988     $client->respond($_) foreach @results;
1989     undef;
1990 }
1991
1992 1;