Bugzilla – Attachment 70011 Details for
Bug 19841
AddMember should raise an exception if categorycode is invalid
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19841: Make AddMember raise an exception if categorycode is invalid
Bug-19841-Make-AddMember-raise-an-exception-if-cat.patch (text/plain), 2.74 KB, created by
Tomás Cohen Arazi (tcohen)
on 2017-12-21 13:11:22 UTC
(
hide
)
Description:
Bug 19841: Make AddMember raise an exception if categorycode is invalid
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2017-12-21 13:11:22 UTC
Size:
2.74 KB
patch
obsolete
>From 4387c9dd1d2f5a2366034b5f7d8660b5ac14c7fa Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Wed, 20 Dec 2017 16:19:18 -0300 >Subject: [PATCH] Bug 19841: Make AddMember raise an exception if categorycode > is invalid > >This patch makes C4::Members::AddMember raise a Koha::Exceptions::BadParameter >exception. The current behaviour is to just explode. Code calling >AddReturn should work as expected, unless they are looking for a >specific failure message. > >It is just explodes in a way we know what happened, in the case the >categorycode is invalid. > >To test: >- Apply the Unit tests patch >- Run: > $ kshell > k$ prove t/db_dependent/Members.t >=> FAIL: Tests fail because AddReturn doesn't raise an exception >- Apply this patch >- Run: > $ kshell > k$ prove t/db_dependent/Members.t >=> SUCCESS: Tests pass! >- Sign off :-D >--- > C4/Members.pm | 19 +++++++++++++------ > 1 file changed, 13 insertions(+), 6 deletions(-) > >diff --git a/C4/Members.pm b/C4/Members.pm >index d8985bc06b..2d942819a6 100644 >--- a/C4/Members.pm >+++ b/C4/Members.pm >@@ -387,6 +387,14 @@ sub AddMember { > my $dbh = C4::Context->dbh; > my $schema = Koha::Database->new()->schema; > >+ my $category = Koha::Patron::Categories->find( $data{categorycode} ); >+ unless ($category) { >+ Koha::Exceptions::BadParameter->throw( >+ error => 'Invalid parameter passed', >+ parameter => 'categorycode' >+ ); >+ } >+ > # trim whitespace from data which has some non-whitespace in it. > foreach my $field_name (keys(%data)) { > if ( defined $data{$field_name} && $data{$field_name} =~ /\S/ ) { >@@ -399,7 +407,7 @@ sub AddMember { > if ( $data{'userid'} eq '' || !Check_Userid( $data{'userid'} ) ); > > # add expiration date if it isn't already there >- $data{dateexpiry} ||= Koha::Patron::Categories->find( $data{categorycode} )->get_expiry_date; >+ $data{dateexpiry} ||= $category->get_expiry_date; > > # add enrollment date if it isn't already there > unless ( $data{'dateenrolled'} ) { >@@ -412,12 +420,11 @@ sub AddMember { > } > } > >- my $patron_category = $schema->resultset('Category')->find( $data{'categorycode'} ); > $data{'privacy'} = >- $patron_category->default_privacy() eq 'default' ? 1 >- : $patron_category->default_privacy() eq 'never' ? 2 >- : $patron_category->default_privacy() eq 'forever' ? 0 >- : undef; >+ $category->default_privacy() eq 'default' ? 1 >+ : $category->default_privacy() eq 'never' ? 2 >+ : $category->default_privacy() eq 'forever' ? 0 >+ : undef; > > $data{'privacy_guarantor_checkouts'} = 0 unless defined( $data{'privacy_guarantor_checkouts'} ); > >-- >2.15.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 19841
:
69966
|
69967
|
69968
|
70010
|
70011
|
70138
|
70147
|
70148