Bug 17170: Add admin page for filters and ability to edit/save existing filters
[koha.git] / admin / search_filters.pl
1 #!/usr/bin/perl
2 # Copyright 2013 BibLibre
3 #
4 # This file is part of Koha
5 #
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18
19 use Modern::Perl;
20 use CGI;
21
22 use C4::Auth qw( get_template_and_user );
23 use C4::Output qw( output_html_with_http_headers );
24
25 use Koha::SearchFilters;
26
27 use Try::Tiny qw( catch try);
28
29 my $cgi = CGI->new;
30
31 my ($template, $borrowernumber, $cookie) = get_template_and_user({
32     template_name => 'admin/search_filters.tt',
33     query => $cgi,
34     type => 'intranet',
35     flagsrequired   => { parameters => 'manage_search_filters' },
36 });
37
38 my $op = $cgi->param('op') || '';
39
40 if ($op eq 'del') {
41     my $id = $cgi->param('id');
42     my $sf = Koha::SearchFilters->find($id);
43     $template->param(filter_not_found => 1) unless $sf;
44     if ($sf) {
45         try{
46             $sf->delete();
47             $template->param( filter_deleted => $sf->name );
48         } catch {
49             $template->param( error => $_ );
50         };
51     }
52 }
53
54 my $filters = Koha::SearchFilters->search();
55
56 $template->param(
57     filters_count => $filters->count,
58 );
59
60 output_html_with_http_headers $cgi, $cookie, $template->output;