Bug 20310: (follow-up) Check if biblio exists; 755 host_record.t
[koha.git] / opac / opac-request-article.pl
1 #!/usr/bin/perl
2
3 # Copyright ByWater Solutions 2015
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
22 use CGI qw ( -utf8 );
23
24 use C4::Auth;
25 use C4::Output;
26
27 use Koha::Biblios;
28 use Koha::Patrons;
29
30 my $cgi = CGI->new;
31
32 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
33     {
34         template_name   => "opac-request-article.tt",
35         query           => $cgi,
36         type            => "opac",
37     }
38 );
39
40 my $action = $cgi->param('action') || q{};
41 my $biblionumber = $cgi->param('biblionumber');
42 my $biblio = Koha::Biblios->find($biblionumber);
43 if( !$biblio ) {
44     print $cgi->redirect("/cgi-bin/koha/errors/404.pl");
45     exit;
46 }
47
48 if ( $action eq 'create' ) {
49     my $branchcode = $cgi->param('branchcode');
50
51     my $itemnumber   = $cgi->param('itemnumber')   || undef;
52     my $title        = $cgi->param('title')        || undef;
53     my $author       = $cgi->param('author')       || undef;
54     my $volume       = $cgi->param('volume')       || undef;
55     my $issue        = $cgi->param('issue')        || undef;
56     my $date         = $cgi->param('date')         || undef;
57     my $pages        = $cgi->param('pages')        || undef;
58     my $chapters     = $cgi->param('chapters')     || undef;
59     my $patron_notes = $cgi->param('patron_notes') || undef;
60
61     my $ar = Koha::ArticleRequest->new(
62         {
63             borrowernumber => $borrowernumber,
64             biblionumber   => $biblionumber,
65             branchcode     => $branchcode,
66             itemnumber     => $itemnumber,
67             title          => $title,
68             author         => $author,
69             volume         => $volume,
70             issue          => $issue,
71             date           => $date,
72             pages          => $pages,
73             chapters       => $chapters,
74             patron_notes   => $patron_notes,
75         }
76     )->store();
77
78     print $cgi->redirect("/cgi-bin/koha/opac-user.pl#opac-user-article-requests");
79     exit;
80 } elsif ( !$action ) {
81     # Should we redirect?
82     # Conditions: no items, host item entry (MARC21 773)
83     my ( $host, $pageinfo ) = $biblio->host_record({ no_items => 1 });
84     if( $host ) {
85         $template->param( pageinfo => $pageinfo, title => $biblio->title, author => $biblio->author );
86         $biblio = $host;
87     }
88 }
89
90 my $patron = Koha::Patrons->find($borrowernumber);
91
92 $template->param(
93     biblio => $biblio,
94     patron => $patron,
95     action => $action
96 );
97
98 output_html_with_http_headers $cgi, $cookie, $template->output, undef, { force_no_caching => 1 };