Bug 25261: Require confirmation of multiple parts items
[koha.git] / circ / set-library.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 use Modern::Perl;
21 use CGI qw ( -utf8 );
22
23 use C4::Context;
24 use C4::Output;
25 use C4::Auth qw/:DEFAULT get_session/;
26 use C4::Koha;
27 use Koha::BiblioFrameworks;
28 use Koha::Libraries;
29 use Koha::Desks;
30
31 my $query = CGI->new();
32
33 my ( $template, $borrowernumber, $cookie, $flags ) = get_template_and_user({
34     template_name   => "circ/set-library.tt",
35     query           => $query,
36     type            => "intranet",
37     debug           => 1,
38     flagsrequired   => { catalogue => 1, },
39 });
40
41 my $sessionID = $query->cookie("CGISESSID");
42 my $session = get_session($sessionID);
43
44 my $branch   = $query->param('branch' );
45 my $desk_id = $query->param('desk_id');
46 my $userenv_branch  = C4::Context->userenv->{'branch'}        || '';
47 my $userenv_desk = C4::Context->userenv->{'desk_id'} || '';
48 my @updated;
49
50 # $session lddines here are doing the updating
51 if ( $branch and my $library = Koha::Libraries->find($branch) ) {
52     if (! $userenv_branch or $userenv_branch ne $branch ) {
53         my $branchname = $library->branchname;
54         $session->param('branchname', $branchname);         # update sesssion in DB
55         $session->param('branch', $branch);                 # update sesssion in DB
56         $session->flush();
57         push @updated, {
58             updated_branch => 1,
59                 old_branch => $userenv_branch,
60                 new_branch => $branch,
61         };
62     } # else branch the same, no update
63     if ( $desk_id && (!$userenv_desk or $userenv_desk ne $desk_id) ) {
64         my $desk = Koha::Desks->find( { desk_id => $desk_id } );
65         my $old_desk_name = '';
66         if ($userenv_desk) {
67             $old_desk_name = Koha::Desks->find( { desk_id => $userenv_desk })->desk_name;
68         }
69         $template->param( LoginDeskname => $desk->desk_name );
70         $template->param( LoginDeskid => $desk->desk_id );
71         $session->param( desk_name => $desk->desk_name );
72         $session->param( desk_id => $desk->desk_id );
73         $session->flush();
74         push @updated, {
75             updated_desk => 1,
76             old_desk => $old_desk_name,
77         };
78     }
79 } else {
80     $branch = $userenv_branch;  # fallback value
81     $desk_id = $userenv_desk;
82 }
83
84 $template->param(updated => \@updated) if (scalar @updated);
85
86 my @recycle_loop;
87 foreach ($query->param()) {
88     $_ or next;                   # disclude blanks
89     $_ eq "branch"     and next;  # disclude branch
90     $_ eq "desk_id"    and next;  # disclude desk_id
91     $_ eq "oldreferer" and next;  # disclude oldreferer
92     push @recycle_loop, {
93         param => $_,
94         value => scalar $query->param($_),
95     };
96 }
97
98 my $referer =  $query->param('oldreferer') || $ENV{HTTP_REFERER};
99 $referer =~ /set-library\.pl/ and undef $referer;   # avoid sending them back to this same page.
100
101 if (scalar @updated and not scalar @recycle_loop) {
102     # we updated something, and there were no extra params to POST: quick redirect
103     print $query->redirect($referer || '/cgi-bin/koha/circ/circulation.pl');
104 }
105
106 $template->param(
107     referer     => $referer,
108     branch      => $branch,
109     desk_id     => $desk_id,
110     recycle_loop=> \@recycle_loop,
111 );
112
113 # Checking if there is a Fast Cataloging Framework
114 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
115
116 output_html_with_http_headers $query, $cookie, $template->output;