Bug 7567 - Use, display, filter News by library
[koha.git] / tools / koha-news.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Script to manage the opac news.
6 # written 11/04
7 # Casta�eda, Carlos Sebastian - seba3c@yahoo.com.ar - Physics Library UNLP Argentina
8 # Modified to include news to KOHA intranet - tgarip@neu.edu.tr NEU library -Cyprus
9 # Copyright 2000-2002 Katipo Communications
10 # Copyright (C) 2013    Mark Tompsett
11 #
12 # Koha is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 3 of the License, or
15 # (at your option) any later version.
16 #
17 # Koha is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24
25 use strict;
26 # use warnings; FIXME - Bug 2505
27 use CGI;
28 use C4::Auth;
29 use C4::Koha;
30 use C4::Context;
31 use C4::Dates qw(format_date_in_iso);
32 use C4::Output;
33 use C4::NewsChannels;
34 use C4::Languages qw(getTranslatedLanguages);
35 use Date::Calc qw/Date_to_Days Today/;
36 use C4::Branch qw/GetBranches/;
37
38 my $cgi = new CGI;
39
40 my $id             = $cgi->param('id');
41 my $title          = $cgi->param('title');
42 my $new            = $cgi->param('new');
43 my $expirationdate = format_date_in_iso($cgi->param('expirationdate'));
44 my $timestamp      = format_date_in_iso($cgi->param('timestamp'));
45 my $number         = $cgi->param('number');
46 my $lang           = $cgi->param('lang');
47 my $branchcode     = $cgi->param('branch');
48 # Foreign Key constraints work with NULL, not ''
49 # NULL = All branches.
50 $branchcode = undef if (defined($branchcode) && $branchcode eq '');
51
52 my $new_detail = get_opac_new($id);
53
54 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
55     {
56         template_name   => "tools/koha-news.tmpl",
57         query           => $cgi,
58         type            => "intranet",
59         authnotrequired => 0,
60         flagsrequired   => { tools => 'edit_news' },
61         debug           => 1,
62     }
63 );
64
65 # get lang list
66 my @lang_list;
67 my $tlangs = getTranslatedLanguages() ;
68 foreach my $language ( @$tlangs ) {
69     push @lang_list,
70       {
71         language => $language->{'rfc4646_subtag'},
72         selected => ( $new_detail->{lang} eq $language->{'rfc4646_subtag'} ? 1 : 0 ),
73       };
74 }
75
76 my $branches = GetBranches;
77
78 $template->param( lang_list   => \@lang_list,
79                   branch_list => $branches,
80                   branchcode  => $branchcode );
81
82 my $op = $cgi->param('op') // '';
83
84 if ( $op eq 'add_form' ) {
85     $template->param( add_form => 1 );
86     if ($id) {
87         if($new_detail->{lang} eq "slip"){ $template->param( slip => 1); }
88         $template->param( 
89             op => 'edit',
90             id => $new_detail->{'idnew'}
91         );
92         $template->{VARS}->{'new_detail'} = $new_detail;
93     }
94     else {
95         $template->param( op => 'add' );
96     }
97 }
98 elsif ( $op eq 'add' ) {
99     my $parameters = {
100                       title          => $title,
101                       new            => $new,
102                       lang           => $lang,
103                       expirationdate => $expirationdate,
104                       timestamp      => $timestamp,
105                       number         => $number,
106                       branchcode     => $branchcode,
107                   };
108     add_opac_new( $parameters );
109     print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
110 }
111 elsif ( $op eq 'edit' ) {
112     my $parameters = {
113                       idnew          => $id,
114                       title          => $title,
115                       new            => $new,
116                       lang           => $lang,
117                       expirationdate => $expirationdate,
118                       timestamp      => $timestamp,
119                       number         => $number,
120                       branchcode     => $branchcode,
121                   };
122     upd_opac_new( $parameters );
123     print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
124 }
125 elsif ( $op eq 'del' ) {
126     my @ids = $cgi->param('ids');
127     del_opac_new( join ",", @ids );
128     print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
129 }
130
131 else {
132
133     my ( $opac_news_count, $opac_news ) = &get_opac_news( undef, $lang, $branchcode );
134     
135     foreach my $new ( @$opac_news ) {
136         next unless $new->{'expirationdate'};
137         #$new->{'expirationdate'}=format_date_in_iso($new->{'expirationdate'});
138         my @date = split (/-/,$new->{'expirationdate'});
139         if ($date[0]*$date[1]*$date[2]>0 && Date_to_Days( @date ) < Date_to_Days(&Today) ){
140                         $new->{'expired'} = 1;
141         }
142     }
143     
144     $template->param(
145         opac_news       => $opac_news,
146         opac_news_count => $opac_news_count,
147                 );
148 }
149 $template->param( lang => $lang );
150 output_html_with_http_headers $cgi, $cookie, $template->output;