Merge branch 'bug_9647' into 3.12-master
[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::Members::Attributes;
51
52 # _letter_from_where($branchcode,$module, $code)
53 # - return FROM WHERE clause and bind args for a letter
54 sub _letter_from_where {
55     my ($branchcode, $module, $code) = @_;
56     my $sql = q{FROM letter WHERE branchcode = ? AND module = ? AND code = ?};
57     my @args = ($branchcode || '', $module, $code);
58 # Mysql is retarded. cause branchcode is part of the primary key it cannot be null. How does that
59 # work with foreign key constraint I wonder...
60
61 #   if ($branchcode) {
62 #       $sql .= " AND branchcode = ?";
63 #       push @args, $branchcode;
64 #   } else {
65 #       $sql .= " AND branchcode IS NULL";
66 #   }
67
68     return ($sql, \@args);
69 }
70
71 # letter_exists($branchcode,$module, $code)
72 # - return true if a letter with the given $branchcode, $module and $code exists
73 sub letter_exists {
74     my ($sql, $args) = _letter_from_where(@_);
75     my $dbh = C4::Context->dbh;
76     my $letter = $dbh->selectrow_hashref("SELECT * $sql", undef, @$args);
77     return $letter;
78 }
79
80 # $protected_letters = protected_letters()
81 # - return a hashref of letter_codes representing letters that should never be deleted
82 sub protected_letters {
83     my $dbh = C4::Context->dbh;
84     my $codes = $dbh->selectall_arrayref(q{SELECT DISTINCT letter_code FROM message_transports});
85     return { map { $_->[0] => 1 } @{$codes} };
86 }
87
88 our $input       = new CGI;
89 my $searchfield = $input->param('searchfield');
90 my $script_name = '/cgi-bin/koha/tools/letter.pl';
91 our $branchcode  = $input->param('branchcode');
92 my $code        = $input->param('code');
93 my $module      = $input->param('module');
94 my $content     = $input->param('content');
95 my $op          = $input->param('op') || '';
96 my $dbh = C4::Context->dbh;
97
98 our ( $template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user(
99     {
100         template_name   => 'tools/letter.tmpl',
101         query           => $input,
102         type            => 'intranet',
103         authnotrequired => 0,
104         flagsrequired   => { tools => 'edit_notices' },
105         debug           => 1,
106     }
107 );
108
109 our $my_branch = C4::Context->preference("IndependantBranches") && !$staffflags->{'superlibrarian'}
110   ?  C4::Context->userenv()->{'branch'}
111   : undef;
112 # we show only the TMPL_VAR names $op
113
114 $template->param(
115     independant_branch => $my_branch,
116         script_name => $script_name,
117   searchfield => $searchfield,
118     branchcode => $branchcode,
119         action => $script_name
120 );
121
122 if ($op eq 'copy') {
123     add_copy();
124     $op = 'add_form';
125 }
126
127 if ($op eq 'add_form') {
128     add_form($branchcode, $module, $code);
129 }
130 elsif ( $op eq 'add_validate' ) {
131     add_validate();
132     $op = q{}; # next operation is to return to default screen
133 }
134 elsif ( $op eq 'delete_confirm' ) {
135     delete_confirm($branchcode, $module, $code);
136 }
137 elsif ( $op eq 'delete_confirmed' ) {
138     delete_confirmed($branchcode, $module, $code);
139     $op = q{}; # next operation is to return to default screen
140 }
141 else {
142     default_display($branchcode,$searchfield);
143 }
144
145 # Do this last as delete_confirmed resets
146 if ($op) {
147     $template->param($op  => 1);
148 } else {
149     $template->param(no_op_set => 1);
150 }
151
152 output_html_with_http_headers $input, $cookie, $template->output;
153
154 sub add_form {
155     my ($branchcode,$module, $code ) = @_;
156
157     my $letter;
158     # if code has been passed we can identify letter and its an update action
159     if ($code) {
160         $letter = letter_exists($branchcode,$module, $code);
161     }
162     if ($letter) {
163         $template->param( modify => 1 );
164         $template->param( code   => $letter->{code} );
165     }
166     else { # initialize the new fields
167         $letter = {
168             branchcode => $branchcode,
169             module     => $module,
170         };
171         $template->param( adding => 1 );
172     }
173
174     my $field_selection;
175     push @{$field_selection}, add_fields('branches');
176     if ($module eq 'reserves') {
177         push @{$field_selection}, add_fields('borrowers', 'reserves', 'biblio', 'items');
178     }
179     elsif ($module eq 'claimacquisition') {
180         push @{$field_selection}, add_fields('aqbooksellers', 'aqorders', 'biblio', 'biblioitems');
181     }
182     elsif ($module eq 'claimissues') {
183         push @{$field_selection}, add_fields('aqbooksellers', 'serial', 'subscription');
184         push @{$field_selection},
185         {
186             value => q{},
187             text => '---BIBLIO---'
188         };
189         foreach(qw(title author serial)) {
190             push @{$field_selection}, {value => "biblio.$_", text => ucfirst $_ };
191         }
192     }
193     elsif ($module eq 'suggestions') {
194         push @{$field_selection}, add_fields('suggestions', 'borrowers', 'biblio');
195     }
196     else {
197         push @{$field_selection}, add_fields('biblio','biblioitems'),
198             {value => q{},             text => '---ITEMS---'  },
199             {value => 'items.content', text => 'items.content'},
200             add_fields('borrowers');
201         if ($module eq 'circulation') {
202             push @{$field_selection}, add_fields('opac_news');
203
204         }
205
206         if ( $module eq 'circulation' && $code eq "CHECKIN" ) {
207             push @{$field_selection}, add_fields('old_issues');
208         } else {
209             push @{$field_selection}, add_fields('issues');
210         }
211     }
212
213     $template->param(
214         branchcode => $letter->{branchcode},
215         name       => $letter->{name},
216         is_html    => $letter->{is_html},
217         title      => $letter->{title},
218         content    => $letter->{content},
219         module     => $module,
220         $module    => 1,
221         branchloop => _branchloop($branchcode),
222         SQLfieldname => $field_selection,
223     );
224     return;
225 }
226
227 sub add_validate {
228     my $dbh        = C4::Context->dbh;
229     my $oldbranchcode = $input->param('oldbranchcode');
230     my $branchcode    = $input->param('branchcode') || '';
231     my $module        = $input->param('module');
232     my $oldmodule     = $input->param('oldmodule');
233     my $code          = $input->param('code');
234     my $name          = $input->param('name');
235     my $is_html       = $input->param('is_html');
236     my $title         = $input->param('title');
237     my $content       = $input->param('content');
238     if (letter_exists($oldbranchcode,$oldmodule, $code)) {
239         $dbh->do(
240             q{UPDATE letter SET branchcode = ?, module = ?, name = ?, is_html = ?, title = ?, content = ? WHERE branchcode = ? AND module = ? AND code = ?},
241             undef,
242             $branchcode, $module, $name, $is_html || 0, $title, $content,
243             $oldbranchcode, $oldmodule, $code
244         );
245     } else {
246         $dbh->do(
247             q{INSERT INTO letter (branchcode,module,code,name,is_html,title,content) VALUES (?,?,?,?,?,?,?)},
248             undef,
249             $branchcode, $module, $code, $name, $is_html || 0, $title, $content
250         );
251     }
252     # set up default display
253     default_display($branchcode);
254 }
255
256 sub add_copy {
257     my $dbh        = C4::Context->dbh;
258     my $oldbranchcode = $input->param('oldbranchcode');
259     my $branchcode    = $input->param('branchcode');
260     my $module        = $input->param('module');
261     my $code          = $input->param('code');
262
263     return if letter_exists($branchcode,$module, $code);
264
265     my $old_letter = letter_exists($oldbranchcode,$module, $code);
266
267     $dbh->do(
268         q{INSERT INTO letter (branchcode,module,code,name,is_html,title,content) VALUES (?,?,?,?,?,?,?)},
269         undef,
270         $branchcode, $module, $code, $old_letter->{name}, $old_letter->{is_html}, $old_letter->{title}, $old_letter->{content}
271     );
272 }
273
274 sub delete_confirm {
275     my ($branchcode, $module, $code) = @_;
276     my $dbh = C4::Context->dbh;
277     my $letter = letter_exists($branchcode, $module, $code);
278     $template->param( branchcode => $branchcode, branchname => GetBranchName($branchcode) );
279     $template->param( code => $code );
280     $template->param( module => $module);
281     $template->param( name => $letter->{name});
282     return;
283 }
284
285 sub delete_confirmed {
286     my ($branchcode, $module, $code) = @_;
287     my ($sql, $args) = _letter_from_where($branchcode, $module, $code);
288     my $dbh    = C4::Context->dbh;
289     $dbh->do("DELETE $sql", undef, @$args);
290     # setup default display for screen
291     default_display($branchcode);
292     return;
293 }
294
295 sub retrieve_letters {
296     my ($branchcode, $searchstring) = @_;
297
298     $branchcode = $my_branch if $branchcode && $my_branch;
299
300     my $dbh = C4::Context->dbh;
301     my ($sql, @where, @args);
302     $sql = "SELECT branchcode, module, code, name, branchname
303             FROM letter
304             LEFT OUTER JOIN branches USING (branchcode)";
305     if ($searchstring && $searchstring=~m/(\S+)/) {
306         $searchstring = $1 . q{%};
307         push @where, 'code LIKE ?';
308         push @args, $searchstring;
309     }
310     elsif ($branchcode) {
311         push @where, 'branchcode = ?';
312         push @args, $branchcode || '';
313     }
314     elsif ($my_branch) {
315         push @where, "(branchcode = ? OR branchcode = '')";
316         push @args, $my_branch;
317     }
318
319     $sql .= " WHERE ".join(" AND ", @where) if @where;
320     $sql .= " ORDER BY module, code, branchcode";
321 #   use Data::Dumper; die Dumper($sql, \@args);
322     return $dbh->selectall_arrayref($sql, { Slice => {} }, @args);
323 }
324
325 sub default_display {
326     my ($branchcode, $searchfield) = @_;
327
328     if ( $searchfield  ) {
329         $template->param( search      => 1 );
330     }
331     my $results = retrieve_letters($branchcode,$searchfield);
332
333     my $loop_data = [];
334     my $protected_letters = protected_letters();
335     foreach my $row (@{$results}) {
336         $row->{protected} = !$row->{branchcode} && $protected_letters->{ $row->{code} };
337         push @{$loop_data}, $row;
338
339     }
340
341     $template->param(
342         letter => $loop_data,
343         branchloop => _branchloop($branchcode),
344     );
345 }
346
347 sub _branchloop {
348     my ($branchcode) = @_;
349
350     my $branches = GetBranches();
351     my @branchloop;
352     for my $thisbranch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
353         push @branchloop, {
354             value      => $thisbranch,
355             selected   => $branchcode && $thisbranch eq $branchcode,
356             branchname => $branches->{$thisbranch}->{'branchname'},
357         };
358     }
359
360     return \@branchloop;
361 }
362
363 sub add_fields {
364     my @tables = @_;
365     my @fields = ();
366
367     for my $table (@tables) {
368         push @fields, get_columns_for($table);
369
370     }
371     return @fields;
372 }
373
374 sub get_columns_for {
375     my $table = shift;
376 # FIXME untranslateable
377     my %column_map = (
378         aqbooksellers => '---BOOKSELLERS---',
379         aqorders      => '---ORDERS---',
380         serial        => '---SERIALS---',
381         reserves      => '---HOLDS---',
382         suggestions   => '---SUGGESTIONS---',
383     );
384     my @fields = ();
385     if (exists $column_map{$table} ) {
386         push @fields, {
387             value => q{},
388             text  => $column_map{$table} ,
389         };
390     }
391     else {
392         my $tlabel = '---' . uc $table;
393         $tlabel.= '---';
394         push @fields, {
395             value => q{},
396             text  => $tlabel,
397         };
398     }
399
400     my $sql = "SHOW COLUMNS FROM $table";# TODO not db agnostic
401     my $table_prefix = $table . q|.|;
402     my $rows = C4::Context->dbh->selectall_arrayref($sql, { Slice => {} });
403     for my $row (@{$rows}) {
404         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
405         push @fields, {
406             value => $table_prefix . $row->{Field},
407             text  => $table_prefix . $row->{Field},
408         }
409     }
410     if ($table eq 'borrowers') {
411         if ( my $attributes = C4::Members::Attributes::GetAttributes() ) {
412             foreach (@$attributes) {
413                 push @fields, {
414                     value => "borrower-attribute:$_",
415                     text  => "attribute:$_",
416                 }
417             }
418         }
419     }
420     return @fields;
421 }