blob: ddf4461b727ec564704942f1fd9106aa175e0a11 [file] [log] [blame]
/*
JSPWiki - a JSP-based WikiWiki clone.
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
package org.apache.wiki.filters;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import org.apache.wiki.WikiContext;
import org.apache.wiki.log.Logger;
import org.apache.wiki.log.LoggerFactory;
import org.apache.wiki.util.TextUtil;
/**
* This class is an example of how to have a simple filter. It removes
* all nasty words located at <code>ProfanityFilter.properties</code> file, inside
* <code>com/ecyrd/jspwiki/filters</code> package. The search of profanities
* is case unsensitive.
*
*/
@Deprecated
public class ProfanityFilter extends BasicPageFilter
{
private static Logger log = LoggerFactory.getLogger(ProfanityFilter.class);
private static final String PROPERTYFILE = "ProfanityFilter.properties";
private static String[] c_profanities = new String[0];
static
{
try
{
ClassLoader loader = ProfanityFilter.class.getClassLoader();
InputStream in = loader.getResourceAsStream( PROPERTYFILE );
if( in == null )
{
throw new IOException("No property file found! (Check the installation, it should be there.)");
}
BufferedReader br = new BufferedReader( new InputStreamReader( in ) );
List<String> profs = new ArrayList<String>();
String str;
while ( ( str = br.readLine() ) != null )
{
if( str.length() > 0 && !str.startsWith( "#" ) )
{ // allow comments on profanities file
profs.add( str );
}
}
c_profanities = profs.toArray( new String[0] );
}
catch( IOException e )
{
log.error( "Unable to load profanities from "+PROPERTYFILE, e );
}
catch( Exception e )
{
log.error( "Unable to initialize Profanity Filter", e );
}
}
/**
* {@inheritDoc}
*/
public String preTranslate( WikiContext context, String content )
{
for( int i = 0; i < c_profanities.length; i++ )
{
String word = c_profanities[i];
String replacement = word.charAt(0)+"*"+word.charAt(word.length()-1);
content = TextUtil.replaceStringCaseUnsensitive( content, word, replacement );
}
return content;
}
}