Bug 7309 - Add NORMARCslim2intranetDetail.xsl for detail view in intranet
[koha.git] / C4 / Scrubber.pm
blobe43480201ca75211820d7beb782df366f62e2e75
1 package C4::Scrubber;
2 # This file is part of Koha.
4 # Koha is free software; you can redistribute it and/or modify it under the
5 # terms of the GNU General Public License as published by the Free Software
6 # Foundation; either version 2 of the License, or (at your option) any later
7 # version.
9 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
10 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License along with
14 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
15 # Suite 330, Boston, MA 02111-1307 USA
17 use strict;
18 use warnings;
19 use Carp;
20 use HTML::Scrubber;
22 use C4::Context;
23 use C4::Debug;
25 our $VERSION = 0.02;
28 my %scrubbertypes = (
29 default => {}, # place holder, default settings are below as fallbacks in call to constructor
30 tag => {}, # uses defaults
31 comment => { allow => [qw( br b i em big small strong )], },
32 staff => {
33 default => [ 1 => { '*' => 1 } ],
34 comment => 1,
39 sub new {
40 shift; # ignore our class we are wrapper
41 my $type = (@_) ? shift : 'default';
42 if ( !exists $scrubbertypes{$type} ) {
43 croak "New called with unrecognized type '$type'";
45 $debug and carp "Building new Scrubber of type '$type'";
46 my $settings = $scrubbertypes{$type};
47 my $scrubber = HTML::Scrubber->new(
48 allow => exists $settings->{allow} ? $settings->{allow} : [],
49 rules => exists $settings->{rules} ? $settings->{rules} : [],
50 default => exists $settings->{default} ? $settings->{default} : [ 0 => { '*' => 0 } ],
51 comment => exists $settings->{comment} ? $settings->{comment} : 0,
52 process => 0,
54 return $scrubber;
59 __END__
61 =head1 C4::Sanitize
63 Standardized wrapper with settings for building HTML::Scrubber tailored to various koha inputs.
64 More verbose debugging messages are sent in the presence of non-zero $ENV{"DEBUG"}.
66 The default is to scrub everything, leaving no markup at all. This is compatible with the expectations
67 for Tags.
69 =head2 TODO: Add real perldoc
71 =cut