Bug 13215: Fix notice deletion
[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 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
10 # version.
11 #
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.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
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;
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 'claimacquisition') {
200         push @{$field_selection}, add_fields('aqbooksellers', 'aqorders', 'biblio', 'biblioitems');
201     }
202     elsif ($module eq 'claimissues') {
203         push @{$field_selection}, add_fields('aqbooksellers', 'serial', 'subscription');
204         push @{$field_selection},
205         {
206             value => q{},
207             text => '---BIBLIO---'
208         };
209         foreach(qw(title author serial)) {
210             push @{$field_selection}, {value => "biblio.$_", text => ucfirst $_ };
211         }
212     }
213     elsif ($module eq 'suggestions') {
214         push @{$field_selection}, add_fields('suggestions', 'borrowers', 'biblio');
215     }
216     else {
217         push @{$field_selection}, add_fields('biblio','biblioitems'),
218             add_fields('items'),
219             {value => 'items.content', text => 'items.content'},
220             {value => 'items.fine',    text => 'items.fine'},
221             add_fields('borrowers');
222         if ($module eq 'circulation') {
223             push @{$field_selection}, add_fields('opac_news');
224
225         }
226
227         if ( $module eq 'circulation' && $code eq "CHECKIN" ) {
228             push @{$field_selection}, add_fields('old_issues');
229         } else {
230             push @{$field_selection}, add_fields('issues');
231         }
232     }
233
234     $template->param(
235         module     => $module,
236         branchloop => _branchloop($branchcode),
237         SQLfieldname => $field_selection,
238     );
239     return;
240 }
241
242 sub add_validate {
243     my $dbh        = C4::Context->dbh;
244     my $branchcode    = $input->param('branchcode') || '';
245     my $module        = $input->param('module');
246     my $oldmodule     = $input->param('oldmodule');
247     my $code          = $input->param('code');
248     my $name          = $input->param('name');
249     my @mtt           = $input->param('message_transport_type');
250     my @title         = $input->param('title');
251     my @content       = $input->param('content');
252     for my $mtt ( @mtt ) {
253         my $is_html = $input->param("is_html_$mtt");
254         my $title   = shift @title;
255         my $content = shift @content;
256         my $letter = C4::Letters::getletter( $oldmodule, $code, $branchcode, $mtt);
257         unless ( $title and $content ) {
258             # Delete this mtt if no title or content given
259             delete_confirmed( $branchcode, $oldmodule, $code, $mtt );
260             next;
261         }
262         elsif ( $letter->{message_transport_type} eq $mtt ) {
263             $dbh->do(
264                 q{
265                     UPDATE letter
266                     SET branchcode = ?, module = ?, name = ?, is_html = ?, title = ?, content = ?
267                     WHERE branchcode = ? AND module = ? AND code = ? AND message_transport_type = ?
268                 },
269                 undef,
270                 $branchcode, $module, $name, $is_html || 0, $title, $content,
271                 $branchcode, $oldmodule, $code, $mtt
272             );
273         } else {
274             $dbh->do(
275                 q{INSERT INTO letter (branchcode,module,code,name,is_html,title,content,message_transport_type) VALUES (?,?,?,?,?,?,?,?)},
276                 undef,
277                 $branchcode, $module, $code, $name, $is_html || 0, $title, $content, $mtt
278             );
279         }
280     }
281     # set up default display
282     default_display($branchcode);
283     return 1;
284 }
285
286 sub delete_confirm {
287     my ($branchcode, $module, $code) = @_;
288     my $dbh = C4::Context->dbh;
289     my $letter = C4::Letters::getletter($module, $code, $branchcode);
290     my @values = values %$letter;
291     $template->param(
292         letter => $letter,
293     );
294     return;
295 }
296
297 sub delete_confirmed {
298     my ($branchcode, $module, $code, $mtt) = @_;
299     C4::Letters::DelLetter(
300         {
301             branchcode => $branchcode,
302             module     => $module,
303             code       => $code,
304             mtt        => $mtt
305         }
306     );
307     # setup default display for screen
308     default_display($branchcode);
309     return;
310 }
311
312 sub retrieve_letters {
313     my ($branchcode, $searchstring) = @_;
314
315     $branchcode = $my_branch if $branchcode && $my_branch;
316
317     my $dbh = C4::Context->dbh;
318     my ($sql, @where, @args);
319     $sql = "SELECT branchcode, module, code, name, branchname
320             FROM letter
321             LEFT OUTER JOIN branches USING (branchcode)
322     ";
323     if ($searchstring && $searchstring=~m/(\S+)/) {
324         $searchstring = $1 . q{%};
325         push @where, 'code LIKE ?';
326         push @args, $searchstring;
327     }
328     elsif ($branchcode) {
329         push @where, 'branchcode = ?';
330         push @args, $branchcode || '';
331     }
332     elsif ($my_branch) {
333         push @where, "(branchcode = ? OR branchcode = '')";
334         push @args, $my_branch;
335     }
336
337     $sql .= " WHERE ".join(" AND ", @where) if @where;
338     $sql .= " GROUP BY branchcode,module,code";
339     $sql .= " ORDER BY module, code, branchcode";
340
341     return $dbh->selectall_arrayref($sql, { Slice => {} }, @args);
342 }
343
344 sub default_display {
345     my ($branchcode, $searchfield) = @_;
346
347     if ( $searchfield  ) {
348         $template->param( search      => 1 );
349     }
350     my $results = retrieve_letters($branchcode,$searchfield);
351
352     my $loop_data = [];
353     my $protected_letters = protected_letters();
354     foreach my $row (@{$results}) {
355         $row->{protected} = !$row->{branchcode} && $protected_letters->{ $row->{code} };
356         push @{$loop_data}, $row;
357
358     }
359
360     $template->param(
361         letter => $loop_data,
362         branchloop => _branchloop($branchcode),
363     );
364 }
365
366 sub _branchloop {
367     my ($branchcode) = @_;
368
369     my $branches = GetBranches();
370     my @branchloop;
371     for my $thisbranch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
372         push @branchloop, {
373             value      => $thisbranch,
374             selected   => $branchcode && $thisbranch eq $branchcode,
375             branchname => $branches->{$thisbranch}->{'branchname'},
376         };
377     }
378
379     return \@branchloop;
380 }
381
382 sub add_fields {
383     my @tables = @_;
384     my @fields = ();
385
386     for my $table (@tables) {
387         push @fields, get_columns_for($table);
388
389     }
390     return @fields;
391 }
392
393 sub get_columns_for {
394     my $table = shift;
395 # FIXME untranslateable
396     my %column_map = (
397         aqbooksellers => '---BOOKSELLERS---',
398         aqorders      => '---ORDERS---',
399         serial        => '---SERIALS---',
400         reserves      => '---HOLDS---',
401         suggestions   => '---SUGGESTIONS---',
402     );
403     my @fields = ();
404     if (exists $column_map{$table} ) {
405         push @fields, {
406             value => q{},
407             text  => $column_map{$table} ,
408         };
409     }
410     else {
411         my $tlabel = '---' . uc $table;
412         $tlabel.= '---';
413         push @fields, {
414             value => q{},
415             text  => $tlabel,
416         };
417     }
418
419     my $sql = "SHOW COLUMNS FROM $table";# TODO not db agnostic
420     my $table_prefix = $table . q|.|;
421     my $rows = C4::Context->dbh->selectall_arrayref($sql, { Slice => {} });
422     for my $row (@{$rows}) {
423         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
424         push @fields, {
425             value => $table_prefix . $row->{Field},
426             text  => $table_prefix . $row->{Field},
427         }
428     }
429     if ($table eq 'borrowers') {
430         if ( my $attributes = C4::Members::Attributes::GetAttributes() ) {
431             foreach (@$attributes) {
432                 push @fields, {
433                     value => "borrower-attribute:$_",
434                     text  => "attribute:$_",
435                 }
436             }
437         }
438     }
439     return @fields;
440 }