adding maintenance script to warn users when maintenance is on.
[koha.git] / opac / opac-user.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18 # $Id$
19
20 use strict;
21 require Exporter;
22 use CGI;
23
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Circulation;
27 use C4::Reserves;
28 use C4::Members;
29 use C4::Output;
30 use C4::Biblio;
31 use C4::Date;
32 use C4::Letters;
33 use C4::Branch; # GetBranches
34
35 my $query = new CGI;
36 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
37     {
38         template_name   => "opac-user.tmpl",
39         query           => $query,
40         type            => "opac",
41         authnotrequired => 0,
42         flagsrequired   => { borrow => 1 },
43         debug           => 1,
44     }
45 );
46
47 # get borrower information ....
48 my ( $borr, $flags ) = GetMemberDetails( $borrowernumber );
49
50 $borr->{'dateenrolled'} = format_date( $borr->{'dateenrolled'} );
51 $borr->{'expiry'}       = format_date( $borr->{'expiry'} );
52 $borr->{'dateofbirth'}  = format_date( $borr->{'dateofbirth'} );
53 $borr->{'ethnicity'}    = fixEthnicity( $borr->{'ethnicity'} );
54
55 if ( $borr->{'debarred'} || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
56     $borr->{'flagged'} = 1;
57 }
58
59 if ( $borr->{'amountoutstanding'} > 5 ) {
60     $borr->{'amountoverfive'} = 1;
61 }
62 if ( 5 >= $borr->{'amountoutstanding'} && $borr->{'amountoutstanding'} > 0 ) {
63     $borr->{'amountoverzero'} = 1;
64 }
65 if ( $borr->{'amountoutstanding'} < 0 ) {
66     $borr->{'amountlessthanzero'} = 1;
67     $borr->{'amountoutstanding'} = -1 * ( $borr->{'amountoutstanding'} );
68 }
69
70 $borr->{'amountoutstanding'} = sprintf "%.02f", $borr->{'amountoutstanding'};
71
72 my @bordat;
73 $bordat[0] = $borr;
74
75 $template->param( BORROWER_INFO  => \@bordat );
76 $template->param( borrowernumber => $borrowernumber );
77
78 #get issued items ....
79 my ($countissues,$issues) = GetPendingIssues($borrowernumber);
80
81 my $count          = 0;
82 my $overdues_count = 0;
83 my @overdues;
84 my @issuedat;
85 my $imgdir = getitemtypeimagesrc();
86 my $itemtypes = GetItemTypes();
87 foreach my $issue ( @$issues ) {
88
89     # check for reserves
90     my ( $restype, $res ) = CheckReserves( $issue->{'itemnumber'} );
91     if ( $restype ) {
92         $issue->{'reserved'} = 1;
93     }
94     
95     my ( $total , $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
96     my $charges = 0;
97     foreach my $ac (@$accts) {
98         if ( $ac->{'itemnumber'} == $issue->{'itemnumber'} ) {
99             $charges += $ac->{'amountoutstanding'}
100               if $ac->{'accounttype'} eq 'F';
101             $charges += $ac->{'amountoutstanding'}
102               if $ac->{'accounttype'} eq 'L';
103         }
104     }
105     $issue->{'charges'} = $charges;
106
107     # get publictype for icon
108
109     my $publictype = $issue->{'publictype'};
110     $issue->{$publictype} = 1;
111
112     # check if item is renewable
113     my $status = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
114
115     $issue->{'status'} = $status;
116
117     if ( $issue->{'overdue'} ) {
118         push @overdues, $issue;
119         $overdues_count++;
120         $issue->{'overdue'} = 1;
121     }
122     else {
123         $issue->{'issued'} = 1;
124     }
125     # imageurl:
126     my $itemtype = $issue->{'itemtype'};
127     if ( $itemtype ) {
128         $issue->{'imageurl'}    = $imgdir."/".$itemtypes->{$itemtype}->{'imageurl'};
129         $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
130     }
131     push @issuedat, $issue;
132     $count++;
133 }
134
135 $template->param( ISSUES       => \@issuedat );
136 $template->param( issues_count => $count );
137
138 $template->param( OVERDUES       => \@overdues );
139 $template->param( overdues_count => $overdues_count );
140
141 # load the branches
142 my $branches = GetBranches();
143 my @branch_loop;
144 for my $branch_hash ( keys %$branches ) {
145     my $selected=(C4::Context->userenv && ($branch_hash eq C4::Context->userenv->{branch})) if (C4::Context->preference('SearchMyLibraryFirst'));
146     push @branch_loop,
147       {
148         value      => "branch: $branch_hash",
149         branchname => $branches->{$branch_hash}->{'branchname'},
150         selected => $selected
151       };
152 }
153 $template->param( branchloop => \@branch_loop, "mylibraryfirst"=>C4::Context->preference("SearchMyLibraryFirst"));
154
155 # now the reserved items....
156 my @reserves  = GetReservesFromBorrowernumber( $borrowernumber );
157 foreach my $res (@reserves) {
158     $res->{'reservedate'} = format_date( $res->{'reservedate'} );
159     my $publictype = $res->{'publictype'};
160     $res->{$publictype} = 1;
161     $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
162     $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
163     my $biblioData = GetBiblioData($res->{'biblionumber'});
164     $res->{'reserves_title'} = $biblioData->{'title'};
165 }
166
167 # use Data::Dumper;
168 # warn Dumper(@reserves);
169
170 $template->param( RESERVES       => \@reserves );
171 $template->param( reserves_count => $#reserves+1 );
172
173 my @waiting;
174 my $wcount = 0;
175 foreach my $res (@reserves) {
176     if ( $res->{'itemnumber'} ) {
177         my $item = GetItem( $res->{'itemnumber'});
178         $res->{'holdingbranch'} =
179           $branches->{ $item->{'holdingbranch'} }->{'branchname'};
180         $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
181         if ( $res->{'holdingbranch'} eq $res->{'branch'} ) {
182             $res->{'atdestination'} = 1;
183         }
184         my $biblioData = GetBiblioData($res->{'biblionumber'});
185         $res->{'waiting_title'} = $biblioData->{'title'};
186         push @waiting, $res;
187         $wcount++;
188     }
189 }
190
191 $template->param( WAITING => \@waiting );
192
193 # current alert subscriptions
194 my $alerts = getalert($borrowernumber);
195 foreach ( @$alerts ) {
196     $_->{ $_->{type} } = 1;
197     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
198 }
199
200 $template->param(
201     waiting_count      => $wcount,
202     textmessaging      => $borr->{textmessaging},
203 );
204
205 output_html_with_http_headers $query, $cookie, $template->output;
206