Package com.crashnote.servlet.config

Source Code of com.crashnote.servlet.config.ServletConfig

/**
* Copyright (C) 2011 - 101loops.com <dev@101loops.com>
*
* Licensed 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 com.crashnote.servlet.config;

import com.crashnote.logger.config.LoggerConfig;
import com.crashnote.servlet.report.ServletReporter;

/**
* Customized {@link LoggerConfig} for dealing with servlet environments.
*/
public class ServletConfig<C extends ServletConfig<C>>
        extends LoggerConfig<C> {

    /**
     * Property names of servlet-specific settings
     */
    public static final String PROP_REP_IP_SKIP = "hashRemoteIP";

    public static final String PROP_REP_REQ_PARAM_SIZE = "maxRequestDataSize";
    public static final String PROP_REP_REQ_IGNORE_LOCAL = "ignoreLocalRequests";
    public static final String PROP_REP_REQ_PARAM_FILTER = "requestParameterFilter";

    public static final String PROP_REP_HEADER_SKIP = "skipHeaders";
    public static final String PROP_REP_SESSION_SKIP = "skipSession";

    // SETUP ======================================================================================

    public ServletConfig() {
        super();
    }

    @Override
    public void initDefaults() {
        super.initDefaults();

        // DO enable by default, but ...
        setEnabled(true);

        // ... DO ignore requests made from local machine
        setIgnoreLocalRequests(true);

        // filter common request parameters by default
        addRequestFilter(".*password.*");
        addRequestFilter(".*creditcard.*");
        addRequestFilter(".*secret.*");

        // hash remote IPs (might not be legal in some countries, force user to enable manually)
        setHashRemoteIP(true);

        // DO report header data
        setSkipHeaderData(false);

        // DO NOT report session data (yet)
        setSkipSessionData(true);

        // limit request parameters in size to prevent huge POST data to be included
        setMaxRequestParameterSize(250);
    }

    // INTERFACE ==================================================================================

    @Override
    public ServletReporter<C> getReporter() {
        return new ServletReporter(this);
    }

    // GET ========================================================================================

    public boolean getSkipSessionData() {
        return getBoolSetting(PROP_REP_SESSION_SKIP);
    }

    public boolean getIgnoreLocalRequests() {
        return getBoolSetting(PROP_REP_REQ_IGNORE_LOCAL);
    }

    public boolean getSkipHeaderData() {
        return getBoolSetting(PROP_REP_HEADER_SKIP);
    }

    public boolean getHashRemoteIP() {
        return getBoolSetting(PROP_REP_IP_SKIP);
    }

    public int getMaxRequestParameterSize() {
        return getIntSetting(PROP_REP_REQ_PARAM_SIZE);
    }

    public String[] getRequestFilters() {
        final String filters = getStringSetting(PROP_REP_REQ_PARAM_FILTER);
        if (filters == null || filters.length() == 0) return new String[0];
        else return filters.split(":");
    }

    // SET+ =======================================================================================

    public void addRequestFilter(final String filter) {
        String filters = getStringSetting(PROP_REP_REQ_PARAM_FILTER);
        if (filters == null || filters.length() == 0) filters = filter;
        else filters += ":" + filter;
        addSetting(PROP_REP_REQ_PARAM_FILTER, filters.toLowerCase());
    }

    // SET ========================================================================================

    public void setIgnoreLocalRequests(final boolean skip) {
        addSetting(PROP_REP_REQ_IGNORE_LOCAL, skip);
    }

    public void setIgnoreLocalRequests(final String skip) {
        addSetting(PROP_REP_REQ_IGNORE_LOCAL, skip);
    }

    public void setSkipSessionData(final boolean skip) {
        addSetting(PROP_REP_SESSION_SKIP, skip);
    }

    public void setSkipSessionData(final String skip) {
        addBoolSetting(PROP_REP_SESSION_SKIP, skip);
    }

    public void setHashRemoteIP(final boolean skip) {
        addSetting(PROP_REP_IP_SKIP, skip);
    }

    public void setHashRemoteIP(final String skip) {
        addBoolSetting(PROP_REP_IP_SKIP, skip);
    }

    public void setSkipHeaderData(final boolean skip) {
        addSetting(PROP_REP_HEADER_SKIP, skip);
    }

    public void setSkipHeaderData(final String skip) {
        addBoolSetting(PROP_REP_HEADER_SKIP, skip);
    }

    public void setMaxRequestParameterSize(final int size) {
        addSetting(PROP_REP_REQ_PARAM_SIZE, size);
    }

    public void setMaxRequestParameterSize(final String size) {
        addIntSetting(PROP_REP_REQ_PARAM_SIZE, size);
    }
}
TOP

Related Classes of com.crashnote.servlet.config.ServletConfig

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.