DBRev 24.06.00.000: Start of a new release cycle
[koha.git] / admin / preferences.pl
1 #!/usr/bin/perl
2 #
3 # Copyright 2009 Jesse Weaver and the Koha Dev Team
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 use CGI qw ( -utf8 );
23 use C4::Auth qw( get_template_and_user );
24 use C4::Context;
25 use C4::Koha qw( getallthemes );
26 use C4::Languages qw( getTranslatedLanguages );
27 use C4::ClassSource qw( GetClassSources GetClassSource );
28 use C4::Output qw( output_html_with_http_headers output_and_exit_if_error );
29 use C4::Templates;
30 use Koha::Acquisition::Currencies;
31 use Koha::Database::Columns;
32 use IO::File;
33 use YAML::XS;
34 use Encode;
35 use List::MoreUtils qw( any );
36
37 sub GetTab {
38     my ( $input, $tab ) = @_;
39
40     my $tab_template = C4::Templates::gettemplate( 'admin/preferences/' . $tab . '.pref', 'intranet', $input );
41
42     my $active_currency = Koha::Acquisition::Currencies->get_active;
43     my $local_currency;
44     if ($active_currency) {
45         $local_currency = $active_currency->currency;
46     }
47     $tab_template->param(
48         local_currency => $local_currency, # currency code is used, because we do not know how a given currency is formatted.
49     );
50
51     return YAML::XS::Load( Encode::encode_utf8($tab_template->output()));
52 }
53
54 sub _get_chunk {
55     my ( $value, %options ) = @_;
56
57     my $name = $options{'pref'};
58     my $chunk = { name => $name, value => $value, type => $options{'type'} || 'input', class => $options{'class'} };
59     if( $options{'syntax'} ){
60         $chunk->{'syntax'} = $options{'syntax'};
61     }
62     if ( $options{'type'} ) {
63         if ( $options{'type'} eq 'modalselect' ) {
64             $chunk->{'source'}     = $options{'source'};
65             $chunk->{'exclusions'} = $options{'exclusions'} // "";
66             $chunk->{'inclusions'} = $options{'inclusions'} // "";
67             $chunk->{'required'}   = $options{'required'} // "";
68             $chunk->{'type'}       = 'modalselect';
69         } elsif ( $options{'type'} eq 'modaljs' ) {
70             $chunk->{'type'}      = 'modaljs';
71             $chunk->{'initiator'} = $options{'initiator'};
72             $chunk->{'processor'} = $options{'processor'};
73         }
74     }
75
76     if ( $options{'class'} && $options{'class'} eq 'password' ) {
77         $chunk->{'input_type'} = 'password';
78     } elsif ( $options{'class'} && $options{'class'} eq 'email' ) {
79         $chunk->{'input_type'} = 'email';
80     } elsif ( $options{'class'} && $options{'class'} eq 'date' ) {
81         $chunk->{'dateinput'} = 1;
82     } elsif ( $options{'type'} && ( $options{'type'} eq 'opac-languages' || $options{'type'} eq 'staff-languages' ) ) {
83         my $current_languages = { map { +$_, 1 } split( /\s*,\s*/, $value ) };
84
85         my $theme;
86         my $interface;
87         if ( $options{'type'} eq 'opac-languages' ) {
88             # this is the OPAC
89             $interface = 'opac';
90             $theme     = C4::Context->preference('opacthemes');
91         } else {
92             # this is the staff interface
93             $interface = 'intranet';
94             $theme     = C4::Context->preference('template');
95         }
96         $chunk->{'languages'} = getTranslatedLanguages( $interface, $theme, undef, $current_languages );
97         $chunk->{'type'} = 'languages';
98     } elsif ( $options{ 'choices' } ) {
99         my $add_blank;
100         if ( $options{'choices'} && ref( $options{ 'choices' } ) eq '' ) {
101             if ( $options{'choices'} eq 'class-sources' ) {
102                 my $sources = GetClassSources();
103                 $options{'choices'} = { map { $_ => $sources->{$_}->{'description'} } keys %$sources };
104             } elsif ( $options{'choices'} eq 'opac-templates' ) {
105                 $options{'choices'} = { map { $_ => $_ } getallthemes( 'opac' ) }
106             } elsif ( $options{'choices'} eq 'staff-templates' ) {
107                 $options{'choices'} = { map { $_ => $_ } getallthemes( 'intranet' ) }
108             } elsif ( $options{choices} eq 'patron-categories' ) {
109                 $options{choices} = { map { $_->categorycode => $_->description } Koha::Patron::Categories->search->as_list };
110                 $add_blank = 1;
111             } elsif ( $options{'choices'} eq 'authval' ){
112                 if( $options{'source'} ){
113                     $options{'choices'} = { map { $_->authorised_value => $_->lib } Koha::AuthorisedValues->search( { category => $options{'source'} } )->as_list };
114                     $add_blank = 1;
115                 }
116             } else {
117                 die 'Unrecognized source of preference values: ' . $options{'choices'};
118             }
119         }
120
121         $value ||= 0;
122
123         $chunk->{'type'} = ( $options{class} && $options{class} eq 'multiple' ) ? 'multiple' : 'select';
124
125         my @values;
126         @values = split /,/, $value if defined($value);
127         $chunk->{'CHOICES'} = [
128             sort { $a->{'text'} cmp $b->{'text'} }
129             map {
130                 my $c = $_;
131                 {
132                     text     => $options{'choices'}->{$c},
133                     value    => $c,
134                     selected => (
135                         grep { $_ eq $c || ( $c eq '' && ($value eq '0' || !$value ) ) } @values
136                     ) ? 1 : 0,
137                 }
138               }
139             keys %{ $options{'choices'} }
140         ];
141
142         # Add a first blank value if needed
143         unshift @{ $chunk->{CHOICES} }, {
144             text  => '',
145             value => '',
146         } if $add_blank && $chunk->{type} eq 'select';
147
148     } elsif ( $options{'multiple'} ) {
149         my @values;
150         @values = split /,/, $value if defined($value);
151         $chunk->{type}    = 'multiple';
152         $chunk->{CHOICES} = [
153             sort { $a->{'text'} cmp $b->{'text'} }
154               map {
155                 my $option_value = $_;
156                 {
157                     text     => $options{multiple}->{$option_value},
158                     value    => $option_value,
159                     selected => (grep { $_ eq $option_value } @values) ? 1 : 0,
160                 }
161               }
162               keys %{ $options{multiple} }
163         ];
164     }
165
166     $chunk->{ 'type_' . $chunk->{'type'} } = 1;
167
168     return $chunk;
169 }
170
171 sub TransformPrefsToHTML {
172     my ( $data, $searchfield ) = @_;
173
174     my @lines;
175     my $dbh = C4::Context->dbh;
176     my $title = ( keys( %$data ) )[0];
177     my $tab = $data->{ $title };
178     $tab = { '' => $tab } if ( ref( $tab ) eq 'ARRAY' );
179
180     my @override_syspref_names;
181     if ( exists($ENV{OVERRIDE_SYSPREF_NAMES}) &&
182          defined($ENV{OVERRIDE_SYSPREF_NAMES})
183        ) {
184         @override_syspref_names = split /,/, $ENV{OVERRIDE_SYSPREF_NAMES};
185     }
186
187     foreach my $group ( sort keys %$tab ) {
188         if ( $group ) {
189             push @lines, { is_group_title => 1, title => $group };
190         }
191
192         foreach my $line ( @{ $tab->{ $group } } ) {
193             my @chunks;
194             my @names;
195             my @warnings;
196
197             foreach my $piece ( @$line ) {
198                 if ( ref ( $piece ) eq 'HASH' ) {
199                     my $name = $piece->{'pref'};
200
201                     if ( $name ) {
202                         my $row = $dbh->selectrow_hashref( "SELECT value, type FROM systempreferences WHERE variable = ?", {}, $name );
203                         my $value;
204                         if ( ( !defined( $row ) || ( !defined( $row->{'value'} ) && $row->{'type'} ne 'YesNo' ) ) && defined( $piece->{'default'} ) ) {
205                             $value = $piece->{'default'};
206                         } else {
207                             $value = $row->{'value'};
208                         }
209                         my $chunk = _get_chunk( $value, %$piece );
210
211                         # No highlighting of inputs yet, but would be useful
212                         $chunk->{'highlighted'} = 1 if ( $searchfield && $name =~ /^$searchfield$/i );
213
214                         if ( $name eq 'Pseudonymization' && ! C4::Context->config('bcrypt_settings')) {
215                             push @warnings, 'bcrypt_config_not_set';
216                             $chunk->{disabled} = 1 unless $value; # Let disable if enabled
217                         }
218                         push @chunks, $chunk;
219
220                         my $name_entry = { name => $name };
221                         if ( $searchfield ) {
222                             if ( $name =~ /^$searchfield$/i ) {
223                                 $name_entry->{'jumped'} = 1;
224                             } elsif ( $name =~ /$searchfield/i ) {
225                                 $name_entry->{'highlighted'} = 1;
226                             }
227                         }
228                         $name_entry->{'overridden'} = 1 if ( any { $name eq $_ } @override_syspref_names );
229
230                         push @names, $name_entry;
231                     } else {
232                         push @chunks, $piece;
233                     }
234                 } else {
235                     if ( $piece ) {
236                         my $version = Koha::version();
237                         my ( $major, $minor, $maintenance, $development ) = split( '\.', $version );
238                         if ( $minor % 2 ) {
239                             $piece =~ s|__VERSION__|${major}_${minor}|g;
240                         } else {
241                             $piece =~ s|__VERSION__|master|g;
242                         }
243                     }
244                     push @chunks, { type_text => 1, contents => $piece };
245                 }
246             }
247             push @lines, { CHUNKS => \@chunks, NAMES => \@names, WARNINGS => \@warnings, is_group_title => 0 };
248         }
249     }
250
251     return $title, \@lines;
252 }
253
254 sub _get_pref_files {
255     my ( $input, $open_files ) = @_;
256
257     my ( $htdocs, $theme, $lang, undef ) = C4::Templates::_get_template_file( 'admin/preferences/admin.pref', 'intranet', $input );
258
259     my %results;
260
261     foreach my $file ( glob( "$htdocs/$theme/$lang/modules/admin/preferences/*.pref" ) ) {
262         my ( $tab ) = ( $file =~ /([a-z0-9_-]+)\.pref$/ );
263
264         $results{$tab} = $open_files ? IO::File->new( $file, 'r' ) : '';
265     }
266
267     return %results;
268 }
269
270 sub SearchPrefs {
271     my ( $input, $searchfield ) = @_;
272     my @tabs;
273
274     my %tab_files = _get_pref_files( $input );
275     our @terms = split( /\s+/, $searchfield );
276
277     foreach my $tab_name ( sort keys %tab_files ) {
278         # FIXME Hum?
279         # Force list context to remove 'uninitialized value in goto' warn coming from YAML::Syck; note that the other GetTab call is in list context too. The actual cause however is the null value for the pref OpacRenewalBranch in opac.pref
280         my ($data) = GetTab( $input, $tab_name );
281         my $title = ( keys( %$data ) )[0];
282         my $tab = $data->{ $title };
283         $tab = { '' => $tab } if ( ref( $tab ) eq 'ARRAY' );
284
285         my $matched_groups;
286
287         while ( my ( $group_title, $contents ) = each %$tab ) {
288             if ( matches( $group_title, \@terms ) ) {
289                 $matched_groups->{$group_title} = $contents;
290                 next;
291             }
292
293             my @new_contents;
294
295             foreach my $line ( @$contents ) {
296                 my $matched;
297
298                 foreach my $piece ( @$line ) {
299                     if ( ref( $piece ) eq 'HASH' ) {
300                         if ( !$piece->{'pref'} ){
301                             next;
302                         }
303                         if ( matches( $piece->{'pref'}, \@terms) ) {
304                             $matched = 1;
305                         } elsif ( ref( $piece->{'choices'} ) eq 'HASH' && grep( { $_ && matches( $_, \@terms ) } values( %{ $piece->{'choices'} } ) ) ) {
306                             $matched = 1;
307                         }
308                     } elsif ( matches( $piece, \@terms ) ) {
309                         $matched = 1;
310                     }
311                     last if ( $matched );
312                 }
313
314                 push @new_contents, $line if ( $matched );
315             }
316
317             $matched_groups->{$group_title} = \@new_contents if ( @new_contents );
318         }
319
320         if ( $matched_groups ) {
321             my ( $title, $LINES ) = TransformPrefsToHTML( { $title => $matched_groups }, $searchfield );
322
323             push @tabs, { tab => $tab, tab_title => $title, LINES => $LINES, tab_id => $tab_name };
324         }
325     }
326
327     return @tabs;
328 }
329
330 sub matches {
331     my ( $text, $terms ) = @_;
332     if ( $text ) {
333         return !grep(
334             {
335                 my $re = eval{qr|$_|i};
336                 $re = qr|\Q$_\E| if $@;
337                 $text !~ m|$re|;
338             } @$terms
339         )
340     }
341 }
342
343 my $dbh = C4::Context->dbh;
344 our $input = CGI->new;
345
346 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
347     {   template_name   => "admin/preferences.tt",
348         query           => $input,
349         type            => "intranet",
350         flagsrequired   => { parameters => 'manage_sysprefs' },
351     }
352 );
353
354 my $op = $input->param( 'op' ) || '';
355 my $tab = $input->param( 'tab' );
356 $tab ||= 'accounting'; # Ideally this should be "local-use" but preferences.pl
357                          # does not presently support local use preferences
358
359 my $highlighted;
360
361 if ( $op eq 'cud-save' ) {
362     output_and_exit_if_error($input, $cookie, $template, { check => 'csrf_token' });
363     foreach my $param ( $input->param() ) {
364         my ( $pref ) = ( $param =~ /pref_(.*)/ );
365
366         next if ( !defined( $pref ) );
367
368         my $value = join( ',', $input->param( $param ) );
369
370         C4::Context->set_preference( $pref, $value );
371     }
372
373     print $input->redirect( '/cgi-bin/koha/admin/preferences.pl?tab=' . $tab );
374     exit;
375 }
376
377 my @TABS;
378
379 if ( $op eq 'search' ) {
380     my $searchfield = $input->param( 'searchfield' );
381
382     $searchfield =~ s/\p{IsC}//g;
383     $searchfield =~ s/\s+/ /;
384     $searchfield =~ s/^\s+//;
385     $searchfield =~ s/\s+$//;
386
387     $template->param( searchfield => $searchfield );
388
389     @TABS = SearchPrefs( $input, $searchfield );
390
391     foreach my $tabh ( @TABS ) {
392         $template->param(
393             $tabh->{'tab'} => 1
394         );
395     }
396
397     if ( @TABS ) {
398         $tab = ''; # No need to load a particular tab, as we found results
399         $template->param( search_jumped => 1 ) if ( $TABS[0]->{'search_jumped'} );
400     } else {
401         $template->param(
402             search_not_found => 1,
403         );
404     }
405 }
406
407 if ( $tab ) {
408     my ( $tab_title, $LINES ) = TransformPrefsToHTML( GetTab( $input, $tab ), $highlighted );
409
410     push @TABS, { tab_title => $tab_title, LINES => $LINES, tab_id => $tab };
411     $template->param(
412         $tab => 1,
413         tab => $tab,
414     );
415 }
416
417 $template->param(
418     TABS => \@TABS,
419     db_columns => Koha::Database::Columns->columns,
420 );
421
422 output_html_with_http_headers $input, $cookie, $template->output;