Bugzilla – Attachment 178586 Details for
Bug 38924
Introduce an organization level loan 'Quota' system for Koha
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38924: Add API endpoints for managing quotas
Bug-38924-Add-API-endpoints-for-managing-quotas.patch (text/plain), 12.95 KB, created by
Martin Renvoize (ashimema)
on 2025-02-24 16:29:24 UTC
(
hide
)
Description:
Bug 38924: Add API endpoints for managing quotas
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-02-24 16:29:24 UTC
Size:
12.95 KB
patch
obsolete
>From f0da5a83b06839b442de2eca796c2f08b8c75112 Mon Sep 17 00:00:00 2001 >From: Jacob O'Mara <jacobomara901@gmail.com> >Date: Wed, 29 Jan 2025 19:17:59 +0000 >Subject: [PATCH] Bug 38924: Add API endpoints for managing quotas > >This commit adds the api endpoints for administering circulation quotas >--- > Koha/REST/V1/Patrons/Quotas.pm | 155 ++++++++++++++++++ > api/v1/swagger/definitions/quota.yaml | 33 ++++ > api/v1/swagger/paths/patrons_quotas.yaml | 199 +++++++++++++++++++++++ > api/v1/swagger/swagger.yaml | 15 ++ > 4 files changed, 402 insertions(+) > create mode 100644 Koha/REST/V1/Patrons/Quotas.pm > create mode 100644 api/v1/swagger/definitions/quota.yaml > create mode 100644 api/v1/swagger/paths/patrons_quotas.yaml > >diff --git a/Koha/REST/V1/Patrons/Quotas.pm b/Koha/REST/V1/Patrons/Quotas.pm >new file mode 100644 >index 00000000000..9067f16c76d >--- /dev/null >+++ b/Koha/REST/V1/Patrons/Quotas.pm >@@ -0,0 +1,155 @@ >+package Koha::REST::V1::Patrons::Quotas; >+ >+use Modern::Perl; >+use Mojo::Base 'Mojolicious::Controller'; >+ >+use Koha::Patron::Quotas; >+ >+use Try::Tiny qw( catch try ); >+ >+=head1 API >+ >+=head2 Methods >+ >+=head3 list >+ >+Controller method for listing patron quotas >+ >+=cut >+ >+sub list { >+ my $c = shift->openapi->valid_input or return; >+ >+ return try { >+ my $patron_id = $c->param('patron_id'); >+ my $only_active = $c->param('only_active'); >+ >+ # Remove params we've handled >+ $c->req->params->remove('patron_id')->remove('only_active'); >+ >+ my $quotas_set = Koha::Patron::Quotas->new; >+ >+ if ($patron_id) { >+ $quotas_set = $quotas_set->search({ patron_id => $patron_id }); >+ } >+ >+ if ($only_active) { >+ $quotas_set = $quotas_set->get_active_quotas; >+ } >+ >+ return $c->render( >+ status => 200, >+ openapi => $c->objects->search($quotas_set) >+ ); >+ } >+ catch { >+ $c->unhandled_exception($_); >+ }; >+} >+ >+=head3 get >+ >+Controller method for retrieving a single quota >+ >+=cut >+ >+sub get { >+ my $c = shift->openapi->valid_input or return; >+ >+ return try { >+ my $quota = Koha::Patron::Quotas->find( $c->param('quota_id') ); >+ >+ return $c->render_resource_not_found("Quota") unless $quota; >+ >+ return $c->render( status => 200, openapi => $c->objects->to_api($quota) ); >+ } >+ catch { >+ $c->unhandled_exception($_); >+ }; >+} >+ >+=head3 add >+ >+Controller method for adding a new quota >+ >+=cut >+ >+sub add { >+ my $c = shift->openapi->valid_input or return; >+ >+ return try { >+ my $body = $c->req->json; >+ $body->{patron_id} = $c->param('patron_id'); >+ >+ my $quota = Koha::Patron::Quota->new_from_api($body); >+ $quota->store; >+ >+ $c->res->headers->location($c->req->url->to_string . '/' . $quota->id); >+ return $c->render( >+ status => 201, >+ openapi => $c->objects->to_api($quota) >+ ); >+ } >+ catch { >+ if (ref($_) eq 'Koha::Exceptions::Quota::Clash') { >+ return $c->render( >+ status => 409, >+ openapi => { error => "Quota period overlaps with existing quota" } >+ ); >+ } >+ $c->unhandled_exception($_); >+ }; >+} >+ >+=head3 update >+ >+Controller method for updating a quota >+ >+=cut >+ >+sub update { >+ my $c = shift->openapi->valid_input or return; >+ >+ my $quota = Koha::Patron::Quotas->find($c->param('quota_id')); >+ >+ return $c->render_resource_not_found("Quota") unless $quota; >+ >+ return try { >+ $quota->set_from_api($c->req->json); >+ $quota->store; >+ return $c->render(status => 200, openapi => $c->objects->to_api($quota)); >+ } >+ catch { >+ if (ref($_) eq 'Koha::Exceptions::Quota::Clash') { >+ return $c->render( >+ status => 409, >+ openapi => { error => "Quota period overlaps with existing quota" } >+ ); >+ } >+ $c->unhandled_exception($_); >+ }; >+} >+ >+=head3 delete >+ >+Controller method for deleting a quota >+ >+=cut >+ >+sub delete { >+ my $c = shift->openapi->valid_input or return; >+ >+ my $quota = Koha::Patron::Quotas->find($c->param('quota_id')); >+ >+ return $c->render_resource_not_found("Quota") unless $quota; >+ >+ return try { >+ $quota->delete; >+ return $c->render_resource_deleted; >+ } >+ catch { >+ $c->unhandled_exception($_); >+ }; >+} >+ >+1; >diff --git a/api/v1/swagger/definitions/quota.yaml b/api/v1/swagger/definitions/quota.yaml >new file mode 100644 >index 00000000000..32d0f12c8d3 >--- /dev/null >+++ b/api/v1/swagger/definitions/quota.yaml >@@ -0,0 +1,33 @@ >+--- >+type: object >+properties: >+ id: >+ type: integer >+ description: Internal quota identifier >+ readOnly: true >+ description: >+ type: string >+ description: User friendly description of the quota >+ patron_id: >+ type: integer >+ description: Link to patron >+ start_date: >+ type: string >+ format: date >+ description: Start date of quota period >+ end_date: >+ type: string >+ format: date >+ description: End date of quota period >+ allocation: >+ type: integer >+ description: Total quota amount for period >+ used: >+ type: integer >+ description: Amount of quota used >+additionalProperties: false >+required: >+ - patron_id >+ - start_date >+ - end_date >+ - allocation >diff --git a/api/v1/swagger/paths/patrons_quotas.yaml b/api/v1/swagger/paths/patrons_quotas.yaml >new file mode 100644 >index 00000000000..5de865dff7e >--- /dev/null >+++ b/api/v1/swagger/paths/patrons_quotas.yaml >@@ -0,0 +1,199 @@ >+--- >+/patrons/{patron_id}/quotas: >+ post: >+ x-mojo-to: Patrons::Quotas#add >+ operationId: addPatronQuota >+ tags: >+ - quotas >+ summary: Add new quota for patron >+ parameters: >+ - $ref: "../swagger.yaml#/parameters/patron_id_pp" >+ - name: body >+ in: body >+ description: A JSON object containing quota information >+ required: true >+ schema: >+ $ref: "../swagger.yaml#/definitions/quota" >+ produces: >+ - application/json >+ responses: >+ "201": >+ description: Quota created >+ schema: >+ $ref: "../swagger.yaml#/definitions/quota" >+ "400": >+ description: Bad request >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "404": >+ description: Patron not found >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "409": >+ description: Quota period clash >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "500": >+ description: Internal server error >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ x-koha-authorization: >+ permissions: >+ borrowers: manage_borrower_quotas >+ get: >+ x-mojo-to: Patrons::Quotas#list >+ operationId: listQuotas >+ tags: >+ - quotas >+ summary: List all quotas >+ parameters: >+ - $ref: "../swagger.yaml#/parameters/patron_id_pp" >+ - name: only_active >+ in: query >+ description: Only return active quotas >+ required: false >+ type: boolean >+ - $ref: "../swagger.yaml#/parameters/page" >+ - $ref: "../swagger.yaml#/parameters/per_page" >+ - $ref: "../swagger.yaml#/parameters/match" >+ - $ref: "../swagger.yaml#/parameters/order_by" >+ - $ref: "../swagger.yaml#/parameters/q_param" >+ - $ref: "../swagger.yaml#/parameters/q_body" >+ - $ref: "../swagger.yaml#/parameters/request_id_header" >+ produces: >+ - application/json >+ responses: >+ "200": >+ description: A list of quotas >+ schema: >+ type: array >+ items: >+ $ref: "../swagger.yaml#/definitions/quota" >+ "400": >+ description: | >+ Bad request. Possible `error_code` attribute values: >+ * `bad_request` >+ * `invalid_query` >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "403": >+ description: Access forbidden >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "500": >+ description: Internal server error >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ x-koha-authorization: >+ permissions: >+ borrowers: view_borrower_quotas >+/patrons/{patron_id}/quotas/{quota_id}: >+ get: >+ x-mojo-to: Patrons::Quotas#get >+ operationId: getPatronQuota >+ tags: >+ - quotas >+ summary: Get quota details >+ parameters: >+ - $ref: "../swagger.yaml#/parameters/patron_id_pp" >+ - name: quota_id >+ in: path >+ description: Internal quota identifier >+ required: true >+ type: string >+ produces: >+ - application/json >+ responses: >+ "200": >+ description: A quota >+ schema: >+ $ref: "../swagger.yaml#/definitions/quota" >+ "400": >+ description: Bad request >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "404": >+ description: Quota not found >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "500": >+ description: Internal server error >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ x-koha-authorization: >+ permissions: >+ borrowers: view_borrower_quotas >+ put: >+ x-mojo-to: Patrons::Quotas#update >+ operationId: updatePatronQuota >+ tags: >+ - quotas >+ summary: Update quota >+ parameters: >+ - $ref: "../swagger.yaml#/parameters/patron_id_pp" >+ - $ref: "../swagger.yaml#/parameters/quota_id_pp" >+ - name: body >+ in: body >+ description: A JSON object containing quota information >+ required: true >+ schema: >+ $ref: "../swagger.yaml#/definitions/quota" >+ produces: >+ - application/json >+ responses: >+ "200": >+ description: Quota updated >+ schema: >+ $ref: "../swagger.yaml#/definitions/quota" >+ "400": >+ description: Bad request >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "404": >+ description: Quota not found >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "409": >+ description: Quota period clash >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "500": >+ description: Internal server error >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ x-koha-authorization: >+ permissions: >+ borrowers: manage_borrower_quotas >+ delete: >+ x-mojo-to: Patrons::Quotas#delete >+ operationId: deletePatronQuota >+ tags: >+ - quotas >+ summary: Delete quota >+ parameters: >+ - $ref: "../swagger.yaml#/parameters/patron_id_pp" >+ - name: quota_id >+ in: path >+ description: Internal quota identifier >+ required: true >+ type: integer >+ produces: >+ - application/json >+ responses: >+ "204": >+ description: Quota deleted >+ "400": >+ description: Bad request >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "404": >+ description: Quota not found >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ "500": >+ description: Internal server error >+ schema: >+ $ref: "../swagger.yaml#/definitions/error" >+ x-koha-authorization: >+ permissions: >+ borrowers: manage_borrower_quotas >diff --git a/api/v1/swagger/swagger.yaml b/api/v1/swagger/swagger.yaml >index 398b192a76c..9c64afaf02b 100644 >--- a/api/v1/swagger/swagger.yaml >+++ b/api/v1/swagger/swagger.yaml >@@ -160,6 +160,8 @@ definitions: > $ref: ./definitions/preservation_processing.yaml > quote: > $ref: ./definitions/quote.yaml >+ quota: >+ $ref: ./definitions/quota.yaml > recall: > $ref: ./definitions/recall.yaml > recalls: >@@ -473,6 +475,10 @@ paths: > $ref: "./paths/patrons_password.yaml#/~1patrons~1{patron_id}~1password" > "/patrons/{patron_id}/password/expiration_date": > $ref: "./paths/patrons_password.yaml#/~1patrons~1{patron_id}~1password~1expiration_date" >+ "/patrons/{patron_id}/quotas": >+ $ref: "./paths/patrons_quotas.yaml#/~1patrons~1{patron_id}~1quotas" >+ "/patrons/{patron_id}/quotas/{quota_id}": >+ $ref: "./paths/patrons_quotas.yaml#/~1patrons~1{patron_id}~1quotas~1{quota_id}" > "/patrons/{patron_id}/recalls": > $ref: "./paths/patrons_recalls.yaml#/~1patrons~1{patron_id}~1recalls" > /patron_categories: >@@ -897,6 +903,12 @@ parameters: > name: quote_id > required: true > type: integer >+ quota_id_pp: >+ description: Internal quota identifier >+ in: path >+ name: quota_id >+ required: true >+ type: integer > record_source_id_header: > description: Internal record source identifier. > name: x-record-source-id >@@ -1262,6 +1274,9 @@ tags: > - description: "Manage purchase suggestions\n" > name: suggestions > x-displayName: Purchase suggestions >+ - description: "Manage quotas\n" >+ name: quotas >+ x-displayName: Quotas > - description: "Manage quotes\n" > name: quotes > x-displayName: Quotes >-- >2.48.1
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 38924
:
178582
|
178583
|
178584
|
178585
| 178586 |
178587
|
178588
|
178589
|
178590
|
178591
|
178592
|
178593
|
178594
|
178595
|
178596
|
178597
|
178598
|
178599
|
178600
|
178601
|
178602
|
178603
|
178604
|
178605
|
178606
|
178607
|
178608