3 # Copyright 2009 Biblibre SARL
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
23 use List
::MoreUtils
qw(first_value any);
25 use C4
::Dates
qw(format_date_in_iso);
29 use vars
qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS);
32 # set the version for version checking
43 %EXPORT_TAGS = ( all
=>[qw( InsertInTable DeleteInTable SearchInTable UpdateInTable GetPrimaryKeys)]
52 C4::SQLHelper - Perl Module containing convenience functions for SQL Handling
60 This module contains routines for adding, modifying and Searching Data in MysqlDB
73 $hashref = &SearchInTable($tablename,$data, $orderby, $limit, $columns_out, $filtercolumns, $searchtype);
77 $tablename Name of the table (string)
82 - data_hashref : will be considered as an AND of all the data searched
84 - data_array_ref on hashrefs : Will be considered as an OR of Datahasref elements
86 $orderby is an arrayref of hashref with fieldnames as key and 0 or 1 as values (ASCENDING or DESCENDING order)
88 $limit is an array ref on 2 values in order to limit results to MIN..MAX
90 $columns_out is an array ref on field names is used to limit results on those fields (* by default)
92 $filtercolums is an array ref on field names : is used to limit expansion of research for strings
94 $searchtype is string Can be "start_with" or "exact"
99 my ($tablename,$filters,$orderby, $limit, $columns_out, $filter_columns,$searchtype) = @_;
100 $searchtype||="exact";
101 my $dbh = C4
::Context
->dbh;
102 $columns_out||=["*"];
103 my $sql = do { local $"=', ';
104 qq{ SELECT @$columns_out from $tablename}
108 my ($keys,$values)=_filter_fields($tablename,$filters,$searchtype,$filter_columns);
110 my @criteria=grep{defined($_) && $_ !~/^\W$/ }@$keys;
112 $sql.= do { local $"=') AND (';
113 qq{ WHERE
(@criteria) }
118 #Order by desc by default
120 foreach my $order (@
$orderby){
121 push @orders,map{ "$_".($order->{$_}?
" DESC " : "") } keys %$order;
123 $sql.= do { local $"=', ';
124 qq{ ORDER BY @orders}
128 $sql.=qq{ LIMIT }.join(",",@$limit);
131 $debug && $values && warn $sql," ",join(",",@$values);
132 $sth = $dbh->prepare_cached($sql);
133 eval{$sth->execute(@$values)};
134 warn $@ if ($@ && $debug);
135 my $results = $sth->fetchall_arrayref( {} );
143 $data_id_in_table = &InsertInTable($tablename,$data_hashref,$withprimarykeys);
148 and returns the id of the row inserted
152 my ($tablename,$data,$withprimarykeys) = @_;
153 my $dbh = C4::Context->dbh;
154 my ($keys,$values)=_filter_hash($tablename,$data,($withprimarykeys?"exact
":0));
155 my $query = qq{ INSERT INTO $tablename SET }.join(", ",@$keys);
157 $debug && warn $query, join(",",@$values);
158 my $sth = $dbh->prepare_cached($query);
159 eval{$sth->execute(@$values)};
160 warn $@ if ($@ && $debug);
162 return $dbh->last_insert_id(undef, undef, $tablename, undef);
169 $status = &UpdateInTable($tablename,$data_hashref);
174 and returns the status of the operation
178 my ($tablename,$data) = @_;
179 my @field_ids=GetPrimaryKeys($tablename);
180 my @ids=@$data{@field_ids};
181 my $dbh = C4::Context->dbh;
182 my ($keys,$values)=_filter_hash($tablename,$data,0);
184 qq{ UPDATE $tablename
185 SET }.join(",",@$keys).qq{
186 WHERE }.join (" AND
",map{ "$_=?
" }@field_ids);
187 $debug && warn $query, join(",",@$values,@ids);
189 my $sth = $dbh->prepare_cached($query);
191 eval{$result=$sth->execute(@$values,@ids)};
192 warn $@ if ($@ && $debug);
200 $status = &DeleteInTable($tablename,$data_hashref);
205 and returns the status of the operation
209 my ($tablename,$data) = @_;
210 my $dbh = C4::Context->dbh;
211 my ($keys,$values)=_filter_fields($tablename,$data,1);
213 my $query = do { local $"=') AND (';
214 qq{ DELETE FROM
$tablename WHERE
(@
$keys)};
216 $debug && warn $query, join(",",@
$values);
217 my $sth = $dbh->prepare_cached($query);
219 eval{$result=$sth->execute(@
$values)};
220 warn $@
if ($@
&& $debug);
225 =head2 GetPrimaryKeys
229 @primarykeys = &GetPrimaryKeys($tablename)
233 Get the Primary Key field names of the table
236 sub GetPrimaryKeys
($) {
238 my $hash_columns=_get_columns
($tablename);
239 return grep { $hash_columns->{$_}->{'Key'} =~/PRI/i} keys %$hash_columns;
246 _get_columns($tablename)
251 Returns a hashref of all the fieldnames of the table
259 sub _get_columns
($) {
261 my $dbh=C4
::Context
->dbh;
262 my $sth=$dbh->prepare_cached(qq{SHOW COLUMNS FROM
$tablename });
264 my $columns= $sth->fetchall_hashref(qw(Field));
267 =head2 _filter_columns
271 _filter_columns($tablename,$research, $filtercolumns)
277 - indicator on purpose whether all fields should be returned or only non Primary keys
278 - array_ref to columns to limit to
280 Returns an array of all the fieldnames of the table
281 If it is not for research purpose, filter primary keys
285 sub _filter_columns
($$;$) {
286 my ($tablename,$research, $filtercolumns)=@_;
288 return (@
$filtercolumns);
291 my $columns=_get_columns
($tablename);
293 return keys %$columns;
296 return grep {my $column=$_; any
{$_ ne $column }GetPrimaryKeys
($tablename) } keys %$columns;
300 =head2 _filter_fields
310 - a string or a hashref (containing, fieldnames and datatofilter) or an arrayref to one of those elements
311 - an indicator of operation whether it is a wide research or a narrow one
312 - an array ref to columns to restrict string filter to.
314 Returns a ref of key array to use in SQL functions
315 and a ref to value array
320 my ($tablename,$filter_input,$searchtype,$filtercolumns)=@_;
323 if (ref($filter_input) eq "HASH"){
324 my ($keys, $values) = _filter_hash
($tablename,$filter_input, $searchtype);
326 my $stringkey="(".join (") AND (",@
$keys).")";
327 return [$stringkey],$values;
332 } elsif (ref($filter_input) eq "ARRAY"){
333 foreach my $element_data (@
$filter_input){
334 my ($localkeys,$localvalues)=_filter_fields
($tablename,$element_data,$searchtype,$filtercolumns);
336 @
$localkeys=grep{defined($_) && $_ !~/^\W*$/}@
$localkeys;
342 push @values, @$localvalues;
347 $debug && warn "filterstring
: $filter_input";
348 my ($keys, $values) = _filter_string($tablename,$filter_input, $searchtype,$filtercolumns);
350 my $stringkey="(".join (") AND
(",@$keys).")";
351 return [$stringkey],$values;
358 return (\@keys,\@values);
362 my ($tablename,$filter_input, $searchtype)=@_;
364 my $columns= _get_columns($tablename);
365 my @columns_filtered= _filter_columns($tablename,$searchtype);
367 #Filter Primary Keys of table
368 my $elements=join "|",@columns_filtered;
369 foreach my $field (grep {/\b($elements)\b/} keys %$filter_input){
370 ## supposed to be a hash of simple values, hashes of arrays could be implemented
371 $filter_input->{$field}=format_date_in_iso($filter_input->{$field}) if ($columns->{$field}{Type}=~/date/ && $filter_input->{$field} !~C4::Dates->regexp("iso
"));
372 my ($tmpkeys, $localvalues)=_Process_Operands($filter_input->{$field},"$tablename.$field",$searchtype,$columns);
374 push @values, @$localvalues;
375 push @keys, @$tmpkeys;
379 return (\@keys,\@values);
387 my ($tablename,$filter_input, $searchtype,$filtercolumns)=@_;
388 return () unless($filter_input);
389 my @operands=split / /,$filter_input;
390 my @columns_filtered= _filter_columns($tablename,$searchtype,$filtercolumns);
391 my $columns= _get_columns($tablename);
393 foreach my $operand (@operands){
395 foreach my $field (@columns_filtered){
396 my ($tmpkeys, $localvalues)=_Process_Operands($operand,"$tablename.$field",$searchtype,$columns);
398 push @values,@$localvalues;
399 push @localkeys,@$tmpkeys;
402 my $sql= join (' OR ', @localkeys);
407 return (\@keys,\@values);
413 sub _Process_Operands{
414 my ($operand, $field, $searchtype,$columns)=@_;
418 push @tmpkeys, " $field = ?
";
419 push @values, $operand;
420 #By default, exact search
421 if (!$searchtype ||$searchtype eq "exact
"){
422 return \@tmpkeys,\@values;
424 my $col_field=(index($field,".")>0?substr($field, index($field,".")+1):$field);
425 if ($field=~/(?<!zip)code|(?<!card)number/ && $searchtype ne "exact
"){
426 push @tmpkeys,(" $field= '' ","$field IS NULL
");
428 if ($columns->{$col_field}->{Type}=~/varchar|text/i){
429 my @localvaluesextended;
430 if ($searchtype eq "contain
"){
431 push @tmpkeys,(" $field LIKE ?
");
432 push @localvaluesextended,("\
%$operand\
%") ;
434 if ($searchtype eq "field_start_with
"){
435 push @tmpkeys,("$field LIKE ?
");
436 push @localvaluesextended, ("$operand\
%") ;
438 if ($searchtype eq "start_with
"){
439 push @tmpkeys,("$field LIKE ?
","$field LIKE ?
");
440 push @localvaluesextended, ("$operand\
%", " $operand\
%") ;
442 push @values,@localvaluesextended;
444 push @localkeys,qq{ (}.join(" OR
",@tmpkeys).qq{) };
445 return (\@localkeys,\@values);