Cleaned up regex's looking for defunct CVS files
[koha.git] / opac / opac-shelves.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 with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20
21 =head1 NAME
22
23     opac-shelves.pl
24
25 =head1 DESCRIPTION
26
27     this script is used to script to provide virtualshelf management
28
29 =head1 CGI PARAMETERS
30
31 =over 4
32
33 =item C<modifyshelfcontents>
34
35     if this script has to modify the shelve content.
36
37 =item C<shelfnumber>
38
39     to know on which shelve this script has to work.
40
41 =item C<addbarcode>
42
43 =item C<op>
44
45     op can be equals to:
46         * modifsave to save change on the shelves
47         * modif to change the template to allow to modify the shelves.
48
49 =item C<viewshelf>
50
51     to load the template with 'viewshelves param' which allow to read the shelves information.
52
53 =item C<shelves>
54
55     if equals to 1. then call the function shelves which add
56     or delete a shelf.
57
58 =item C<addshelf>
59
60     if the param shelves = 1 then addshelf must be equals to the name of the shelf to add.
61
62 =back
63
64 =cut
65
66 use strict;
67 use CGI;
68 use C4::Output;
69 use C4::VirtualShelves;
70 use C4::Circulation;
71 use C4::Auth;
72 use C4::Output;
73 use C4::Biblio;
74
75 my $query = new CGI;
76
77 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
78     {
79         template_name   => "opac-shelves.tmpl",
80         query           => $query,
81         type            => "opac",
82         authnotrequired => 1,
83     }
84 );
85
86 if ( $query->param('modifyshelfcontents') ) {
87     my $shelfnumber = $query->param('viewshelf');
88     my $barcode     = $query->param('addbarcode');
89     my ($item) = GetItemnumberFromBarcode($barcode);
90         my ($biblio) = GetBiblioFromItemNumber($item->{'itemnumber'});
91     if ( ShelfPossibleAction( $loggedinuser, $shelfnumber, 'manage' ) ) {
92         AddToShelf( $biblio->{'biblionumber'}, $shelfnumber );
93         foreach ( $query->param ) {
94             if (/MOD-(\d*)/) {
95                 my $biblionumber = $1;
96                 if ( $query->param('remove') eq "on" ) {
97                     DelFromShelf( $biblionumber, $shelfnumber );
98                 }
99             }
100         }
101     }
102 }
103
104 # getting the Shelves list
105 my $shelflist = GetShelves( $loggedinuser, 2 );
106 $template->param( { loggedinuser => $loggedinuser } );
107 my $op = $query->param('op');
108
109 SWITCH: {
110     if ( $op && ( $op eq 'modifsave' ) ) {
111         ModShelf(
112             $query->param('shelfnumber'), $query->param('shelfname'),
113             $loggedinuser,                $query->param('category')
114         );
115         last SWITCH;
116     }
117     if ( $op && ( $op eq 'modif' ) ) {
118         my ( $shelfnumber, $shelfname, $owner, $category ) =
119           GetShelf( $query->param('shelf') );
120         $template->param(
121             edit                => 1,
122             shelfnumber         => $shelfnumber,
123             shelfname           => $shelfname,
124             "category$category" => 1
125         );
126
127         #         editshelf($query->param('shelf'));
128         last SWITCH;
129     }
130     if ( $query->param('viewshelf') ) {
131         #check that the user can view the shelf
132         my $shelfnumber = $query->param('viewshelf');
133         if ( ShelfPossibleAction( $loggedinuser, $shelfnumber, 'view' ) ) {
134             my $items = GetShelfContents($shelfnumber);
135             $template->param(
136                 shelfname   => $shelflist->{$shelfnumber}->{'shelfname'},
137                 shelfnumber => $shelfnumber,
138                 viewshelf   => $query->param('viewshelf'),
139                 manageshelf => &ShelfPossibleAction( $loggedinuser, $shelfnumber, 'manage' ),
140                 itemsloop   => $items,
141             );
142         }
143         last SWITCH;
144     }
145     if ( $query->param('shelves') ) {
146         if ( my $newshelf = $query->param('addshelf') ) {
147             my $shelfnumber = AddShelf(
148                 $newshelf,
149                 $query->param('owner'),
150                 $query->param('category')
151             );
152
153             if ( $shelfnumber == -1 ) {    #shelf already exists.
154                 $template->param(
155                     {
156                         shelfnumber => $shelfnumber,
157                         already     => 1
158                     }
159                 );
160             }
161     }
162     my @paramsloop;
163     foreach ( $query->param() ) {
164         my %line;
165         if (/DEL-(\d+)/) {
166             my $delshelf = $1;
167             my ( $status, $count ) = DelShelf($delshelf);
168             if ($status) {
169                 $line{'status'} = $status;
170                 $line{'count'}  = $count;
171             }
172         }
173
174         #if the shelf is not deleted, %line points on null
175         push( @paramsloop, \%line );
176     }
177     $template->param( paramsloop => \@paramsloop );
178     my ($shelflist) = GetShelves( $loggedinuser, 2 );
179     my $color = '';
180     my @shelvesloop;
181     foreach my $element ( sort keys %$shelflist ) {
182         my %line;
183         ( $color eq 1 ) ? ( $color = 0 ) : ( $color = 1 );
184         $line{'toggle'}         = $color;
185         $line{'shelf'}          = $element;
186         $line{'shelfname'}      = $shelflist->{$element}->{'shelfname'};
187         $line{'shelfvirtualcount'} = $shelflist->{$element}->{'count'};
188         push( @shelvesloop, \%line );
189     }
190     $template->param(
191         shelvesloop => \@shelvesloop,
192         shelves     => 1,
193     );
194         last SWITCH;
195     }
196 }
197
198 ($shelflist) =
199   GetShelves( $loggedinuser, 2 )
200   ;    # rebuild shelflist in case a shelf has been added
201
202 my $color = '';
203 my @shelvesloop;
204 foreach my $element ( sort keys %$shelflist ) {
205     my %line;
206     ( $color eq 1 ) ? ( $color = 0 ) : ( $color = 1 );
207     $line{'toggle'}    = $color;
208         $line{'shelf'}     = $element;
209         $line{'shelfname'} = $shelflist->{$element}->{'shelfname'};
210         $line{ "category" . $shelflist->{$element}->{'category'} } = 1;
211         $line{'mine'} = 1 if $shelflist->{$element}->{'owner'} eq $loggedinuser;
212         $line{'shelfvirtualcount'} = $shelflist->{$element}->{'count'};
213         $line{'canmanage'}      =
214           ShelfPossibleAction( $loggedinuser, $element, 'manage' );
215         $line{'firstname'} = $shelflist->{$element}->{'firstname'}
216           unless $shelflist->{$element}->{'owner'} eq $loggedinuser;
217         $line{'surname'} = $shelflist->{$element}->{'surname'}
218           unless $shelflist->{$element}->{'owner'} eq $loggedinuser;
219         push( @shelvesloop, \%line );
220     }
221
222 $template->param(
223     shelvesloop             => \@shelvesloop,
224     "BiblioDefaultView".C4::Context->preference("BiblioDefaultView") => 1,
225 );
226
227 output_html_with_http_headers $query, $cookie, $template->output;
228
229
230
231 #
232 # Revision 1.12  2007/04/24 13:54:29  hdl
233 # functions that were in C4::Interface::CGI::Output are now in C4::Output.
234 # So this implies quite a change for files.
235 # Sorry about conflicts which will be caused.
236 # directory Interface::CGI should now be dropped.
237 # I noticed that many scripts (reports ones, but also some circ/stats.pl or opac-topissues) still use Date::Manip.
238 #
239 # Revision 1.11  2007/04/17 08:52:19  tipaul
240 # circulation cleaning continued: bufixing
241 #
242 # Revision 1.10  2007/04/04 16:46:23  tipaul
243 # HUGE COMMIT : code cleaning circulation.
244 #
245 # some stuff to do, i'll write a mail on koha-devel NOW !
246 #
247 # Revision 1.9  2007/03/09 15:12:54  tipaul
248 # rel_3_0 moved to HEAD
249 #
250 # Revision 1.8.2.12  2007/01/15 17:19:30  toins
251 # enable to add checked items to a shelf.
252 # Some display enhancements.
253 #
254 # Revision 1.8.2.11  2007/01/10 10:52:58  toins
255 # adding syspref directly to Auth.pm instead of to the template.
256 #
257 # Revision 1.8.2.10  2007/01/10 10:12:48  toins
258 # Adding OpacTopissue, OpacCloud, OpacAuthorithies to the template->param.
259 # + Some cleanup.
260 #
261 # Revision 1.8.2.9  2006/12/15 17:43:24  toins
262 # sync with intranet.
263 #
264 # Revision 1.8.2.8  2006/12/14 17:59:17  toins
265 # add the link to "BiblioDefaultView systempref" and not to opac-detail.pl
266 #
267 # Revision 1.8.2.7  2006/12/14 17:22:55  toins
268 # virtualshelves work perfectly with mod_perl and are cleaned.
269 #
270 # Revision 1.8.2.6  2006/12/14 16:04:25  toins
271 # sync with intranet.
272 #
273 # Revision 1.8.2.5  2006/12/11 17:10:06  toins
274 # fixing some bugs on virtualshelves.
275 #
276 # Revision 1.8.2.4  2006/12/07 15:42:15  toins
277 # synching opac & intranet.
278 # fix some broken link & bugs.
279 # removing warn compilation.
280 #
281 # Revision 1.8.2.3  2006/11/30 18:23:51  toins
282 # theses scripts don't need to use C4::Search.
283 #