3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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
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.
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.
20 =head1 tools/letter.pl
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
29 - if primary key (module + code) exists, this is a modification,so we read the required record
30 - builds the add/modify form
32 - the user has just send data, so we create/modify the record
34 - we show the record selected and ask for confirmation
36 - we delete the designated record
39 # TODO This script drives the CRUD operations on the letter table
40 # The DB interaction should be handled by calls to C4/Letters.pm
50 my ($searchstring) = @_;
51 my $dbh = C4
::Context
->dbh;
52 $searchstring =~ s/\'/\\\'/g;
53 my @data = split( ' ', $searchstring );
54 $data[0] = '' unless @data;
55 my $sth = $dbh->prepare("SELECT * FROM letter WHERE (code LIKE ?) ORDER BY module, code");
56 $sth->execute("$data[0]%"); # slightly bogus, only searching on first string.
57 return $sth->fetchall_arrayref({});
60 # FIXME untranslateable
62 aqbooksellers
=> 'BOOKSELLERS',
66 suggestions
=> 'SUGGESTIONS',
69 sub column_picks
($) {
70 # returns @array of values
71 my $table = shift or return ();
72 my $sth = C4
::Context
->dbh->prepare("SHOW COLUMNS FROM $table");
74 my @SQLfieldname = ();
75 push @SQLfieldname, {'value' => "", 'text' => '---' . uc($column_map{$table} || $table) . '---'};
76 while (my ($field) = $sth->fetchrow_array) {
78 value
=> $table . ".$field",
79 text
=> $table . ".$field"
85 # letter_exists($module, $code)
86 # - return true if a letter with the given $module and $code exists
88 my ($module, $code) = @_;
89 my $dbh = C4
::Context
->dbh;
90 my $letters = $dbh->selectall_arrayref(q{SELECT name FROM letter WHERE module = ? AND code = ?}, undef, $module, $code);
94 # $protected_letters = protected_letters()
95 # - return a hashref of letter_codes representing letters that should never be deleted
96 sub protected_letters
{
97 my $dbh = C4
::Context
->dbh;
98 my $codes = $dbh->selectall_arrayref(q{SELECT DISTINCT letter_code FROM message_transports});
99 return { map { $_->[0] => 1 } @
{$codes} };
103 my $searchfield = $input->param('searchfield');
104 my $script_name = '/cgi-bin/koha/tools/letter.pl';
105 my $code = $input->param('code');
106 my $module = $input->param('module');
107 my $content = $input->param('content');
108 my $op = $input->param('op');
109 my $dbh = C4
::Context
->dbh;
110 if (!defined $module ) {
114 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
116 template_name
=> 'tools/letter.tmpl',
119 authnotrequired
=> 0,
120 flagsrequired
=> { tools
=> 'edit_notices' },
126 $op = q{}; # silence errors from eq
128 # we show only the TMPL_VAR names $op
131 script_name
=> $script_name,
132 action
=> $script_name
135 if ($op eq 'add_form') {
136 add_form
($module, $code);
138 elsif ( $op eq 'add_validate' ) {
140 $op = q{}; # next operation is to return to default screen
142 elsif ( $op eq 'delete_confirm' ) {
143 delete_confirm
($module, $code);
145 elsif ( $op eq 'delete_confirmed' ) {
146 delete_confirmed
($module, $code);
147 $op = q{}; # next operation is to return to default screen
150 default_display
($searchfield);
153 # Do this last as delete_confirmed resets
155 $template->param($op => 1);
157 $template->param(no_op_set
=> 1);
160 output_html_with_http_headers
$input, $cookie, $template->output;
163 my ($module, $code ) = @_;
166 # if code has been passed we can identify letter and its an update action
168 $letter = $dbh->selectrow_hashref(q{SELECT module, code, name, title, content FROM letter WHERE module=? AND code=?},
169 undef, $module, $code);
170 $template->param( modify
=> 1 );
171 $template->param( code
=> $letter->{code
} );
173 else { # initialize the new fields
181 $template->param( adding
=> 1 );
184 # add acquisition specific tables
187 if ( $module eq "suggestions" ) {
188 push @SQLfieldname, column_picks
('borrowers'),
189 column_picks
('suggestions'),
190 column_picks
('aqbooksellers'),
191 column_picks
('biblio'),
192 column_picks
('items');
194 elsif ( $module eq "reserves" ) {
195 push @SQLfieldname, column_picks
('borrowers'),
196 column_picks
('reserves'),
197 column_picks
('biblio'),
198 column_picks
('items');
200 elsif ( index( $module, "acquisition" ) > 0 ) { # FIXME: imprecise comparison
201 push @SQLfieldname, column_picks
('aqbooksellers'), column_picks
('aqorders');
202 # add issues specific tables
204 push @
{$field_selection}, add_fields
('branches');
205 if ($module eq 'reserves') {
206 push @
{$field_selection}, add_fields
('borrowers', 'reserves', 'biblio', 'items');
208 elsif ($module eq 'claimacquisition') {
209 push @
{$field_selection}, add_fields
('aqbooksellers', 'aqorders');
211 elsif ($module eq 'claimissues') {
212 push @
{$field_selection}, add_fields
('aqbooksellers', 'serial', 'subscription');
213 push @
{$field_selection},
216 text
=> '---BIBLIO---'
218 foreach(qw(title author serial)) {
219 push @
{$field_selection}, {value
=> "biblio.$_", text
=> ucfirst $_ };
223 push @
{$field_selection}, add_fields
('biblio','biblioitems'),
224 {value
=> q{}, text
=> '---ITEMS---' },
225 {value
=> 'items.content', text
=> 'items.content'},
226 add_fields
('borrowers');
230 name
=> $letter->{name
},
231 title
=> $letter->{title
},
232 content
=> $letter->{content
},
234 SQLfieldname
=> $field_selection,
240 my $dbh = C4
::Context
->dbh;
241 my $module = $input->param('module');
242 my $code = $input->param('code');
243 my $name = $input->param('name');
244 my $title = $input->param('title');
245 my $content = $input->param('content');
246 if (letter_exists
($module, $code)) {
248 q{UPDATE letter SET module = ?, code = ?, name = ?, title = ?, content = ? WHERE module = ? AND code = ?},
250 $module, $code, $name, $title, $content,
255 q{INSERT INTO letter (module,code,name,title,content) VALUES (?,?,?,?,?)},
257 $module, $code, $name, $title, $content
260 # set up default display
266 my ($module, $code) = @_;
267 my $dbh = C4
::Context
->dbh;
268 my $letter = $dbh->selectrow_hashref(q
|SELECT name FROM letter WHERE module
= ? AND code
= ?
|,
271 $template->param( code
=> $code );
272 $template->param( module
=> $module);
273 $template->param( name
=> $letter->{name
});
277 sub delete_confirmed
{
278 my ($module, $code) = @_;
279 my $dbh = C4
::Context
->dbh;
280 $dbh->do('DELETE FROM letter WHERE module=? AND code=?',{},$module,$code);
281 # setup default display for screen
286 sub retrieve_letters
{
287 my $searchstring = shift;
288 my $dbh = C4
::Context
->dbh;
290 if ($searchstring=~m/(\S+)/) {
291 $searchstring = $1 . q{%};
292 return $dbh->selectall_arrayref('SELECT module, code, name FROM letter WHERE code LIKE ? ORDER BY module, code',
293 { Slice
=> {} }, $searchstring);
297 return $dbh->selectall_arrayref('SELECT module, code, name FROM letter ORDER BY module, code', { Slice
=> {} });
302 sub default_display
{
303 my $searchfield = shift;
305 if ( $searchfield ) {
306 $template->param( search
=> 1 );
307 $template->param( searchfield
=> $searchfield );
308 $results = retrieve_letters
($searchfield);
310 $results = retrieve_letters
();
313 my $protected_letters = protected_letters
();
314 foreach my $row (@
{$results}) {
315 $row->{protected
} = $protected_letters->{ $row->{code
}};
316 push @
{$loop_data}, $row;
319 $template->param( letter
=> $loop_data );
327 for my $table (@tables) {
328 push @fields, get_columns_for
($table);
334 sub get_columns_for
{
336 # FIXME untranslateable
338 aqbooksellers
=> '---BOOKSELLERS---',
339 aqorders
=> '---ORDERS---',
340 serial
=> '---SERIALS---',
341 reserves
=> '---HOLDS---',
344 if (exists $column_map{$table} ) {
347 text
=> $column_map{$table} ,
351 my $tlabel = '---' . uc $table;
358 my $sql = "SHOW COLUMNS FROM $table";# TODO not db agnostic
359 my $table_prefix = $table . q
|.|;
360 my $rows = C4
::Context
->dbh->selectall_arrayref($sql, { Slice
=> {} });
361 for my $row (@
{$rows}) {
363 value
=> $table_prefix . $row->{Field
},
364 text
=> $table_prefix . $row->{Field
},