Bug 12965: Prevent to erase an existing item type
[koha.git] / admin / itemtypes.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 admin/itemtypes.pl
21
22 script to administer the categories table
23 written 20/02/2002 by paul.poulain@free.fr
24  This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
25
26  ALGO :
27  this script use an $op to know what to do.
28  if $op is empty or none of the above values,
29         - the default screen is build (with all records, or filtered datas).
30         - the   user can clic on add, modify or delete record.
31  if $op=add_form
32         - if primkey exists, this is a modification,so we read the $primkey record
33         - builds the add/modify form
34  if $op=add_validate
35         - the user has just send datas, so we create/modify the record
36  if $op=delete_form
37         - we show the record having primkey=$primkey and ask for deletion validation form
38  if $op=delete_confirm
39         - we delete the record having primkey=$primkey
40
41 =cut
42
43 use strict;
44 #use warnings; FIXME - Bug 2505
45 use CGI qw ( -utf8 );
46
47 use List::Util qw/min/;
48 use File::Spec;
49
50 use C4::Koha;
51 use C4::Context;
52 use C4::Auth;
53 use C4::Output;
54
55 sub StringSearch {
56     my ( $searchstring, $type ) = @_;
57     my $dbh = C4::Context->dbh;
58     $searchstring =~ s/\'/\\\'/g;
59     my @data = split( ' ', $searchstring );
60     my $sth = $dbh->prepare(
61         "SELECT * FROM itemtypes WHERE (description LIKE ?) ORDER BY itemtype"
62         );
63     $sth->execute("$data[0]%");
64     return $sth->fetchall_arrayref({});         # return ref-to-array of ref-to-hashes
65                                                                 # like [ fetchrow_hashref(), fetchrow_hashref() ... ]
66 }
67
68 my $input       = new CGI;
69 my $searchfield = $input->param('description');
70 my $script_name = "/cgi-bin/koha/admin/itemtypes.pl";
71 my $itemtype    = $input->param('itemtype');
72 my $op          = $input->param('op') // 'list';
73 my @messages;
74 $searchfield =~ s/\,//g;
75 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
76     {
77         template_name   => "admin/itemtypes.tt",
78         query           => $input,
79         type            => "intranet",
80         authnotrequired => 0,
81         flagsrequired   => { parameters => 'parameters_remaining_permissions' },
82         debug           => 1,
83     }
84 );
85
86 $template->param(script_name => $script_name);
87 if ($op) {
88         $template->param($op  => 1); # we show only the TMPL_VAR names $op
89 }
90
91 my $dbh = C4::Context->dbh;
92
93 my $sip_media_type = $input->param('sip_media_type');
94 undef($sip_media_type) if defined($sip_media_type) and $sip_media_type =~ /^\s*$/;
95
96 ################## ADD_FORM ##################################
97 # called by default. Used to create form to add or  modify a record
98 if ( $op eq 'add_form' ) {
99     #---- if primkey exists, it's a modify action, so read values to modify...
100     my $data;
101     if ($itemtype) {
102         my $sth = $dbh->prepare("select * from itemtypes where itemtype=?");
103         $sth->execute($itemtype);
104         $data = $sth->fetchrow_hashref;
105     }
106
107     my $imagesets = C4::Koha::getImageSets( checked => $data->{'imageurl'} );
108
109     my $remote_image = undef;
110     if ( defined $data->{imageurl} and $data->{imageurl} =~ /^http/i ) {
111         $remote_image = $data->{imageurl};
112     }
113
114     $template->param(
115         itemtype        => $itemtype,
116         description     => $data->{'description'},
117         rentalcharge    => sprintf( "%.2f", $data->{'rentalcharge'} ),
118         notforloan      => $data->{'notforloan'},
119         imageurl        => $data->{'imageurl'},
120         template        => C4::Context->preference('template'),
121         summary         => $data->{summary},
122         checkinmsg      => $data->{'checkinmsg'},
123         checkinmsgtype  => $data->{'checkinmsgtype'},
124         imagesets       => $imagesets,
125         remote_image    => $remote_image,
126         sip_media_type  => $data->{sip_media_type},
127     );
128
129     # END $OP eq ADD_FORM
130 ################## ADD_VALIDATE ##################################
131     # called by add_form, used to insert/modify data in DB
132 }
133 elsif ( $op eq 'add_validate' ) {
134     my $is_a_modif = $input->param('is_a_modif');
135     my ( $already_exists ) = $dbh->selectrow_array(q|
136         SELECT itemtype
137         FROM   itemtypes
138         WHERE  itemtype = ?
139     |, undef, $itemtype );
140     if ( $already_exists and $is_a_modif ) { # it's a modification
141         my $query2 = '
142             UPDATE itemtypes
143             SET    description = ?
144                  , rentalcharge = ?
145                  , notforloan = ?
146                  , imageurl = ?
147                  , summary = ?
148                  , checkinmsg = ?
149                  , checkinmsgtype = ?
150                  , sip_media_type = ?
151             WHERE itemtype = ?
152         ';
153         my $sth = $dbh->prepare($query2);
154         $sth->execute(
155             $input->param('description'),
156             $input->param('rentalcharge'),
157             ( $input->param('notforloan') ? 1 : 0 ),
158             (
159                 $input->param('image') eq 'removeImage' ? '' : (
160                       $input->param('image') eq 'remoteImage'
161                     ? $input->param('remoteImage')
162                     : $input->param('image') . ""
163                 )
164             ),
165             $input->param('summary'),
166             $input->param('checkinmsg'),
167             $input->param('checkinmsgtype'),
168             $sip_media_type,
169             $input->param('itemtype')
170         );
171     }
172     elsif ( not $already_exists and not $is_a_modif ) {
173         my $query = "
174             INSERT INTO itemtypes
175                 (itemtype,description,rentalcharge, notforloan, imageurl, summary, checkinmsg, checkinmsgtype, sip_media_type)
176             VALUES
177                 (?,?,?,?,?,?,?,?,?);
178             ";
179         my $sth = $dbh->prepare($query);
180                 my $image = $input->param('image');
181         $sth->execute(
182             $input->param('itemtype'),
183             $input->param('description'),
184             $input->param('rentalcharge'),
185             $input->param('notforloan') ? 1 : 0,
186             $image eq 'removeImage' ?           ''                 :
187             $image eq 'remoteImage' ? $input->param('remoteImage') :
188             $image,
189             $input->param('summary'),
190             $input->param('checkinmsg'),
191             $input->param('checkinmsgtype'),
192             $sip_media_type,
193         );
194     }
195     else {
196         push @messages, {
197             type => 'error',
198             code => 'already_exists',
199         };
200     }
201
202     $searchfield = '';
203     $op = 'list';
204     # END $OP eq ADD_VALIDATE
205 ################## DELETE_CONFIRM ##################################
206     # called by default form, used to confirm deletion of data in DB
207 }
208 elsif ( $op eq 'delete_confirm' ) {
209     # Check both items and biblioitems
210     my $sth = $dbh->prepare('
211         SELECT COUNT(*) AS total FROM (
212             SELECT itemtype AS t FROM biblioitems
213             UNION ALL
214             SELECT itype AS t FROM items
215         ) AS tmp
216         WHERE tmp.t=?
217     ');
218     $sth->execute($itemtype);
219     my $total = $sth->fetchrow_hashref->{'total'};
220
221     my $sth =
222       $dbh->prepare(
223 "select itemtype,description,rentalcharge from itemtypes where itemtype=?"
224       );
225     $sth->execute($itemtype);
226     my $data = $sth->fetchrow_hashref;
227     $template->param(
228         itemtype        => $itemtype,
229         description     => $data->{description},
230         rentalcharge    => sprintf( "%.2f", $data->{rentalcharge} ),
231         imageurl        => $data->{imageurl},
232         total           => $total
233     );
234
235     # END $OP eq DELETE_CONFIRM
236 ################## DELETE_CONFIRMED ##################################
237   # called by delete_confirm, used to effectively confirm deletion of data in DB
238 }
239 elsif ( $op eq 'delete_confirmed' ) {
240     my $itemtype = uc( $input->param('itemtype') );
241     my $sth      = $dbh->prepare("delete from itemtypes where itemtype=?");
242     $sth->execute($itemtype);
243     $sth = $dbh->prepare("delete from issuingrules where itemtype=?");
244     $sth->execute($itemtype);
245     print $input->redirect('itemtypes.pl');
246     exit;
247     # END $OP eq DELETE_CONFIRMED
248 ################## DEFAULT ##################################
249 }
250
251 if ( $op eq 'list' ) {
252     my ($results) = StringSearch( $searchfield, 'web' );
253     my @loop;
254     foreach my $itemtype ( @{$results} ) {
255         $itemtype->{imageurl} = getitemtypeimagelocation( 'intranet', $itemtype->{imageurl} );
256         $itemtype->{rentalcharge} = sprintf( '%.2f', $itemtype->{rentalcharge} );
257         push( @loop, $itemtype );
258     }
259
260     $template->param(
261         loop     => \@loop,
262         else     => 1,
263         messages => \@messages,
264     );
265 }
266
267 output_html_with_http_headers $input, $cookie, $template->output;