import React, {Component} from 'react';
import './Connections.scss';
import axios from 'axios';
import Connection from "../components/Connection";
import Table from 'react-bootstrap/Table';
import {Redirect} from 'react-router';
import {withRouter} from "react-router-dom";
class Connections extends Component {
constructor(props) {
super(props);
this.state = {
loading: false,
connections: [],
firstConnection: null,
lastConnection: null,
prevParams: null,
flagRule: null,
rules: null,
queryString: null
};
this.scrollTopThreashold = 0.00001;
this.scrollBottomThreashold = 0.99999;
this.maxConnections = 500;
this.queryLimit = 50;
this.handleScroll = this.handleScroll.bind(this);
this.connectionSelected = this.connectionSelected.bind(this);
this.addServicePortFilter = this.addServicePortFilter.bind(this);
}
componentDidMount() {
this.loadConnections({limit: this.queryLimit})
.then(() => this.setState({loaded: true}));
}
connectionSelected(c) {
this.setState({selected: c.id});
this.props.onSelected(c);
}
componentDidUpdate(prevProps, prevState, snapshot) {
if (this.state.loaded && prevProps.location.search !== this.props.location.search) {
this.setState({queryString: this.props.location.search});
this.loadConnections({limit: this.queryLimit})
.then(() => console.log("Connections reloaded after query string update"));
}
}
handleScroll(e) {
let relativeScroll = e.currentTarget.scrollTop / (e.currentTarget.scrollHeight - e.currentTarget.clientHeight);
if (!this.state.loading && relativeScroll > this.scrollBottomThreashold) {
this.loadConnections({from: this.state.lastConnection.id, limit: this.queryLimit,})
.then(() => console.log("Following connections loaded"));
}
if (!this.state.loading && relativeScroll < this.scrollTopThreashold) {
this.loadConnections({to: this.state.firstConnection.id, limit: this.queryLimit,})
.then(() => console.log("Previous connections loaded"));
}
}
addServicePortFilter(port) {
let urlParams = new URLSearchParams(this.props.location.search);
urlParams.set("service_port", port);
this.setState({queryString: "?" + urlParams});
}
async loadConnections(params) {
let url = "/api/connections";
const urlParams = new URLSearchParams(this.props.location.search);
for (const [name, value] of Object.entries(params)) {
urlParams.set(name, value);
}
this.setState({loading: true, prevParams: params});
let res = await axios.get(`${url}?${urlParams}`);
let connections = this.state.connections;
let firstConnection = this.state.firstConnection;
let lastConnection = this.state.lastConnection;
if (params !== undefined && params.from !== undefined) {
if (res.data.length > 0) {
connections = this.state.connections.concat(res.data);
lastConnection = connections[connections.length - 1];
if (connections.length > this.maxConnections) {
connections = connections.slice(connections.length - this.maxConnections,
connections.length - 1);
firstConnection = connections[0];
}
}
} else if (params !== undefined && params.to !== undefined) {
if (res.data.length > 0) {
connections = res.data.concat(this.state.connections);
firstConnection = connections[0];
if (connections.length > this.maxConnections) {
connections = connections.slice(0, this.maxConnections);
lastConnection = connections[this.maxConnections - 1];
}
}
} else {
if (res.data.length > 0) {
connections = res.data;
firstConnection = connections[0];
lastConnection = connections[connections.length - 1];
} else {
connections = [];
firstConnection = null;
lastConnection = null;
}
}
let flagRule = this.state.flagRule;
let rules = this.state.rules;
if (flagRule === null) {
let res = await axios.get("/api/rules");
rules = res.data;
flagRule = rules.filter(rule => {
return rule.name === "flag";
})[0];
}
this.setState({
loading: false,
connections: connections,
rules: res.data,
flagRule: flagRule,
firstConnection: firstConnection,
lastConnection: lastConnection
});
}
render() {
let redirect;
let queryString = this.state.queryString !== null ? this.state.queryString : ""
if (this.state.selected) {
let format = this.props.match.params.format;
format = format !== undefined ? "/" + format : "";
redirect =
service | srcip | srcport | dstip | dstport | duration | up | down | actions |
---|