blob: ef223cce02023be5d31e2ce31a8061434a3f4c4b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. 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. For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/
package org.apache.roller.weblogger.util;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Pattern;
import org.apache.roller.weblogger.config.WebloggerConfig;
import org.apache.roller.weblogger.config.WebloggerRuntimeConfig;
import org.apache.roller.weblogger.pojos.WeblogEntryComment;
import org.apache.roller.weblogger.pojos.Weblog;
/**
* Checks comment, trackbacks and referrers for spam.
* @author Lance Lavandowska
* @author Dave Johnson
*/
public final class BlacklistChecker {
private BlacklistChecker() {
// never instantiable
throw new AssertionError();
}
/**
* Test comment, applying all blacklists, if configured
* @return True if comment matches blacklist term
*/
public static boolean checkComment(WeblogEntryComment comment) {
if (WebloggerConfig.getBooleanProperty("site.blacklist.enable.comments")) {
return testComment(comment);
}
return false;
}
/**
* Test trackback comment, applying all blacklists, if configured
* @return True if comment matches blacklist term
*/
public static boolean checkTrackback(WeblogEntryComment comment) {
if (WebloggerConfig.getBooleanProperty("site.blacklist.enable.trackbacks")) {
return testComment(comment);
}
return false;
}
/**
* Test referrer URL, applying blacklist and website blacklist only if configured
* @return True if comment matches blacklist term
*/
public static boolean checkReferrer(Weblog website, String referrerURL) {
if (WebloggerConfig.getBooleanProperty("site.blacklist.enable.referrers")) {
List<String> stringRules = new ArrayList<String>();
List<Pattern> regexRules = new ArrayList<Pattern>();
Blacklist.populateSpamRules(
website.getBlacklist(), stringRules, regexRules, null);
if (WebloggerRuntimeConfig.getProperty("spam.blacklist") != null) {
Blacklist.populateSpamRules(
WebloggerRuntimeConfig.getProperty("spam.blacklist"), stringRules, regexRules, null);
}
return Blacklist.matchesRulesOnly(referrerURL, stringRules, regexRules);
}
return false;
}
/**
* Test comment against built in blacklist, site blacklist and website blacklist
* @return True if comment matches blacklist term
*/
private static boolean testComment(WeblogEntryComment c) {
boolean ret = false;
List<String> stringRules = new ArrayList<String>();
List<Pattern> regexRules = new ArrayList<Pattern>();
Weblog website = c.getWeblogEntry().getWebsite();
Blacklist.populateSpamRules(
website.getBlacklist(), stringRules, regexRules,
WebloggerRuntimeConfig.getProperty("spam.blacklist"));
Blacklist blacklist = Blacklist.getBlacklist();
if ( blacklist.isBlacklisted(c.getUrl(), stringRules, regexRules)
|| blacklist.isBlacklisted(c.getEmail(), stringRules, regexRules)
|| blacklist.isBlacklisted(c.getName(), stringRules, regexRules)
|| blacklist.isBlacklisted(c.getContent(), stringRules, regexRules)) {
ret = true;
}
return ret;
}
}