);
sub uber_hold {
- my($self, $client, $auth, $hold_id) = @_;
+ my($self, $client, $auth, $hold_id, $args) = @_;
my $e = new_editor(authtoken=>$auth);
$e->checkauth or return $e->event;
- return uber_hold_impl($e, $hold_id);
+ return uber_hold_impl($e, $hold_id, $args);
}
__PACKAGE__->register_method(
);
sub batch_uber_hold {
- my($self, $client, $auth, $hold_ids) = @_;
+ my($self, $client, $auth, $hold_ids, $args) = @_;
my $e = new_editor(authtoken=>$auth);
$e->checkauth or return $e->event;
- $client->respond(uber_hold_impl($e, $_)) for @$hold_ids;
+ $client->respond(uber_hold_impl($e, $_, $args)) for @$hold_ids;
return undef;
}
sub uber_hold_impl {
- my($e, $hold_id) = @_;
-
- my $resp = {};
+ my($e, $hold_id, $args) = @_;
+ $args ||= {};
my $hold = $e->retrieve_action_hold_request(
[
my $user = $hold->usr;
$hold->usr($user->id);
- my $card = $e->retrieve_actor_card($user->card)
- or return $e->event;
- my( $mvr, $volume, $copy ) = find_hold_mvr($e, $hold);
+ my( $mvr, $volume, $copy, $issuance, $bre ) = find_hold_mvr($e, $hold, $args->{suppress_mvr});
- flesh_hold_notices([$hold], $e);
- flesh_hold_transits([$hold]);
+ flesh_hold_notices([$hold], $e) unless $args->{suppress_notices};
+ flesh_hold_transits([$hold]) unless $args->{suppress_transits};
my $details = retrieve_hold_queue_status_impl($e, $hold);
- return {
+ my $resp = {
hold => $hold,
copy => $copy,
volume => $volume,
- mvr => $mvr,
- patron_first => $user->first_given_name,
- patron_last => $user->family_name,
- patron_barcode => $card->barcode,
- patron_alias => $user->alias,
%$details
};
+
+ $resp->{mvr} = $mvr unless $args->{suppress_mvr};
+ unless($args->{suppress_patron_details}) {
+ my $card = $e->retrieve_actor_card($user->card) or return $e->event;
+ $resp->{patron_first} = $user->first_given_name,
+ $resp->{patron_last} = $user->family_name,
+ $resp->{patron_barcode} = $card->barcode,
+ $resp->{patron_alias} = $user->alias,
+ };
+
+ $resp->{bre} = $bre if $args->{include_bre};
+
+ return $resp;
}
# hold is all about
# -----------------------------------------------------
sub find_hold_mvr {
- my( $e, $hold ) = @_;
+ my( $e, $hold, $no_mvr ) = @_;
my $tid;
my $copy;
# TODO return metarcord mvr for M holds
my $title = $e->retrieve_biblio_record_entry($tid);
- return ( $U->record_to_mvr($title), $volume, $copy, $issuance );
+ return ( ($no_mvr) ? undef : $U->record_to_mvr($title), $volume, $copy, $issuance, $title );
}
__PACKAGE__->register_method(
sub checkauth {
my $self = shift;
$self->log(D, "checking auth token ".$self->authtoken);
- my ($reqr, $evt) = $U->checkses($self->authtoken);
- $self->event($evt) if $evt;
- return $self->{requestor} = $reqr;
-}
+ my $content = $U->simplereq(
+ 'open-ils.auth',
+ 'open-ils.auth.session.retrieve', $self->authtoken, 1);
+
+ if(!$content or $U->event_code($content)) {
+ $self->event( ($content) ? $content : OpenILS::Event->new('NO_SESSION'));
+ return undef;
+ }
+
+ $self->{authtime} = $content->{authtime};
+ return $self->{requestor} = $content->{userobj};
+}
=head test
sub checkauth {
return $self->{authtoken};
}
+sub authtime {
+ my( $self, $auth ) = @_;
+ $self->{authtime} = $auth if $auth;
+ return $self->{authtime};
+}
+
sub timeout {
my($self, $to) = @_;
$self->{timeout} = $to if defined $to;