Bug 13618: followup to remove tabs
[koha.git] / opac / opac-tags.pl
blobe7f892c3ec8b90d6db0a303e9c2fa34948192421
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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.
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.
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>.
21 =head1 NAME
23 opac-tags.pl
25 =head1 DESCRIPTION
27 TODO :: Description here
29 C4::Scrubber is used to remove all markup content from the sumitted text.
31 =cut
33 use strict;
34 use warnings;
35 use CGI qw ( -utf8 );
36 use CGI::Cookie; # need to check cookies before having CGI parse the POST request
38 use C4::Auth qw(:DEFAULT check_cookie_auth);
39 use C4::Context;
40 use C4::Debug;
41 use C4::Output qw(:html :ajax pagination_bar);
42 use C4::Scrubber;
43 use C4::Biblio;
44 use C4::Tags qw(add_tag get_approval_rows get_tag_rows remove_tag stratify_tags);
45 use C4::XSLT;
47 use Data::Dumper;
49 my %newtags = ();
50 my @deltags = ();
51 my %counts = ();
52 my @errors = ();
53 my $perBibResults = {};
55 # Indexes of @errors that do not apply to a particular biblionumber.
56 my @globalErrorIndexes = ();
58 sub ajax_auth_cgi { # returns CGI object
59 my $needed_flags = shift;
60 my %cookies = CGI::Cookie->fetch;
61 my $input = CGI->new;
62 my $sessid = $cookies{'CGISESSID'}->value;
63 my ($auth_status, $auth_sessid) = check_cookie_auth($sessid, $needed_flags);
64 $debug and
65 print STDERR "($auth_status, $auth_sessid) = check_cookie_auth($sessid," . Dumper($needed_flags) . ")\n";
66 if ($auth_status ne "ok") {
67 output_with_http_headers $input, undef,
68 "window.alert('Your CGI session cookie ($sessid) is not current. " .
69 "Please refresh the page and try again.');\n", 'js';
70 exit 0;
72 $debug and print STDERR "AJAX request: " . Dumper($input),
73 "\n(\$auth_status,\$auth_sessid) = ($auth_status,$auth_sessid)\n";
74 return $input;
77 # The trick here is to support multiple tags added to multiple bilbios in one POST.
78 # The HTML might not use this, but it makes it more web-servicey from the start.
79 # So the name of param has to have biblionumber built in.
80 # For lack of anything more compelling, we just use "newtag[biblionumber]"
81 # We split the value into tags at comma and semicolon
83 my $is_ajax = is_ajax();
84 my $openadds = C4::Context->preference('TagsModeration') ? 0 : 1;
85 my $query = ($is_ajax) ? &ajax_auth_cgi({}) : CGI->new();
86 unless (C4::Context->preference('TagsEnabled')) {
87 push @errors, {+ tagsdisabled=>1 };
88 push @globalErrorIndexes, $#errors;
89 } else {
90 foreach ($query->param) {
91 if (/^newtag(.*)/) {
92 my $biblionumber = $1;
93 unless ($biblionumber =~ /^\d+$/) {
94 $debug and warn "$_ references non numerical biblionumber '$biblionumber'";
95 push @errors, {+'badparam' => $_ };
96 push @globalErrorIndexes, $#errors;
97 next;
99 $newtags{$biblionumber} = $query->param($_);
100 } elsif (/^del(\d+)$/) {
101 push @deltags, $1;
106 my $add_op = (scalar(keys %newtags) + scalar(@deltags)) ? 1 : 0;
107 my ($template, $loggedinuser, $cookie);
108 if ($is_ajax) {
109 $loggedinuser = C4::Context->userenv->{'number'}; # must occur AFTER auth
110 $debug and print STDERR "op: $loggedinuser\n";
111 } else {
112 ($template, $loggedinuser, $cookie) = get_template_and_user({
113 template_name => "opac-tags.tt",
114 query => $query,
115 type => "opac",
116 authnotrequired => ($add_op ? 0 : 1), # auth required to add tags
117 debug => 1,
121 if ($add_op) {
122 unless ($loggedinuser) {
123 push @errors, {+'login' => 1 };
124 push @globalErrorIndexes, $#errors;
125 %newtags=(); # zero out any attempted additions
126 @deltags=(); # zero out any attempted deletions
130 my $scrubber;
131 my @newtags_keys = (keys %newtags);
132 if (scalar @newtags_keys) {
133 $scrubber = C4::Scrubber->new();
134 foreach my $biblionumber (@newtags_keys) {
135 my $bibResults = {adds=>0, errors=>[]};
136 my @values = split /[;,]/, $newtags{$biblionumber};
137 foreach (@values) {
138 s/^\s*(.+)\s*$/$1/;
139 my $clean_tag = $scrubber->scrub($_);
140 unless ($clean_tag eq $_) {
141 if ($clean_tag =~ /\S/) {
142 push @errors, {scrubbed=>$clean_tag};
143 push @{$bibResults->{errors}}, {scrubbed=>$clean_tag};
144 } else {
145 push @errors, {scrubbed_all_bad=>1};
146 push @{$bibResults->{errors}}, {scrubbed_all_bad=>1};
147 next; # we don't add it if there's nothing left!
150 my $result = ($openadds) ?
151 add_tag($biblionumber,$clean_tag,$loggedinuser,$loggedinuser) : # pre-approved
152 add_tag($biblionumber,$clean_tag,$loggedinuser) ;
153 if ($result) {
154 $counts{$biblionumber}++;
155 $bibResults->{adds}++;
156 } else {
157 push @errors, {failed_add_tag=>$clean_tag};
158 push @{$bibResults->{errors}}, {failed_add_tag=>$clean_tag};
159 $debug and warn "add_tag($biblionumber,$clean_tag,$loggedinuser...) returned bad result (" . (defined $result ? $result : 'UNDEF') .")";
162 $perBibResults->{$biblionumber} = $bibResults;
165 my $dels = 0;
166 foreach (@deltags) {
167 if (remove_tag($_,$loggedinuser)) {
168 $dels++;
169 } else {
170 push @errors, {failed_delete=>$_};
174 if ($is_ajax) {
175 my $sum = 0;
176 foreach (values %counts) {$sum += $_;}
177 my $js_reply = sprintf("response = {\n\tadded: %d,\n\tdeleted: %d,\n\terrors: %d",$sum,$dels,scalar @errors);
179 # If no add attempts were made, flag global errors.
180 if (@globalErrorIndexes) {
181 $js_reply .= ",\n\tglobal_errors: [";
182 my $first = 1;
183 foreach (@globalErrorIndexes) {
184 $js_reply .= "," unless $first;
185 $first = 0;
186 $js_reply .= "\n\t\t$_";
188 $js_reply .= "\n\t]";
191 my $err_string = '';
192 if (scalar @errors) {
193 $err_string = ",\n\talerts: ["; # open response_function
194 my $i = 1;
195 foreach (@errors) {
196 my $key = (keys %$_)[0];
197 $err_string .= "\n\t\t KOHA.Tags.tag_message.$key(\"" . $_->{$key} . '")';
198 if($i < scalar @errors){ $err_string .= ","; }
199 $i++;
201 $err_string .= "\n\t]\n"; # close response_function
204 # Add per-biblionumber results for use on results page
205 my $js_perbib = "";
206 for my $bib (keys %$perBibResults) {
207 my $bibResult = $perBibResults->{$bib};
208 my $js_bibres = ",\n\t$bib: {\n\t\tadded: $bibResult->{adds}";
209 $js_bibres .= ",\n\t\terrors: [";
210 my $i = 0;
211 foreach (@{$bibResult->{errors}}) {
212 $js_bibres .= "," if ($i);
213 my $key = (keys %$_)[0];
214 $js_bibres .= "\n\t\t\t KOHA.Tags.tag_message.$key(\"" . $_->{$key} . '")';
215 $i++;
217 $js_bibres .= "\n\t\t]\n\t}";
218 $js_perbib .= $js_bibres;
221 output_with_http_headers($query, undef, "$js_reply\n$err_string\n$js_perbib\n};", 'js');
222 exit;
225 my $results = [];
226 my $my_tags = [];
228 if ($loggedinuser) {
229 $my_tags = get_tag_rows({borrowernumber=>$loggedinuser});
230 my $my_approved_tags = get_approval_rows({ approved => 1 });
231 foreach my $tag (@$my_tags) {
232 my $biblio = GetBiblioData($tag->{biblionumber});
233 my $record = &GetMarcBiblio( $tag->{biblionumber} );
234 $tag->{subtitle} = GetRecordValue( 'subtitle', $record, GetFrameworkCode( $tag->{biblionumber} ) );
235 $tag->{title} = $biblio->{title};
236 $tag->{author} = $biblio->{author};
237 if (C4::Context->preference("OPACXSLTResultsDisplay")) {
238 $tag->{XSLTBloc} = XSLTParse4Display($tag->{biblionumber}, $record, "OPACXSLTResultsDisplay");
240 my $date = $tag->{date_created} || '';
241 $date =~ /\s+(\d{2}\:\d{2}\:\d{2})/;
242 $tag->{time_created_display} = $1;
243 $tag->{approved} = ( grep { $_->{term} eq $tag->{term} and $_->{approved} } @$my_approved_tags );
247 $template->param(tagsview => 1);
249 if ($add_op) {
250 my $adds = 0;
251 for (values %counts) {$adds += $_;}
252 $template->param(
253 add_op => 1,
254 added_count => $adds,
255 deleted_count => $dels,
257 } else {
258 my ($arg,$limit,$mine);
259 my $hardmax = 100; # you might disagree what this value should be, but there definitely should be a max
260 $limit = $query->param('limit') || $hardmax;
261 $mine = $query->param('mine') || 0; # set if the patron want to see only his own tags.
262 ($limit =~ /^\d+$/ and $limit <= $hardmax) or $limit = $hardmax;
263 $template->param(limit => $limit);
264 my $arghash = {approved=>1, limit=>$limit, 'sort'=>'-weight_total'};
265 $arghash->{'borrowernumber'} = $loggedinuser if $mine;
266 # ($openadds) or $arghash->{approved} = 1;
267 if ($arg = $query->param('tag')) {
268 $arghash->{term} = $arg;
269 } elsif ($arg = $query->param('biblionumber')) {
270 $arghash->{biblionumber} = $arg;
272 $results = get_approval_rows($arghash);
273 stratify_tags(10, $results); # work out the differents sizes for things
274 my $count = scalar @$results;
275 $template->param(TAGLOOP_COUNT => $count, mine => $mine);
277 (scalar @errors ) and $template->param(ERRORS => \@errors);
278 my @orderedresult = sort { uc($a->{'term'}) cmp uc($b->{'term'}) } @$results;
279 (scalar @$results) and $template->param(TAGLOOP => \@orderedresult );
280 (scalar @$my_tags) and $template->param(MY_TAGS => $my_tags);
282 output_html_with_http_headers $query, $cookie, $template->output;
283 __END__
285 =head1 EXAMPLE AJAX POST PARAMETERS
287 CGISESSID 7c6288263107beb320f70f78fd767f56
288 newtag396 fire,+<a+href="foobar.html">foobar</a>,+<img+src="foo.jpg"+/>
290 So this request is trying to add 3 tags to biblio #396. The CGISESSID is the same as that the browser would
291 typically communicate using cookies. If it is valid, the server will split the value of "newtag396" and
292 process the components for addition. In this case the intended tags are:
293 fire
294 <a+href="foobar.html">foobar</a>
295 <img src="foo.jpg" />
297 The first tag is acceptable. The second will be scrubbed of markup, resulting in the tag "foobar".
298 The third tag is all markup, and will be rejected.
300 =head1 EXAMPLE AJAX JSON response
302 response = {
303 added: 2,
304 deleted: 0,
305 errors: 2,
306 alerts: [
307 KOHA.Tags.tag_message.scrubbed("foobar"),
308 KOHA.Tags.tag_message.scrubbed_all_bad("1"),
312 =cut