Bugzilla – Attachment 177849 Details for
Bug 36027
search_for_data_inconsistencies.pl - add options so you can choose what checks to run
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36027: Change interactive to pass param and tidy the code
Bug-36027-Change-interactive-to-pass-param-and-tid.patch (text/plain), 11.78 KB, created by
Jonathan Druart
on 2025-02-12 13:06:39 UTC
(
hide
)
Description:
Bug 36027: Change interactive to pass param and tidy the code
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2025-02-12 13:06:39 UTC
Size:
11.78 KB
patch
obsolete
>From 5be7a50074b6efb8a785ce513e942e3f08b46eea Mon Sep 17 00:00:00 2001 >From: Phan Tung Bui <phan-tung.bui@inlibro.com> >Date: Thu, 22 Feb 2024 17:09:30 -0500 >Subject: [PATCH] Bug 36027: Change interactive to pass param and tidy the code > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Signed-off-by: David Nind <david@davidnind.com> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >Signed-off-by: David Nind <david@davidnind.com> >--- > .../search_for_data_inconsistencies.pl | 162 ++++++++++++++---- > 1 file changed, 129 insertions(+), 33 deletions(-) > >diff --git a/misc/maintenance/search_for_data_inconsistencies.pl b/misc/maintenance/search_for_data_inconsistencies.pl >index ebe3204ed3e..bda32ece34a 100755 >--- a/misc/maintenance/search_for_data_inconsistencies.pl >+++ b/misc/maintenance/search_for_data_inconsistencies.pl >@@ -16,7 +16,6 @@ > # along with Koha; if not, see <http://www.gnu.org/licenses>. > > use Modern::Perl; >- > use Koha::Script; > use Koha::AuthorisedValues; > use Koha::Authorities; >@@ -27,26 +26,108 @@ use Koha::Items; > use Koha::ItemTypes; > use Koha::Patrons; > use C4::Biblio qw( GetMarcFromKohaField ); >+use Getopt::Long; >+use Pod::Usage; >+ >+our %options = ( >+ 'check-branch' => 0, >+ 'check-auth' => 0, >+ 'check-status' => 0, >+ 'check-framework' => 0, >+ 'check-title' => 0, >+ 'check-age' => 0, >+ 'skip-branch' => 1, >+ 'skip-auth' => 1, >+ 'skip-status' => 1, >+ 'skip-framework' => 1, >+ 'skip-title' => 1, >+ 'skip-age' => 1, >+ 'help' => 0, >+); >+ >+# Parse command line options >+GetOptions( >+ 'check-branch' => sub { $options{'check-branch'} = 1 }, >+ 'check-auth' => sub { $options{'check-auth'} = 1 }, >+ 'check-status' => sub { $options{'check-status'} = 1 }, >+ 'check-framework' => sub { $options{'check-framework'} = 1 }, >+ 'check-title' => sub { $options{'check-title'} = 1 }, >+ 'check-age' => sub { $options{'check-age'} = 1 }, >+ 'skip-branch' => sub { $options{'skip-branch'} = 0 }, >+ 'skip-auth' => sub { $options{'skip-auth'} = 0 }, >+ 'skip-status' => sub { $options{'skip-status'} = 0 }, >+ 'skip-framework' => sub { $options{'skip-framework'} = 0 }, >+ 'skip-title' => sub { $options{'skip-title'} = 0 }, >+ 'skip-age' => sub { $options{'skip-age'} = 0 }, >+ 'help' => sub { $options{'help'} = 1; }, >+) or pod2usage(2); # Print usage if invalid options are provided >+ >+# Call handle_invalid_options subroutine if invalid options are provided >+Getopt::Long::Configure('pass_through'); >+GetOptions( >+ '<>' => sub { >+ my ($opt_name) = @_; >+ handle_invalid_options($opt_name); >+ } >+); >+ >+# Print usage and exit if --help flag is provided >+pod2usage(1) if $options{'help'}; >+ >+# Run tests based on options >+set_skip_options(); >+CheckItemsBranch() if $options{'check-branch'} || $options{'skip-branch'}; >+CheckItemsAuthHeader() if $options{'check-auth'} || $options{'skip-auth'}; >+CheckItemsStatus() if $options{'check-status'} || $options{'skip-status'}; >+CheckItemsFramework() if $options{'check-framework'} || $options{'skip-framework'}; >+CheckItemsTitle() if $options{'check-title'} || $options{'skip-title'}; >+CheckAgeForCategory() if $options{'check-age'} || $options{'skip-age'}; >+ >+# Handle invalid options >+sub handle_invalid_options { >+ my ($opt_name) = @_; >+ print "Invalid option provided: $opt_name\n"; >+ pod2usage(2); >+} > >-{ >+# Set skip options based on check options >+sub set_skip_options { >+ my $has_check_option = grep { $options{$_} == 1 } grep { /^check-/ } keys %options; >+ if ($has_check_option) { >+ foreach my $key ( keys %options ) { >+ $options{$key} = 0 if $key =~ /^skip-/; >+ } >+ } >+ return %options; >+} >+ >+sub CheckItemsBranch { > my $items = Koha::Items->search( { -or => { homebranch => undef, holdingbranch => undef } } ); > if ( $items->count ) { new_section("Not defined items.homebranch and/or items.holdingbranch") } > while ( my $item = $items->next ) { > if ( not $item->homebranch and not $item->holdingbranch ) { > new_item( >- sprintf "Item with itemnumber=%s does not have homebranch and holdingbranch defined", >- $item->itemnumber >+ sprintf >+ "Item with itemnumber=%s and biblionumber=%s does not have homebranch and holdingbranch defined", >+ $item->itemnumber, $item->biblionumber > ); > } elsif ( not $item->homebranch ) { >- new_item( sprintf "Item with itemnumber=%s does not have homebranch defined", $item->itemnumber ); >+ new_item( >+ sprintf "Item with itemnumber=%s and biblionumber=%s does not have homebranch defined", >+ $item->itemnumber, $item->biblionumber >+ ); > } else { >- new_item( sprintf "Item with itemnumber=%s does not have holdingbranch defined", $item->itemnumber ); >+ new_item( >+ sprintf "Item with itemnumber=%s and biblionumber=%s does not have holdingbranch defined", >+ $item->itemnumber, $item->biblionumber >+ ); > } > } > if ( $items->count ) { new_hint("Edit these items and set valid homebranch and/or holdingbranch") } > } > >-{ >+sub CheckItemsAuthHeader { >+ > # No join possible, FK is missing at DB level > my @auth_types = Koha::Authority::Types->search->get_column('authtypecode'); > my $authorities = Koha::Authorities->search( { authtypecode => { 'not in' => \@auth_types } } ); >@@ -57,10 +138,10 @@ use C4::Biblio qw( GetMarcFromKohaField ); > $authority->authtypecode > ); > } >- if ( $authorities->count ) { new_hint("Go to 'Home ⺠Administration ⺠Authority types' to define them") } >+ if ( $authorities->count ) { new_hint("Go to 'Home -> Administration -> Authority types' to define them") } > } > >-{ >+sub CheckItemsStatus { > if ( C4::Context->preference('item-level_itypes') ) { > my $items_without_itype = Koha::Items->search( { -or => [ itype => undef, itype => '' ] } ); > if ( $items_without_itype->count ) { >@@ -69,14 +150,14 @@ use C4::Biblio qw( GetMarcFromKohaField ); > if ( defined $item->biblioitem->itemtype && $item->biblioitem->itemtype ne '' ) { > new_item( > sprintf >- "Item with itemnumber=%s does not have a itype value, biblio's item type will be used (%s)", >- $item->itemnumber, $item->biblioitem->itemtype >+ "Item with itemnumber=%s and biblionumber = %s does not have a itype value, biblio's item type will be used (%s)", >+ $item->itemnumber, $item->biblioitem->biblionumber, $item->biblioitem->itemtype > ); > } else { > new_item( > sprintf >- "Item with itemnumber=%s does not have a itype value, additionally no item type defined for biblionumber=%s", >- $item->itemnumber, $item->biblioitem->biblionumber >+ "Item with itemnumber=%s and biblionumber = %s does not have a itype value, additionally no item type defined for biblionumber=%s", >+ $item->itemnumber, $item->biblioitem->biblionumber, $item->biblioitem->biblionumber > ); > } > } >@@ -203,7 +284,7 @@ use C4::Biblio qw( GetMarcFromKohaField ); > } > } > >-{ >+sub CheckItemsFramework { > my @framework_codes = Koha::BiblioFrameworks->search()->get_column('frameworkcode'); > push @framework_codes, ""; # The default is not stored in frameworks, we need to force it > >@@ -268,12 +349,12 @@ use C4::Biblio qw( GetMarcFromKohaField ); > $table eq 'items' ? $i->$column > : $table eq 'biblio' ? $i->biblio->$column > : $i->biblioitem->$column; >- $output .= " {" . $i->itemnumber . " => " . $value . "}\n"; >+ $output .= " {" . $i->itemnumber . " and " . $i->biblioitem->biblionumber . " => " . $value . "}\n"; > } > new_item( > sprintf( > "The Framework *%s* is using the authorised value's category *%s*, " >- . "but the following %s do not have a value defined ({itemnumber => value }):\n%s", >+ . "but the following %s do not have a value defined ({itemnumber and biblionumber => value }):\n%s", > $frameworkcode, $av_category, $kohafield, $output > ) > ); >@@ -282,7 +363,7 @@ use C4::Biblio qw( GetMarcFromKohaField ); > } > } > >-{ >+sub CheckItemsTitle { > my $biblios = Koha::Biblios->search( > { > -or => [ >@@ -303,7 +384,7 @@ use C4::Biblio qw( GetMarcFromKohaField ); > } > } > >-{ >+sub CheckAgeForCategory { > my $aging_patrons = Koha::Patrons->search( > { > -not => { >@@ -476,26 +557,41 @@ sub new_hint { > say "=> $name"; > } > >-=head1 NAME >- >-search_for_data_inconsistencies.pl >- > =head1 SYNOPSIS > >- perl search_for_data_inconsistencies.pl >+search_for_data_inconsistencies.pl [options] > >-=head1 DESCRIPTION >+=head2 DESCRIPTION > >-Catch data inconsistencies in Koha database >+Catch data inconsistencies in Koha database: > >-* Items with undefined homebranch and/or holdingbranch >-* Authorities with undefined authtypecodes/authority types >-* Item types: >- * if item types are defined at item level (item-level_itypes=specific item), >- then items.itype must be set else biblioitems.itemtype must be set >- * Item types defined in items or biblioitems must be defined in the itemtypes table >-* Invalid MARCXML in bibliographic records >-* Patrons with invalid category types due to lower and upper age limits >+ * Items with undefined homebranch and/or holdingbranch >+ * Authorities with undefined authtypecodes/authority types >+ * Item types: >+ * if item types are defined at item level (item-level_itypes=specific item), >+ then items.itype must be set else biblioitems.itemtype must be set >+ * Item types defined in items or biblioitems must be defined in the itemtypes table >+ * Bibliographic records without a title >+ * Invalid MARCXML in bibliographic records >+ * Patrons with invalid category types due to lower and upper age limits > * Any date fields in the database (timestamp, datetime, date) set to 0000-00-00 > >+=head2 OPTIONS >+ >+ --check-branch Check for items without home or holding library >+ --check-auth Check for authority records with invalid authority type >+ --check-status Check for bibliographic records and items without an item type or with an invalid item type >+ --check-framework Check for invalid values in fields where the framework limits to an authorized value category >+ --check-title Check for bibliographic records without a title >+ --check-age Check for patrons with invalid age for category >+ --skip-branch Skip checking for items without home or holding library >+ --skip-auth Skip checking for authority records with invalid authority type >+ --skip-status Skip checking for bibliographic records and items without an item type or with an invalid item type >+ --skip-framework Skip checking for invalid values in fields where the framework limits to an authorized value category >+ --skip-title Skip checking for bibliographic records without a title >+ --skip-age Skip checking for patrons with invalid age for category >+ --help Print usage information >+ >+Note: If no options are provided, all tests will be run. >+ > =cut >-- >2.34.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 36027
:
161852
|
161953
|
161954
|
162162
|
162349
|
162351
|
162540
|
162546
|
163259
|
163956
|
166117
|
167766
|
167787
|
168953
|
168954
|
169228
|
169229
|
170847
|
170848
|
170849
|
173269
|
173270
|
173271
|
173556
|
177270
|
177283
|
177438
|
177439
|
177440
|
177441
|
177442
|
177443
|
177444
|
177849
|
177850
|
177851
|
177852
|
177853
|
177854
|
180257
|
180258
|
180259
|
180260
|
180261
|
180262