GetSubscription... renamed to CountSubscription...
[koha.git] / opac / opac-shelves.pl
1 #!/usr/bin/perl
2 #script to provide bookshelf management
3 # WARNING: This file uses 4-character tabs!
4 #
5 # $Header$
6 #
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA  02111-1307 USA
23
24 use strict;
25 use C4::Search;
26 use CGI;
27 use C4::Output;
28 use C4::BookShelves;
29 use C4::Circulation::Circ2;
30 use C4::Auth;
31 use C4::Interface::CGI::Output;
32 use HTML::Template;
33
34 my $env;
35 my $query = new CGI;
36
37 my ($template, $loggedinuser, $cookie)
38     = get_template_and_user({template_name => "opac-shelves.tmpl",
39                                                         query => $query,
40                                                         type => "opac",
41                                                         authnotrequired => 1,
42                                                 });
43
44 if ($query->param('modifyshelfcontents')) {
45         my $shelfnumber=$query->param('shelfnumber');
46         my $barcode=$query->param('addbarcode');
47         my ($item) = getiteminformation($env, 0, $barcode);
48         if (ShelfPossibleAction($loggedinuser,$shelfnumber,'manage')) {
49                 AddToShelf($env, $item->{'itemnumber'}, $shelfnumber);
50                 foreach ($query->param) {
51                         if (/REM-(\d*)/) {
52                                 my $itemnumber=$1;
53                                 RemoveFromShelf($env, $itemnumber, $shelfnumber);
54                         }
55                 }
56         }
57 }
58 my ($shelflist) = GetShelfList($loggedinuser,2);
59
60 $template->param({      loggedinuser => $loggedinuser,
61                                 });
62 SWITCH: {
63         if ($query->param('op') eq 'modifsave') {
64                 ModifShelf($query->param('shelfnumber'),$query->param('shelfname'),$loggedinuser,$query->param('category'));
65                 last SWITCH;
66         }
67         if ($query->param('op') eq 'modif') {
68                 my ($shelfnumber,$shelfname,$owner,$category) = GetShelf($query->param('shelf'));
69                 $template->param(edit => 1,
70                                                 shelfnumber => $shelfnumber,
71                                                 shelfname => $shelfname,
72                                                 "category$category" => 1);
73 #               editshelf($query->param('shelf'));
74                 last SWITCH;
75         }
76         if ($query->param('viewshelf')) {
77                 viewshelf($query->param('viewshelf'));
78                 last SWITCH;
79         }
80         if ($query->param('shelves')) {
81                 shelves();
82                 last SWITCH;
83         }
84 }
85
86 ($shelflist) = GetShelfList($loggedinuser,2); # rebuild shelflist in case a shelf has been added
87
88 my $color='';
89 my @shelvesloop;
90 foreach my $element (sort keys %$shelflist) {
91                 my %line;
92                 ($color eq 0) ? ($color=1) : ($color=0);
93                 $line{'color'}= $color;
94                 $line{'shelf'}=$element;
95                 $line{'shelfname'}=$shelflist->{$element}->{'shelfname'};
96                 $line{"category".$shelflist->{$element}->{'category'}} = 1;
97                 $line{'mine'} = 1 if $shelflist->{$element}->{'owner'} eq $loggedinuser;
98                 $line{'shelfbookcount'}=$shelflist->{$element}->{'count'};
99                 $line{'canmanage'} = ShelfPossibleAction($loggedinuser,$element,'manage');
100                 $line{'firstname'}=$shelflist->{$element}->{'firstname'} unless $shelflist->{$element}->{'owner'} eq $loggedinuser;
101                 $line{'surname'}=$shelflist->{$element}->{'surname'} unless $shelflist->{$element}->{'owner'} eq $loggedinuser;
102 ;
103                 push (@shelvesloop, \%line);
104 }
105 $template->param(shelvesloop => \@shelvesloop);
106
107 output_html_with_http_headers $query, $cookie, $template->output;
108
109 # sub editshelf {
110 #       my ($shelfnumber) = @_;
111 #       my ($shelfnumber,$shelfname,$owner,$category) = GetShelf($shelfnumber);
112 #       $template->param(edit => 1,
113 #                                       shelfnumber => $shelfnumber,
114 #                                       shelfname => $shelfname,
115 #                                       "category$category" => 1);
116 # }
117 sub shelves {
118         if (my $newshelf=$query->param('addshelf')) {
119                 my ($status, $string) = AddShelf($env,$newshelf,$query->param('owner'),$query->param('category'));
120                 if ($status) {
121                         $template->param(status1 => $status, string1 => $string);
122                 }
123         }
124         my @paramsloop;
125         foreach ($query->param()) {
126                 my %line;
127                 if (/DEL-(\d+)/) {
128                         my $delshelf=$1;
129                         my ($status, $string) = RemoveShelf($env,$delshelf);
130                         if ($status) {
131                                 $line{'status'}=$status;
132                                 $line{'string'} = $string;
133                         }
134                 }
135                 #if the shelf is not deleted, %line points on null
136                 push(@paramsloop,\%line);
137         }
138         $template->param(paramsloop => \@paramsloop);
139         my ($shelflist) = GetShelfList($loggedinuser,2);
140         my $color='';
141         my @shelvesloop;
142         foreach my $element (sort keys %$shelflist) {
143                 my %line;
144                 ($color eq 0) ? ($color=1) : ($color=0);
145                 $line{'color'}=$color;
146                 $line{'shelf'}=$element;
147                 $line{'shelfname'}=$shelflist->{$element}->{'shelfname'} ;
148                 $line{'shelfbookcount'}=$shelflist->{$element}->{'count'} ;
149                 push(@shelvesloop, \%line);
150         }
151         $template->param(shelvesloop=>\@shelvesloop,
152                                                         shelves => 1,
153                                                 );
154 }
155
156 sub viewshelf {
157         my $shelfnumber=shift;
158         #check that the user can view the shelf
159         return unless (ShelfPossibleAction($loggedinuser,$shelfnumber,'view'));
160         my ($itemlist) = GetShelfContents($env, $shelfnumber);
161         my $item='';
162         my $color='';
163         my @itemsloop;
164         foreach $item (sort {$a->{'barcode'} cmp $b->{'barcode'}} @$itemlist) {
165                 my %line;
166                 ($color eq 0) ? ($color=1) : ($color=0);
167                 $line{'color'}=$color;
168                 $line{'itemnumber'}=$item->{'itemnumber'};
169                 $line{'barcode'}=$item->{'barcode'};
170                 $line{'title'}=$item->{'title'};
171                 $line{'author'}=$item->{'author'};
172                 $line{'classification'}=$item->{'classification'};              
173                 $line{'itemtype'}=$item->{'itemtype'};          
174                 $line{biblionumber} = $item->{biblionumber};
175                 push(@itemsloop, \%line);
176         }
177         $template->param(       itemsloop => \@itemsloop,
178                                                 shelfname => $shelflist->{$shelfnumber}->{'shelfname'},
179                                                 shelfnumber => $shelfnumber,
180                                                 viewshelf => $query->param('viewshelf'),
181                                                 manageshelf => &ShelfPossibleAction($loggedinuser,$shelfnumber,'manage'),
182                                         );
183 }
184
185 #
186 # $Log$
187 # Revision 1.8  2006/05/21 02:30:17  kados
188 # syncing dev-week and HEAD
189 #
190 # Revision 1.7  2005/05/04 09:02:38  tipaul
191 # synch'ing 2.2 and head
192 #
193 # Revision 1.3.2.4  2005/03/25 17:04:28  tipaul
194 # adding virtual shelves & suggestions button to the top
195 #
196 # Revision 1.3.2.3  2005/01/27 17:18:28  oleonard
197 # Taking table cell background color information out of the script and moving it into the template (requires update to opac-shelves.tmpl)
198 #
199 # Revision 1.3.2.2  2005/01/11 20:18:29  oleonard
200 # Adding call number and item type to list of returned variables
201 #
202 # Revision 1.3.2.1  2005/01/11 16:33:57  tipaul
203 # fix for http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=811 :
204 # The OPAC requires uses to log in to view virtual shelves, and it requires a user
205 # with librarian privileges.  Virtual shelves should be viewable by all users,
206 # logged in or not, and editable by all logged-in users in good standing.
207 #
208 # Revision 1.3  2005/01/03 11:09:34  tipaul
209 # synch'ing virtual shelves management in opac with the librarian one, that has more features
210 #
211 # Revision 1.5  2004/12/16 11:30:57  tipaul
212 # adding bookshelf features :
213 # * create bookshelf on the fly
214 # * modify a bookshelf name & status
215 #
216 # Revision 1.4  2004/12/15 17:28:23  tipaul
217 # adding bookshelf features :
218 # * create bookshelf on the fly
219 # * modify a bookshelf (this being not finished, will commit the rest soon)
220 #
221 # Revision 1.3  2004/12/02 16:38:50  tipaul
222 # improvement in book shelves
223 #
224 # Revision 1.2  2004/11/19 16:31:30  tipaul
225 # bugfix for bookshelves not in official CVS
226 #
227 # Revision 1.1.2.1  2004/03/10 15:08:18  tipaul
228 # modifying shelves : introducing category of shelf : private, public, free for all
229 #
230 # Revision 1.13  2004/02/11 08:35:31  tipaul
231 # synch'ing 2.0.0 branch and head
232 #
233 # Revision 1.12.2.1  2004/02/06 14:22:19  tipaul
234 # fixing bugs in bookshelves management.
235 #
236 # Revision 1.12  2003/02/05 10:04:14  acli
237 # Worked around weirdness with HTML::Template; without the {}, it complains
238 # of being passed an odd number of arguments even though we are not
239 #
240 # Revision 1.11  2003/02/05 09:23:03  acli
241 # Fixed a few minor errors to make it run
242 # Noted correct tab size
243 #
244 # Revision 1.10  2003/02/02 07:18:37  acli
245 # Moved C4/Charset.pm to C4/Interface/CGI/Output.pm
246 #
247 # Create output_html_with_http_headers function to contain the "print $query
248 # ->header(-type => guesstype...),..." call. This is in preparation for
249 # non-HTML output (e.g., text/xml) and charset conversion before output in
250 # the future.
251 #
252 # Created C4/Interface/CGI/Template.pm to hold convenience functions specific
253 # to the CGI interface using HTML::Template
254 #
255 # Modified moremembers.pl to make the "sex" field localizable for languages
256 # where M and F doesn't make sense
257 #
258 # Revision 1.9  2002/12/19 18:55:40  hdl
259 # Templating reservereport et shelves.
260 #
261 # Revision 1.9  2002/08/14 18:12:51  hdl
262 # Templating files
263 #
264 # Revision 1.8  2002/08/14 18:12:51  tonnesen
265 # Added copyright statement to all .pl and .pm files
266 #
267 # Revision 1.7  2002/07/05 05:03:37  tonnesen
268 # Minor changes to authentication routines.
269 #
270 # Revision 1.5  2002/07/04 19:42:48  tonnesen
271 # Minor changes
272 #
273 # Revision 1.4  2002/07/04 19:21:29  tonnesen
274 # Beginning of authentication api.  Applied to shelves.pl for now as a test case.
275 #
276 # Revision 1.2.2.1  2002/06/26 20:28:15  tonnesen
277 # Some udpates that I made here locally a while ago.  Still won't be useful, but
278 # should be functional
279 #
280 #
281 #
282
283
284
285
286 # Local Variables:
287 # tab-width: 4
288 # End: