org.neo4j.server.web.JettyHttpConnection Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://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.web;
import java.net.SocketAddress;
import org.eclipse.jetty.io.EndPoint;
import org.eclipse.jetty.server.Connector;
import org.eclipse.jetty.server.HttpConfiguration;
import org.eclipse.jetty.server.HttpConnection;
import org.neo4j.kernel.api.net.TrackedNetworkConnection;
/**
* Extension of the default Jetty {@link HttpConnection} which contains additional properties like id, connect time, user, etc.
* It is bound of the Jetty worker thread when active.
*
* @see HttpConnection#getCurrentConnection()
*/
public class JettyHttpConnection extends HttpConnection implements TrackedNetworkConnection {
private final String id;
private final long connectTime;
private volatile String username;
private volatile String userAgent;
public JettyHttpConnection(
String id,
HttpConfiguration config,
Connector connector,
EndPoint endPoint,
boolean recordComplianceViolations) {
super(config, connector, endPoint, recordComplianceViolations);
this.id = id;
this.connectTime = System.currentTimeMillis();
}
@Override
public String id() {
return id;
}
@Override
public long connectTime() {
return connectTime;
}
@Override
public String connectorId() {
return getConnector().getName();
}
@Override
public SocketAddress serverAddress() {
return getEndPoint().getLocalAddress();
}
@Override
public SocketAddress clientAddress() {
return getEndPoint().getRemoteAddress();
}
@Override
public String username() {
return username;
}
@Override
public String userAgent() {
return userAgent;
}
@Override
public void updateUser(String username, String userAgent) {
this.username = username;
this.userAgent = userAgent;
}
public static void updateUserForCurrentConnection(String username, String userAgent) {
JettyHttpConnection connection = getCurrentJettyHttpConnection();
if (connection != null) {
connection.updateUser(username, userAgent);
}
}
public static JettyHttpConnection getCurrentJettyHttpConnection() {
HttpConnection connection = HttpConnection.getCurrentConnection();
return connection instanceof JettyHttpConnection ? (JettyHttpConnection) connection : null;
}
}