1 package C4
::NewsChannels
;
3 # This file is part of Koha.
5 # Copyright (C) 2000-2002 Katipo Communications
6 # Copyright (C) 2013 Mark Tompsett
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 use C4
::Dates
qw(format_date);
25 use vars
qw($VERSION @ISA @EXPORT);
28 $VERSION = 3.07.00.049; # set the version for version checking
32 &add_opac_new &upd_opac_new &del_opac_new &get_opac_new &get_opac_news
38 C4::NewsChannels - Functions to manage OPAC and intranet news
42 This module provides the functions needed to mange OPAC and intranet news.
50 $retval = add_opac_new($hashref);
52 $hashref should contains all the fields found in opac_news,
53 except idnew. The idnew field is auto-generated.
58 my ($href_entry) = @_;
62 my @fields = keys %{$href_entry};
63 my @values = values %{$href_entry};
64 my $field_string = join ',', @fields;
65 $field_string = $field_string // q{};
66 my $values_string = join(',', map { '?' } @fields);
67 my $dbh = C4
::Context
->dbh;
68 my $sth = $dbh->prepare("INSERT INTO opac_news ( $field_string ) VALUES ( $values_string )");
69 $sth->execute(@values);
77 $retval = upd_opac_new($hashref);
79 $hashref should contains all the fields found in opac_news,
80 including idnew, since it is the key for the SQL UPDATE.
85 my ($href_entry) = @_;
89 # take the keys of hash entry and make a list, but...
90 my @fields = keys %{$href_entry};
93 my $field_string = q{};
94 foreach my $field_name (@fields) {
96 if ( $field_name ne 'idnew' ) {
97 $field_string = $field_string . "$field_name = ?,";
98 push @values,$href_entry->{$field_name};
101 # put idnew at the end, so we know which record to update
102 push @values,$href_entry->{'idnew'};
103 chop $field_string; # remove that excess ,
105 my $dbh = C4
::Context
->dbh;
106 my $sth = $dbh->prepare("UPDATE opac_news SET $field_string WHERE idnew = ?;");
107 $sth->execute(@values);
116 my $dbh = C4
::Context
->dbh;
117 my $sth = $dbh->prepare("DELETE FROM opac_news WHERE idnew IN ($ids)");
127 my $dbh = C4
::Context
->dbh;
129 SELECT opac_news.*,branches.branchname
130 FROM opac_news LEFT JOIN branches
131 ON opac_news.branchcode=branches.branchcode
132 WHERE opac_news.idnew = ?;
134 my $sth = $dbh->prepare($query);
135 $sth->execute($idnew);
136 my $data = $sth->fetchrow_hashref;
137 $data->{$data->{'lang'}} = 1 if defined $data->{lang
};
138 $data->{expirationdate
} = format_date
($data->{expirationdate
});
139 $data->{timestamp
} = format_date
($data->{timestamp
});
144 my ($limit, $lang, $branchcode) = @_;
146 my $dbh = C4
::Context
->dbh;
148 SELECT opac_news.*, branches.branchname,
150 FROM opac_news LEFT JOIN branches
151 ON opac_news.branchcode=branches.branchcode
153 $query .= ' WHERE 1';
155 $query .= " AND (opac_news.lang='' OR opac_news.lang=?)";
159 $query .= ' AND (opac_news.branchcode IS NULL OR opac_news.branchcode=?)';
160 push @values,$branchcode;
162 $query.= ' ORDER BY timestamp DESC ';
164 # $query.= 'LIMIT 0, ' . $limit;
166 my $sth = $dbh->prepare($query);
167 $sth->execute(@values);
170 while (my $row = $sth->fetchrow_hashref) {
171 if ((($limit) && ($count < $limit)) || (!$limit)) {
172 push @opac_news, $row;
176 return ($count, \
@opac_news);
179 =head2 GetNewsToDisplay
181 $news = &GetNewsToDisplay($lang,$branch);
182 C<$news> is a ref to an array which containts
183 all news with expirationdate > today or expirationdate is null
184 that is applicable for a given branch.
188 sub GetNewsToDisplay
{
189 my ($lang,$branch) = @_;
190 my $dbh = C4
::Context
->dbh;
191 # SELECT *,DATE_FORMAT(timestamp, '%d/%m/%Y') AS newdate
193 SELECT *,timestamp AS newdate
196 expirationdate >= CURRENT_DATE()
197 OR expirationdate IS NULL
198 OR expirationdate = '00-00-0000'
200 AND DATE(timestamp) < DATE_ADD(CURDATE(), INTERVAL 1 DAY)
201 AND (lang = '' OR lang = ?)
202 AND (branchcode IS NULL OR branchcode = ?)
204 }; # expirationdate field is NOT in ISO format?
205 # timestamp has HH:mm:ss, CURRENT_DATE generates 00:00:00
206 # by adding 1, that captures today correctly.
207 my $sth = $dbh->prepare($query);
208 $lang = $lang // q{};
209 $sth->execute($lang,$branch);
211 while ( my $row = $sth->fetchrow_hashref ){
212 $row->{newdate
} = format_date
($row->{newdate
});