Bug 18433: Allow to select results to export in item search
[koha.git] / tags / review.pl
blob43718fc4088a75356c3bd857456c5b0d6ba2b8bb
1 #!/usr/bin/perl
3 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
5 # Copyright 2008 LibLime
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use Modern::Perl;
23 use Data::Dumper;
24 use POSIX;
25 use CGI qw ( -utf8 );
26 use CGI::Cookie; # need to check cookies before having CGI parse the POST request
27 use URI::Escape;
28 use C4::Auth qw(:DEFAULT check_cookie_auth);
29 use C4::Context;
30 use Koha::DateUtils;
31 # use C4::Koha;
32 use C4::Output qw(:html :ajax pagination_bar);
33 use C4::Debug;
34 use C4::Tags qw(get_tags get_approval_rows approval_counts whitelist blacklist is_approved);
36 my $script_name = "/cgi-bin/koha/tags/review.pl";
37 my $needed_flags = { tools => 'moderate_tags' }; # FIXME: replace when more specific permission is created.
39 sub ajax_auth_cgi ($) { # returns CGI object
40 my $needed_flags = shift;
41 my %cookies = CGI::Cookie->fetch;
42 my $input = CGI->new;
43 my $sessid = $cookies{'CGISESSID'}->value;
44 my ($auth_status, $auth_sessid) = check_cookie_auth($sessid, $needed_flags);
45 $debug and
46 print STDERR "($auth_status, $auth_sessid) = check_cookie_auth($sessid," . Dumper($needed_flags) . ")\n";
47 if ($auth_status ne "ok") {
48 output_with_http_headers $input, undef,
49 "window.alert('Your CGI session cookie ($sessid) is not current. " .
50 "Please refresh the page and try again.');\n", 'js';
51 exit 0;
53 $debug and print STDERR "AJAX request: " . Dumper($input),
54 "\n(\$auth_status,\$auth_sessid) = ($auth_status,$auth_sessid)\n";
55 return $input;
58 if (is_ajax()) {
59 my $input = &ajax_auth_cgi($needed_flags);
60 my $operator = C4::Context->userenv->{'number'}; # must occur AFTER auth
61 $debug and print STDERR "op: " . Dumper($operator) . "\n";
62 my ($tag, $js_reply);
63 if ($tag = $input->param('test')) {
64 my $check = is_approved($tag);
65 $js_reply = ( $check >= 1 ? 'success' : $check <= -1 ? 'failure' : 'indeterminate' ) . "_test('".uri_escape_utf8($tag)."');\n";
67 if ($tag = $input->param('ok')) {
68 $js_reply = ( whitelist($operator,$tag) ? 'success' : 'failure') . "_approve('".uri_escape_utf8($tag)."');\n";
70 if ($tag = $input->param('rej')) {
71 $js_reply = ( blacklist($operator,$tag) ? 'success' : 'failure') . "_reject('".uri_escape_utf8($tag)."');\n";
73 output_with_http_headers $input, undef, $js_reply, 'js';
74 exit;
77 ### Below is the sad, boring, necessary non-AJAX HTML code.
79 my $input = CGI->new;
80 my ($template, $borrowernumber, $cookie) = get_template_and_user(
82 template_name => "tags/review.tt",
83 query => $input,
84 type => "intranet",
85 debug => 1,
86 authnotrequired => 0,
87 flagsrequired => $needed_flags,
91 my ($op, @errors, @tags);
93 foreach (qw( approve reject test )) {
94 $op = $_ if ( $input->param("op-$_") );
96 $op ||= 'none';
98 @tags = $input->multi_param('tags');
100 $borrowernumber == 0 and push @errors, {op_zero=>1};
101 if ($op eq 'approve') {
102 foreach (@tags) {
103 whitelist($borrowernumber,$_) or push @errors, {failed_ok=>$_};
105 } elsif ($op eq 'reject' ) {
106 foreach (@tags) {
107 blacklist($borrowernumber,$_) or push @errors, {failed_rej=>$_};
109 } elsif ($op eq 'test' ) {
110 my $tag = $input->param('test');
111 push @tags, $tag;
112 my $check = is_approved($tag);
113 $template->param(
114 test_term => $tag,
115 ( $check >= 1 ? 'verdict_ok' :
116 $check <= -1 ? 'verdict_rej' : 'verdict_indeterminate' ) => 1,
120 my $counts = &approval_counts;
121 foreach (keys %$counts) {
122 $template->param($_ => $counts->{$_});
125 sub pagination_calc ($;$) {
126 my $query = shift or return undef;
127 my $hardlimit = (@_) ? shift : 100; # hardcoded, could be another syspref
128 my $pagesize = $query->param('limit' ) || $hardlimit;
129 my $page = $query->param('page' ) || 1;
130 my $offset = $query->param('offset') || 0;
131 ($pagesize <= $hardlimit) or $pagesize = $hardlimit;
132 if ($page > 1) {
133 $offset = ($page-1)*$pagesize;
134 } else {
135 $page = 1;
137 return ($pagesize,$page,$offset);
140 my ($pagesize,$page,$offset) = pagination_calc($input,100);
142 my %filters = (
143 limit => $offset ? "$offset,$pagesize" : $pagesize,
144 sort => 'approved,-weight_total,+term',
146 my ($filter,$date_from,$date_to);
147 if (defined $input->param('approved')) { # 0 is valid value, must check defined
148 $filter = $input->param('approved');
149 } else {
150 $filter = 0;
152 if ($filter eq 'all') {
153 $template->param(filter_approved_all => 1);
154 } elsif ($filter =~ /-?[01]/) {
155 $filters{approved} = $filter;
156 $template->param(
157 ($filter == 1 ? 'filter_approved_ok' :
158 $filter == 0 ? 'filter_approved_pending' :
159 $filter == -1 ? 'filter_approved_rej' :
160 'filter_approved') => 1
164 # my $q_count = get_approval_rows({limit=>$pagesize, sort=>'approved,-weight_total,+term', count=>1});
165 if ($filter = $input->param('tag')) {
166 $template->param(filter_tag=>$filter);
167 $filters{term} = $filter;
169 if ($filter = $input->param('from')) {
170 $date_from = eval { output_pref( { dt => dt_from_string( $filter ), dateonly => 1, dateformat => 'iso' } ); };
171 if ( $date_from ) {
172 $template->param(filter_date_approved_from=>$filter);
173 $filters{date_approved} = ">=$date_from";
174 } else {
175 push @errors, {date_from=>$filter};
178 if ($filter = $input->param('to')) {
179 $date_to = eval { output_pref( { dt => dt_from_string( $filter ), dateonly => 1, dateformat => 'iso' } ); };
180 if ( $date_to ) {
181 $template->param(filter_date_approved_to=>$filter);
182 $filters{date_approved} = "<=$date_to";
183 } else {
184 push @errors, {date_to=>$filter};
187 if ($filter = $input->param('approver')) { # name (or borrowernumber) from input box
188 if ($filter =~ /^\d+$/ and $filter > 0) {
189 # $filter=get borrowernumber from name
190 # FIXME: get borrowernumber from name not implemented.
191 $template->param(filter_approver=>$filter);
192 $filters{approved_by} = $filter;
193 } else {
194 push @errors, {approver=>$filter};
197 if ($filter = $input->param('approved_by')) { # borrowernumber from link
198 if ($filter =~ /^\d+$/ and $filter > 0) {
199 $template->param(filter_approver=>$filter);
200 $filters{approved_by} = $filter;
201 } else {
202 push @errors, {approved_by=>$filter};
205 $debug and print STDERR "filters: " . Dumper(\%filters);
206 my $tagloop = get_approval_rows(\%filters);
207 my $qstring = $input->query_string;
208 $qstring =~ s/([&;])*\blimit=\d+//; # remove pagination var
209 $qstring =~ s/^;+//; # remove leading delims
210 $qstring = "limit=$pagesize" . ($qstring ? '&amp;' . $qstring : '');
211 $debug and print STDERR "number of approval_rows: " . scalar(@$tagloop) . "rows\n";
212 (scalar @errors) and $template->param(message_loop=>\@errors);
213 $template->param(
214 offset => $offset, # req'd for EXPR
215 op => $op,
216 op_count => scalar(@tags),
217 script_name => $script_name,
218 approved => 0, # dummy value (also EXPR)
219 tagloop => $tagloop,
220 pagination_bar => pagination_bar(
221 "$script_name?$qstring\&amp;",
222 ceil($counts->{approved_total}/$pagesize), # $page, 'page'
226 output_html_with_http_headers $input, $cookie, $template->output;
227 __END__
229 =head1 AUTHOR
231 Joe Atzberger
232 atz AT liblime.com
234 =cut