Merge remote-tracking branch 'origin/new/bug_6488'
[koha.git] / opac / opac-main.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
19 use strict;
20 use warnings;
21 use CGI;
22 use C4::Auth;    # get_template_and_user
23 use C4::Output;
24 use C4::Members;         # GetMember
25 use C4::NewsChannels;    # get_opac_news
26 use C4::Languages qw(getTranslatedLanguages accept_language);
27
28 my $input = new CGI;
29 my $dbh   = C4::Context->dbh;
30
31 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
32     {
33         template_name   => "opac-main.tmpl",
34         type            => "opac",
35         query           => $input,
36         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
37         flagsrequired   => { borrow => 1 },
38     }
39 );
40
41 my $casAuthentication = C4::Context->preference('casAuthentication');
42 $template->param(
43     casAuthentication   => $casAuthentication,
44 );
45
46
47 my $borrower = GetMember( borrowernumber=>$borrowernumber );
48 $template->param(
49     textmessaging        => $borrower->{textmessaging},
50 ) if (ref($borrower) eq "HASH");
51
52 # display news
53 # use cookie setting for language, bug default to syspref if it's not set
54 my ($theme, $news_lang) = C4::Templates::themelanguage(C4::Context->config('opachtdocs'),'opac-main.tt','opac',$input);
55
56 my $all_koha_news   = &GetNewsToDisplay($news_lang);
57 my $koha_news_count = scalar @$all_koha_news;
58
59 $template->param(
60     koha_news       => $all_koha_news,
61     koha_news_count => $koha_news_count
62 );
63
64 # If GoogleIndicTransliteration system preference is On Set paramter to load Google's javascript in OPAC search screens
65 if (C4::Context->preference('GoogleIndicTransliteration')) {
66         $template->param('GoogleIndicTransliteration' => 1);
67 }
68
69 output_html_with_http_headers $input, $cookie, $template->output;