Bug 14757 - Allow the use of Template Toolkit syntax for slips and notices
[koha.git] / tools / letter.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
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 =head1 tools/letter.pl
21
22  ALGO :
23  this script use an $op to know what to do.
24  if $op is empty or none of the values listed below,
25         - the default screen is built (with all or filtered (if search string is set) records).
26         - the   user can click on add, modify or delete record.
27     - filtering is done on the code field
28  if $op=add_form
29         - if primary key (module + code) exists, this is a modification,so we read the required record
30         - builds the add/modify form
31  if $op=add_validate
32         - the user has just send data, so we create/modify the record
33  if $op=delete_form
34         - we show the record selected and ask for confirmation
35  if $op=delete_confirm
36         - we delete the designated record
37
38 =cut
39
40 # TODO This script drives the CRUD operations on the letter table
41 # The DB interaction should be handled by calls to C4/Letters.pm
42
43 use strict;
44 use warnings;
45 use CGI qw ( -utf8 );
46 use C4::Auth;
47 use C4::Context;
48 use C4::Output;
49 use C4::Branch; # GetBranches
50 use C4::Letters;
51 use C4::Members::Attributes;
52
53 # $protected_letters = protected_letters()
54 # - return a hashref of letter_codes representing letters that should never be deleted
55 sub protected_letters {
56     my $dbh = C4::Context->dbh;
57     my $codes = $dbh->selectall_arrayref(q{SELECT DISTINCT letter_code FROM message_transports});
58     return { map { $_->[0] => 1 } @{$codes} };
59 }
60
61 our $input       = new CGI;
62 my $searchfield = $input->param('searchfield');
63 my $script_name = '/cgi-bin/koha/tools/letter.pl';
64 our $branchcode  = $input->param('branchcode');
65 $branchcode = '' if defined $branchcode and $branchcode eq '*';
66 my $code        = $input->param('code');
67 my $module      = $input->param('module') || '';
68 my $content     = $input->param('content');
69 my $op          = $input->param('op') || '';
70 my $dbh = C4::Context->dbh;
71
72 our ( $template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user(
73     {
74         template_name   => 'tools/letter.tt',
75         query           => $input,
76         type            => 'intranet',
77         authnotrequired => 0,
78         flagsrequired   => { tools => 'edit_notices' },
79         debug           => 1,
80     }
81 );
82
83 our $my_branch = C4::Context->preference("IndependentBranches") && !$staffflags->{'superlibrarian'}
84   ?  C4::Context->userenv()->{'branch'}
85   : undef;
86 # we show only the TMPL_VAR names $op
87
88 $template->param(
89     independant_branch => $my_branch,
90         script_name => $script_name,
91   searchfield => $searchfield,
92     branchcode => $branchcode,
93         action => $script_name
94 );
95
96 if ( $op eq 'add_validate' or $op eq 'copy_validate' ) {
97     add_validate();
98     $op = q{}; # we return to the default screen for the next operation
99 }
100 if ($op eq 'copy_form') {
101     my $oldbranchcode = $input->param('oldbranchcode') || q||;
102     my $branchcode = $input->param('branchcode');
103     add_form($oldbranchcode, $module, $code);
104     $template->param(
105         oldbranchcode => $oldbranchcode,
106         branchcode => $branchcode,
107         branchloop => _branchloop($branchcode),
108         copying => 1,
109         modify => 0,
110     );
111 }
112 elsif ( $op eq 'add_form' ) {
113     add_form($branchcode, $module, $code);
114 }
115 elsif ( $op eq 'delete_confirm' ) {
116     delete_confirm($branchcode, $module, $code);
117 }
118 elsif ( $op eq 'delete_confirmed' ) {
119     delete_confirmed($branchcode, $module, $code);
120     $op = q{}; # next operation is to return to default screen
121 }
122 else {
123     default_display($branchcode,$searchfield);
124 }
125
126 # Do this last as delete_confirmed resets
127 if ($op) {
128     $template->param($op  => 1);
129 } else {
130     $template->param(no_op_set => 1);
131 }
132
133 output_html_with_http_headers $input, $cookie, $template->output;
134
135 sub add_form {
136     my ( $branchcode,$module, $code ) = @_;
137
138     my $letters;
139     # if code has been passed we can identify letter and its an update action
140     if ($code) {
141         $letters = C4::Letters::GetLetterTemplates(
142             {
143                 branchcode => $branchcode,
144                 module     => $module,
145                 code       => $code,
146             }
147         );
148     }
149
150     my $message_transport_types = GetMessageTransportTypes();
151     my @letter_loop;
152     if ($letters) {
153         $template->param(
154             modify     => 1,
155             code       => $code,
156             branchcode => $branchcode,
157         );
158         my $first_flag = 1;
159         # The letter name is contained into each mtt row.
160         # So we can only sent the first one to the template.
161         for my $mtt ( @$message_transport_types ) {
162             # The letter_name
163             if ( $first_flag and $letters->{$mtt}{name} ) {
164                 $template->param(
165                     letter_name=> $letters->{$mtt}{name},
166                 );
167                 $first_flag = 0;
168             }
169
170             push @letter_loop, {
171                 message_transport_type => $mtt,
172                 is_html    => $letters->{$mtt}{is_html},
173                 title      => $letters->{$mtt}{title},
174                 content    => $letters->{$mtt}{content}//'',
175             };
176         }
177     }
178     else { # initialize the new fields
179         for my $mtt ( @$message_transport_types ) {
180             push @letter_loop, {
181                 message_transport_type => $mtt,
182             }
183         }
184         $template->param(
185             branchcode => $branchcode,
186             module     => $module,
187         );
188         $template->param( adding => 1 );
189     }
190
191     $template->param(
192         letters => \@letter_loop,
193     );
194
195     my $field_selection;
196     push @{$field_selection}, add_fields('branches');
197     if ($module eq 'reserves') {
198         push @{$field_selection}, add_fields('borrowers', 'reserves', 'biblio', 'biblioitems', 'items');
199     }
200     elsif ( $module eq 'acquisition' ) {
201         push @{$field_selection}, add_fields('aqbooksellers', 'aqorders', 'biblio', 'items');
202     }
203     elsif ($module eq 'claimacquisition') {
204         push @{$field_selection}, add_fields('aqbooksellers', 'aqorders', 'biblio', 'biblioitems');
205     }
206     elsif ($module eq 'claimissues') {
207         push @{$field_selection}, add_fields('aqbooksellers', 'serial', 'subscription');
208         push @{$field_selection},
209         {
210             value => q{},
211             text => '---BIBLIO---'
212         };
213         foreach(qw(title author serial)) {
214             push @{$field_selection}, {value => "biblio.$_", text => ucfirst $_ };
215         }
216     }
217     elsif ($module eq 'serial') {
218         push @{$field_selection}, add_fields('branches', 'biblio', 'biblioitems', 'borrowers', 'subscription', 'serial');
219     }
220     elsif ($module eq 'suggestions') {
221         push @{$field_selection}, add_fields('suggestions', 'borrowers', 'biblio');
222     }
223     else {
224         push @{$field_selection}, add_fields('biblio','biblioitems'),
225             add_fields('items'),
226             {value => 'items.content', text => 'items.content'},
227             {value => 'items.fine',    text => 'items.fine'},
228             add_fields('borrowers');
229         if ($module eq 'circulation') {
230             push @{$field_selection}, add_fields('opac_news');
231
232         }
233
234         if ( $module eq 'circulation' and $code and $code eq "CHECKIN" ) {
235             push @{$field_selection}, add_fields('old_issues');
236         } else {
237             push @{$field_selection}, add_fields('issues');
238         }
239     }
240
241     $template->param(
242         module     => $module,
243         branchloop => _branchloop($branchcode),
244         SQLfieldnames => $field_selection,
245         branchcode => $branchcode,
246     );
247     return;
248 }
249
250 sub add_validate {
251     my $dbh        = C4::Context->dbh;
252     my $branchcode    = $input->param('branchcode');
253     my $module        = $input->param('module');
254     my $oldmodule     = $input->param('oldmodule');
255     my $code          = $input->param('code');
256     my $name          = $input->param('name');
257     my @mtt           = $input->multi_param('message_transport_type');
258     my @title         = $input->multi_param('title');
259     my @content       = $input->multi_param('content');
260     for my $mtt ( @mtt ) {
261         my $is_html = $input->param("is_html_$mtt");
262         my $is_tt = $input->param("is_tt_$mtt") ? 1 : 0;
263         my $title   = shift @title;
264         my $content = shift @content;
265         my $letter = C4::Letters::getletter( $oldmodule, $code, $branchcode, $mtt);
266
267         # getletter can return the default letter even if we pass a branchcode
268         # If we got the default one and we needed the specific one, we didn't get the one we needed!
269         if ( $letter and $branchcode and $branchcode ne $letter->{branchcode} ) {
270             $letter = undef;
271         }
272         unless ( $title and $content ) {
273             # Delete this mtt if no title or content given
274             delete_confirmed( $branchcode, $oldmodule, $code, $mtt );
275             next;
276         }
277         elsif ( $letter and $letter->{message_transport_type} eq $mtt ) {
278             $dbh->do(
279                 q{
280                     UPDATE letter
281                     SET branchcode = ?, module = ?, name = ?, is_html = ?, title = ?, content = ?
282                     WHERE branchcode = ? AND module = ? AND code = ? AND message_transport_type = ?
283                 },
284                 undef,
285                 $branchcode || '', $module, $name, $is_html || 0, $title, $content,
286                 $branchcode, $oldmodule, $code, $mtt
287             );
288         } else {
289             $dbh->do(
290                 q{INSERT INTO letter (branchcode,module,code,name,is_html,title,content,message_transport_type) VALUES (?,?,?,?,?,?,?,?)},
291                 undef,
292                 $branchcode || '', $module, $code, $name, $is_html || 0, $title, $content, $mtt
293             );
294         }
295     }
296     # set up default display
297     default_display($branchcode);
298     return 1;
299 }
300
301 sub delete_confirm {
302     my ($branchcode, $module, $code) = @_;
303     my $dbh = C4::Context->dbh;
304     my $letter = C4::Letters::getletter($module, $code, $branchcode);
305     my @values = values %$letter;
306     $template->param(
307         letter => $letter,
308     );
309     return;
310 }
311
312 sub delete_confirmed {
313     my ($branchcode, $module, $code, $mtt) = @_;
314     C4::Letters::DelLetter(
315         {
316             branchcode => $branchcode || '',
317             module     => $module,
318             code       => $code,
319             mtt        => $mtt
320         }
321     );
322     # setup default display for screen
323     default_display($branchcode);
324     return;
325 }
326
327 sub retrieve_letters {
328     my ($branchcode, $searchstring) = @_;
329
330     $branchcode = $my_branch if $branchcode && $my_branch;
331
332     my $dbh = C4::Context->dbh;
333     my ($sql, @where, @args);
334     $sql = "SELECT branchcode, module, code, name, branchname
335             FROM letter
336             LEFT OUTER JOIN branches USING (branchcode)
337     ";
338     if ($searchstring && $searchstring=~m/(\S+)/) {
339         $searchstring = $1 . q{%};
340         push @where, 'code LIKE ?';
341         push @args, $searchstring;
342     }
343     elsif ($branchcode) {
344         push @where, 'branchcode = ?';
345         push @args, $branchcode || '';
346     }
347     elsif ($my_branch) {
348         push @where, "(branchcode = ? OR branchcode = '')";
349         push @args, $my_branch;
350     }
351
352     $sql .= " WHERE ".join(" AND ", @where) if @where;
353     $sql .= " GROUP BY branchcode,module,code";
354     $sql .= " ORDER BY module, code, branchcode";
355
356     return $dbh->selectall_arrayref($sql, { Slice => {} }, @args);
357 }
358
359 sub default_display {
360     my ($branchcode, $searchfield) = @_;
361
362     unless ( defined $branchcode ) {
363         if ( C4::Context->preference('DefaultToLoggedInLibraryNoticesSlips') ) {
364             $branchcode = C4::Branch::mybranch();
365         }
366     }
367
368     if ( $searchfield  ) {
369         $template->param( search      => 1 );
370     }
371     my $results = retrieve_letters($branchcode,$searchfield);
372
373     my $loop_data = [];
374     my $protected_letters = protected_letters();
375     foreach my $row (@{$results}) {
376         $row->{protected} = !$row->{branchcode} && $protected_letters->{ $row->{code} };
377         push @{$loop_data}, $row;
378
379     }
380
381     $template->param(
382         letter => $loop_data,
383         branchloop => _branchloop($branchcode),
384     );
385 }
386
387 sub _branchloop {
388     my ($branchcode) = @_;
389
390     my $branches = GetBranches();
391     my @branchloop;
392     for my $thisbranch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
393         push @branchloop, {
394             value      => $thisbranch,
395             selected   => $branchcode && $thisbranch eq $branchcode,
396             branchname => $branches->{$thisbranch}->{'branchname'},
397         };
398     }
399
400     return \@branchloop;
401 }
402
403 sub add_fields {
404     my @tables = @_;
405     my @fields = ();
406
407     for my $table (@tables) {
408         push @fields, get_columns_for($table);
409
410     }
411     return @fields;
412 }
413
414 sub get_columns_for {
415     my $table = shift;
416 # FIXME untranslatable
417     my %column_map = (
418         aqbooksellers => '---BOOKSELLERS---',
419         aqorders      => '---ORDERS---',
420         serial        => '---SERIALS---',
421         reserves      => '---HOLDS---',
422         suggestions   => '---SUGGESTIONS---',
423     );
424     my @fields = ();
425     if (exists $column_map{$table} ) {
426         push @fields, {
427             value => q{},
428             text  => $column_map{$table} ,
429         };
430     }
431     else {
432         my $tlabel = '---' . uc $table;
433         $tlabel.= '---';
434         push @fields, {
435             value => q{},
436             text  => $tlabel,
437         };
438     }
439
440     my $sql = "SHOW COLUMNS FROM $table";# TODO not db agnostic
441     my $table_prefix = $table . q|.|;
442     my $rows = C4::Context->dbh->selectall_arrayref($sql, { Slice => {} });
443     for my $row (@{$rows}) {
444         next if $row->{'Field'} eq 'timestamp'; # this is really an irrelevant field and there may be other common fields that should be excluded from the list
445         push @fields, {
446             value => $table_prefix . $row->{Field},
447             text  => $table_prefix . $row->{Field},
448         }
449     }
450     if ($table eq 'borrowers') {
451         if ( my $attributes = C4::Members::Attributes::GetAttributes() ) {
452             foreach (@$attributes) {
453                 push @fields, {
454                     value => "borrower-attribute:$_",
455                     text  => "attribute:$_",
456                 }
457             }
458         }
459     }
460     return @fields;
461 }