Bugzilla – Attachment 87156 Details for
Bug 17003
Add API route to get checkout's renewability
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17003: Adapt to OpenAPI
Bug-17003-Adapt-to-OpenAPI.patch (text/plain), 4.33 KB, created by
Josef Moravec
on 2019-03-29 08:22:04 UTC
(
hide
)
Description:
Bug 17003: Adapt to OpenAPI
Filename:
MIME Type:
Creator:
Josef Moravec
Created:
2019-03-29 08:22:04 UTC
Size:
4.33 KB
patch
obsolete
>From 5d68900b407b4a85ee3b9cd01ca2a20ef54bb196 Mon Sep 17 00:00:00 2001 >From: Josef Moravec <josef.moravec@gmail.com> >Date: Thu, 21 Feb 2019 02:30:00 +0000 >Subject: [PATCH] Bug 17003: Adapt to OpenAPI > >Test plan: >prove t/db_dependent/api/v1/checkouts.t >--- > Koha/REST/V1/Checkouts.pm | 40 ++++++++++++++----------------------- > api/v1/swagger/paths/checkouts.json | 3 +-- > t/db_dependent/api/v1/checkouts.t | 8 ++------ > 3 files changed, 18 insertions(+), 33 deletions(-) > >diff --git a/Koha/REST/V1/Checkouts.pm b/Koha/REST/V1/Checkouts.pm >index ef66d795a4..e4aa97ffff 100644 >--- a/Koha/REST/V1/Checkouts.pm >+++ b/Koha/REST/V1/Checkouts.pm >@@ -127,37 +127,27 @@ sub renew { > } > > sub renewability { >- my ($c, $args, $cb) = @_; >- >- my $user = $c->stash('koha.user'); >- >- my $OpacRenewalAllowed; >- if ($user->borrowernumber == $borrowernumber) { >- $OpacRenewalAllowed = C4::Context->preference('OpacRenewalAllowed'); >- } >- >- unless ($user && ($OpacRenewalAllowed >- || haspermission($user->userid, { circulate => "circulate_remaining_permissions" }))) { >- return $c->$cb({error => "You don't have the required permission"}, 403); >- } >+ my $c = shift->openapi->valid_input or return; > >- my $checkout_id = $args->{checkout_id}; >- my $checkout = Koha::Issues->find($checkout_id); >+ my $checkout_id = $c->validation->param('checkout_id'); >+ my $checkout = Koha::Checkouts->find( $checkout_id ); > >- if (!$checkout) { >- return $c->$cb({ >- error => "Checkout doesn't exist" >- }, 404); >+ unless ($checkout) { >+ return $c->render( >+ status => 404, >+ openapi => { error => "Checkout doesn't exist" } >+ ); > } > >- my $borrowernumber = $checkout->borrowernumber; >- my $itemnumber = $checkout->itemnumber; >- > my ($can_renew, $error) = C4::Circulation::CanBookBeRenewed( >- $borrowernumber, $itemnumber); >+ $checkout->borrowernumber, $checkout->itemnumber); > >- return $c->$cb({ renewable => Mojo::JSON->true, error => undef }, 200) if $can_renew; >- return $c->$cb({ renewable => Mojo::JSON->false, error => $error }, 200); >+ my $renewable = Mojo::JSON->false; >+ $renewable = Mojo::JSON->true if $can_renew; >+ return $c->render( >+ status => 200, >+ openapi => { renewable => $renewable, error => $error } >+ ); > } > > =head3 _to_api >diff --git a/api/v1/swagger/paths/checkouts.json b/api/v1/swagger/paths/checkouts.json >index 7049ca635f..4aa4f12c9d 100644 >--- a/api/v1/swagger/paths/checkouts.json >+++ b/api/v1/swagger/paths/checkouts.json >@@ -95,6 +95,7 @@ > }, > "/checkouts/{checkout_id}/renewability": { > "get": { >+ "x-mojo-to": "Checkout#renewability", > "operationId": "renewabilityCheckout", > "tags": ["patrons", "checkouts"], > "parameters": [{ >@@ -116,8 +117,6 @@ > } > }, > "x-koha-authorization": { >- "allow-owner": true, >- "allow-guarantor": true, > "permissions": { > "circulate": "circulate_remaining_permissions" > } >diff --git a/t/db_dependent/api/v1/checkouts.t b/t/db_dependent/api/v1/checkouts.t >index 3636f754ba..ea513d5061 100644 >--- a/t/db_dependent/api/v1/checkouts.t >+++ b/t/db_dependent/api/v1/checkouts.t >@@ -144,9 +144,7 @@ $t->post_ok( "//$unauth_userid:$unauth_password@/api/v1/checkouts/" . $issue3->i > required_permissions => { circulate => "circulate_remaining_permissions" } > }); > >-$tx = $t->ua->build_tx(GET => "/api/v1/checkouts/" . $issue2->issue_id . "/renewability"); >-$tx->req->cookies({name => 'CGISESSID', value => $patron_session->id}); >-$t->request_ok($tx) >+$t->get_ok( "//$userid:$password@/api/v1/checkouts/" . $issue2->issue_id . "/renewability") > ->status_is(200) > ->json_is({ renewable => Mojo::JSON->true, error => undef }); > >@@ -160,8 +158,6 @@ $t->post_ok( "//$userid:$password@/api/v1/checkouts/" . $issue1->issue_id . "/re > ->status_is(403) > ->json_is({ error => 'Renewal not authorized (too_many)' }); > >-$tx = $t->ua->build_tx(GET => "/api/v1/checkouts/" . $issue2->issue_id . "/renewability"); >-$tx->req->cookies({name => 'CGISESSID', value => $patron_session->id}); >-$t->request_ok($tx) >+$t->get_ok( "//$userid:$password@/api/v1/checkouts/" . $issue2->issue_id . "/renewability") > ->status_is(200) > ->json_is({ renewable => Mojo::JSON->false, error => 'too_many' }); >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 17003
:
54709
|
54710
|
56507
|
57489
|
57493
|
58099
|
85475
|
85476
|
87155
|
87156
|
87157
|
87445
|
87446
|
88260
|
88261
|
88262
|
88589
|
88590
|
88591
|
91102
|
91103
|
91104
|
91105