Bug 13972: Include fields from subscription and serial table in serial notification...
[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 my $code        = $input->param('code');
66 my $module      = $input->param('module') || '';
67 my $content     = $input->param('content');
68 my $op          = $input->param('op') || '';
69 my $dbh = C4::Context->dbh;
70
71 our ( $template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user(
72     {
73         template_name   => 'tools/letter.tt',
74         query           => $input,
75         type            => 'intranet',
76         authnotrequired => 0,
77         flagsrequired   => { tools => 'edit_notices' },
78         debug           => 1,
79     }
80 );
81
82 our $my_branch = C4::Context->preference("IndependentBranches") && !$staffflags->{'superlibrarian'}
83   ?  C4::Context->userenv()->{'branch'}
84   : undef;
85 # we show only the TMPL_VAR names $op
86
87 $template->param(
88     independant_branch => $my_branch,
89         script_name => $script_name,
90   searchfield => $searchfield,
91     branchcode => $branchcode,
92         action => $script_name
93 );
94
95 if ( $op eq 'add_validate' or $op eq 'copy_validate' ) {
96     add_validate();
97     $op = q{}; # we return to the default screen for the next operation
98 }
99 if ($op eq 'copy_form') {
100     my $oldbranchcode = $input->param('oldbranchcode') || q||;
101     my $branchcode = $input->param('branchcode') || q||;
102     add_form($oldbranchcode, $module, $code);
103     $template->param(
104         oldbranchcode => $oldbranchcode,
105         branchcode => $branchcode,
106         branchloop => _branchloop($branchcode),
107         copying => 1,
108         modify => 0,
109     );
110 }
111 elsif ( $op eq 'add_form' ) {
112     add_form($branchcode, $module, $code);
113 }
114 elsif ( $op eq 'delete_confirm' ) {
115     delete_confirm($branchcode, $module, $code);
116 }
117 elsif ( $op eq 'delete_confirmed' ) {
118     delete_confirmed($branchcode, $module, $code);
119     $op = q{}; # next operation is to return to default screen
120 }
121 else {
122     default_display($branchcode,$searchfield);
123 }
124
125 # Do this last as delete_confirmed resets
126 if ($op) {
127     $template->param($op  => 1);
128 } else {
129     $template->param(no_op_set => 1);
130 }
131
132 output_html_with_http_headers $input, $cookie, $template->output;
133
134 sub add_form {
135     my ( $branchcode,$module, $code ) = @_;
136
137     my $letters;
138     # if code has been passed we can identify letter and its an update action
139     if ($code) {
140         $letters = C4::Letters::GetLetterTemplates(
141             {
142                 branchcode => $branchcode,
143                 module     => $module,
144                 code       => $code,
145             }
146         );
147     }
148
149     my $message_transport_types = GetMessageTransportTypes();
150     my @letter_loop;
151     if ($letters) {
152         $template->param(
153             modify     => 1,
154             code       => $code,
155             branchcode => $branchcode,
156         );
157         my $first_flag = 1;
158         # The letter name is contained into each mtt row.
159         # So we can only sent the first one to the template.
160         for my $mtt ( @$message_transport_types ) {
161             # The letter_name
162             if ( $first_flag and $letters->{$mtt}{name} ) {
163                 $template->param(
164                     letter_name=> $letters->{$mtt}{name},
165                 );
166                 $first_flag = 0;
167             }
168
169             push @letter_loop, {
170                 message_transport_type => $mtt,
171                 is_html    => $letters->{$mtt}{is_html},
172                 title      => $letters->{$mtt}{title},
173                 content    => $letters->{$mtt}{content}//'',
174             };
175         }
176     }
177     else { # initialize the new fields
178         for my $mtt ( @$message_transport_types ) {
179             push @letter_loop, {
180                 message_transport_type => $mtt,
181             }
182         }
183         $template->param(
184             branchcode => $branchcode,
185             module     => $module,
186         );
187         $template->param( adding => 1 );
188     }
189
190     $template->param(
191         letters => \@letter_loop,
192     );
193
194     my $field_selection;
195     push @{$field_selection}, add_fields('branches');
196     if ($module eq 'reserves') {
197         push @{$field_selection}, add_fields('borrowers', 'reserves', 'biblio', 'items');
198     }
199     elsif ( $module eq 'acquisition' ) {
200         push @{$field_selection}, add_fields('aqbooksellers', 'aqorders', 'biblio', 'items');
201     }
202     elsif ($module eq 'claimacquisition') {
203         push @{$field_selection}, add_fields('aqbooksellers', 'aqorders', 'biblio', 'biblioitems');
204     }
205     elsif ($module eq 'claimissues') {
206         push @{$field_selection}, add_fields('aqbooksellers', 'serial', 'subscription');
207         push @{$field_selection},
208         {
209             value => q{},
210             text => '---BIBLIO---'
211         };
212         foreach(qw(title author serial)) {
213             push @{$field_selection}, {value => "biblio.$_", text => ucfirst $_ };
214         }
215     }
216     elsif ($module eq 'serial') {
217         push @{$field_selection}, add_fields('branches', 'biblio', 'biblioitems', 'borrowers', 'subscription', 'serial');
218     }
219     elsif ($module eq 'suggestions') {
220         push @{$field_selection}, add_fields('suggestions', 'borrowers', 'biblio');
221     }
222     else {
223         push @{$field_selection}, add_fields('biblio','biblioitems'),
224             add_fields('items'),
225             {value => 'items.content', text => 'items.content'},
226             {value => 'items.fine',    text => 'items.fine'},
227             add_fields('borrowers');
228         if ($module eq 'circulation') {
229             push @{$field_selection}, add_fields('opac_news');
230
231         }
232
233         if ( $module eq 'circulation' and $code and $code eq "CHECKIN" ) {
234             push @{$field_selection}, add_fields('old_issues');
235         } else {
236             push @{$field_selection}, add_fields('issues');
237         }
238     }
239
240     $template->param(
241         module     => $module,
242         branchloop => _branchloop($branchcode),
243         SQLfieldnames => $field_selection,
244     );
245     return;
246 }
247
248 sub add_validate {
249     my $dbh        = C4::Context->dbh;
250     my $branchcode    = $input->param('branchcode') || '';
251     my $module        = $input->param('module');
252     my $oldmodule     = $input->param('oldmodule');
253     my $code          = $input->param('code');
254     my $name          = $input->param('name');
255     my @mtt           = $input->param('message_transport_type');
256     my @title         = $input->param('title');
257     my @content       = $input->param('content');
258     for my $mtt ( @mtt ) {
259         my $is_html = $input->param("is_html_$mtt");
260         my $title   = shift @title;
261         my $content = shift @content;
262         my $letter = C4::Letters::getletter( $oldmodule, $code, $branchcode, $mtt);
263
264         # getletter can return the default letter even if we pass a branchcode
265         # If we got the default one and we needed the specific one, we didn't get the one we needed!
266         if ( $letter and $branchcode ne $letter->{branchcode} ) {
267             $letter = undef;
268         }
269         unless ( $title and $content ) {
270             # Delete this mtt if no title or content given
271             delete_confirmed( $branchcode, $oldmodule, $code, $mtt );
272             next;
273         }
274         elsif ( $letter and $letter->{message_transport_type} eq $mtt ) {
275             $dbh->do(
276                 q{
277                     UPDATE letter
278                     SET branchcode = ?, module = ?, name = ?, is_html = ?, title = ?, content = ?
279                     WHERE branchcode = ? AND module = ? AND code = ? AND message_transport_type = ?
280                 },
281                 undef,
282                 $branchcode, $module, $name, $is_html || 0, $title, $content,
283                 $branchcode, $oldmodule, $code, $mtt
284             );
285         } else {
286             $dbh->do(
287                 q{INSERT INTO letter (branchcode,module,code,name,is_html,title,content,message_transport_type) VALUES (?,?,?,?,?,?,?,?)},
288                 undef,
289                 $branchcode, $module, $code, $name, $is_html || 0, $title, $content, $mtt
290             );
291         }
292     }
293     # set up default display
294     default_display($branchcode);
295     return 1;
296 }
297
298 sub delete_confirm {
299     my ($branchcode, $module, $code) = @_;
300     my $dbh = C4::Context->dbh;
301     my $letter = C4::Letters::getletter($module, $code, $branchcode);
302     my @values = values %$letter;
303     $template->param(
304         letter => $letter,
305     );
306     return;
307 }
308
309 sub delete_confirmed {
310     my ($branchcode, $module, $code, $mtt) = @_;
311     C4::Letters::DelLetter(
312         {
313             branchcode => $branchcode,
314             module     => $module,
315             code       => $code,
316             mtt        => $mtt
317         }
318     );
319     # setup default display for screen
320     default_display($branchcode);
321     return;
322 }
323
324 sub retrieve_letters {
325     my ($branchcode, $searchstring) = @_;
326
327     $branchcode = $my_branch if $branchcode && $my_branch;
328
329     my $dbh = C4::Context->dbh;
330     my ($sql, @where, @args);
331     $sql = "SELECT branchcode, module, code, name, branchname
332             FROM letter
333             LEFT OUTER JOIN branches USING (branchcode)
334     ";
335     if ($searchstring && $searchstring=~m/(\S+)/) {
336         $searchstring = $1 . q{%};
337         push @where, 'code LIKE ?';
338         push @args, $searchstring;
339     }
340     elsif ($branchcode) {
341         push @where, 'branchcode = ?';
342         push @args, $branchcode || '';
343     }
344     elsif ($my_branch) {
345         push @where, "(branchcode = ? OR branchcode = '')";
346         push @args, $my_branch;
347     }
348
349     $sql .= " WHERE ".join(" AND ", @where) if @where;
350     $sql .= " GROUP BY branchcode,module,code";
351     $sql .= " ORDER BY module, code, branchcode";
352
353     return $dbh->selectall_arrayref($sql, { Slice => {} }, @args);
354 }
355
356 sub default_display {
357     my ($branchcode, $searchfield) = @_;
358
359     if ( $searchfield  ) {
360         $template->param( search      => 1 );
361     }
362     my $results = retrieve_letters($branchcode,$searchfield);
363
364     my $loop_data = [];
365     my $protected_letters = protected_letters();
366     foreach my $row (@{$results}) {
367         $row->{protected} = !$row->{branchcode} && $protected_letters->{ $row->{code} };
368         push @{$loop_data}, $row;
369
370     }
371
372     $template->param(
373         letter => $loop_data,
374         branchloop => _branchloop($branchcode),
375     );
376 }
377
378 sub _branchloop {
379     my ($branchcode) = @_;
380
381     my $branches = GetBranches();
382     my @branchloop;
383     for my $thisbranch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
384         push @branchloop, {
385             value      => $thisbranch,
386             selected   => $branchcode && $thisbranch eq $branchcode,
387             branchname => $branches->{$thisbranch}->{'branchname'},
388         };
389     }
390
391     return \@branchloop;
392 }
393
394 sub add_fields {
395     my @tables = @_;
396     my @fields = ();
397
398     for my $table (@tables) {
399         push @fields, get_columns_for($table);
400
401     }
402     return @fields;
403 }
404
405 sub get_columns_for {
406     my $table = shift;
407 # FIXME untranslatable
408     my %column_map = (
409         aqbooksellers => '---BOOKSELLERS---',
410         aqorders      => '---ORDERS---',
411         serial        => '---SERIALS---',
412         reserves      => '---HOLDS---',
413         suggestions   => '---SUGGESTIONS---',
414     );
415     my @fields = ();
416     if (exists $column_map{$table} ) {
417         push @fields, {
418             value => q{},
419             text  => $column_map{$table} ,
420         };
421     }
422     else {
423         my $tlabel = '---' . uc $table;
424         $tlabel.= '---';
425         push @fields, {
426             value => q{},
427             text  => $tlabel,
428         };
429     }
430
431     my $sql = "SHOW COLUMNS FROM $table";# TODO not db agnostic
432     my $table_prefix = $table . q|.|;
433     my $rows = C4::Context->dbh->selectall_arrayref($sql, { Slice => {} });
434     for my $row (@{$rows}) {
435         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
436         push @fields, {
437             value => $table_prefix . $row->{Field},
438             text  => $table_prefix . $row->{Field},
439         }
440     }
441     if ($table eq 'borrowers') {
442         if ( my $attributes = C4::Members::Attributes::GetAttributes() ) {
443             foreach (@$attributes) {
444                 push @fields, {
445                     value => "borrower-attribute:$_",
446                     text  => "attribute:$_",
447                 }
448             }
449         }
450     }
451     return @fields;
452 }