org.neo4j.server.security.ssl.HttpsRequestCustomizer Maven / Gradle / Ivy
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.server.security.ssl;
import org.apache.commons.lang3.StringUtils;
import org.eclipse.jetty.http.HttpField;
import org.eclipse.jetty.http.HttpScheme;
import org.eclipse.jetty.http.PreEncodedHttpField;
import org.eclipse.jetty.server.Connector;
import org.eclipse.jetty.server.HttpConfiguration;
import org.eclipse.jetty.server.Request;
import org.neo4j.configuration.Config;
import static org.eclipse.jetty.http.HttpHeader.STRICT_TRANSPORT_SECURITY;
import static org.neo4j.server.configuration.ServerSettings.http_strict_transport_security;
public class HttpsRequestCustomizer implements HttpConfiguration.Customizer
{
private final HttpField hstsResponseField;
public HttpsRequestCustomizer( Config config )
{
hstsResponseField = createHstsResponseField( config );
}
@Override
public void customize( Connector connector, HttpConfiguration channelConfig, Request request )
{
request.setScheme( HttpScheme.HTTPS.asString() );
addResponseFieldIfConfigured( request, hstsResponseField );
}
private static void addResponseFieldIfConfigured( Request request, HttpField field )
{
if ( field != null )
{
request.getResponse().getHttpFields().add( field );
}
}
private static HttpField createHstsResponseField( Config config )
{
String configuredValue = config.get( http_strict_transport_security );
if ( StringUtils.isBlank( configuredValue ) )
{
return null;
}
return new PreEncodedHttpField( STRICT_TRANSPORT_SECURITY, configuredValue );
}
}