2020-06-18 19:53:02 +00:00
|
|
|
import React from 'react';
|
2018-08-30 14:25:33 +00:00
|
|
|
import ReactTable from 'react-table';
|
|
|
|
|
import PropTypes from 'prop-types';
|
2020-09-01 13:30:30 +00:00
|
|
|
import { Trans, useTranslation } from 'react-i18next';
|
2018-08-30 14:25:33 +00:00
|
|
|
|
2020-09-01 13:30:30 +00:00
|
|
|
import { shallowEqual, useDispatch, useSelector } from 'react-redux';
|
|
|
|
|
import classNames from 'classnames';
|
2018-08-30 14:25:33 +00:00
|
|
|
import Card from '../ui/Card';
|
2018-10-12 13:02:01 +00:00
|
|
|
import Cell from '../ui/Cell';
|
2018-08-30 14:25:33 +00:00
|
|
|
|
2020-08-13 09:16:52 +00:00
|
|
|
import { getPercent, getIpMatchListStatus, sortIp } from '../../helpers/helpers';
|
2020-09-01 13:30:30 +00:00
|
|
|
import { BLOCK_ACTIONS, IP_MATCH_LIST_STATUS, STATUS_COLORS } from '../../helpers/constants';
|
|
|
|
|
import { toggleClientBlock } from '../../actions/access';
|
|
|
|
|
import { renderFormattedClientCell } from '../../helpers/renderFormattedClientCell';
|
2018-10-12 13:02:01 +00:00
|
|
|
|
2019-08-27 13:43:58 +00:00
|
|
|
const getClientsPercentColor = (percent) => {
|
|
|
|
|
if (percent > 50) {
|
|
|
|
|
return STATUS_COLORS.green;
|
2020-05-29 09:53:40 +00:00
|
|
|
}
|
|
|
|
|
if (percent > 10) {
|
2019-08-27 13:43:58 +00:00
|
|
|
return STATUS_COLORS.yellow;
|
|
|
|
|
}
|
|
|
|
|
return STATUS_COLORS.red;
|
|
|
|
|
};
|
2018-10-12 13:02:01 +00:00
|
|
|
|
2020-09-01 13:30:30 +00:00
|
|
|
const CountCell = (row) => {
|
|
|
|
|
const { value, original: { ip } } = row;
|
|
|
|
|
const numDnsQueries = useSelector((state) => state.stats.numDnsQueries, shallowEqual);
|
|
|
|
|
|
|
|
|
|
const percent = getPercent(numDnsQueries, value);
|
2020-05-22 14:06:05 +00:00
|
|
|
const percentColor = getClientsPercentColor(percent);
|
2019-03-20 14:04:32 +00:00
|
|
|
|
2020-09-01 13:30:30 +00:00
|
|
|
return <Cell value={value} percent={percent} color={percentColor} search={ip} />;
|
2020-05-22 14:06:05 +00:00
|
|
|
};
|
2018-10-12 13:02:01 +00:00
|
|
|
|
2020-09-01 13:30:30 +00:00
|
|
|
const renderBlockingButton = (ip) => {
|
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
const processingSet = useSelector((state) => state.access.processingSet);
|
|
|
|
|
const disallowed_clients = useSelector(
|
|
|
|
|
(state) => state.access.disallowed_clients, shallowEqual,
|
2020-01-30 10:58:54 +00:00
|
|
|
);
|
2020-09-01 13:30:30 +00:00
|
|
|
|
|
|
|
|
const ipMatchListStatus = getIpMatchListStatus(ip, disallowed_clients);
|
|
|
|
|
|
|
|
|
|
if (ipMatchListStatus === IP_MATCH_LIST_STATUS.CIDR) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const isNotFound = ipMatchListStatus === IP_MATCH_LIST_STATUS.NOT_FOUND;
|
|
|
|
|
const type = isNotFound ? BLOCK_ACTIONS.BLOCK : BLOCK_ACTIONS.UNBLOCK;
|
|
|
|
|
const text = type;
|
|
|
|
|
|
|
|
|
|
const className = classNames('btn btn-sm', {
|
|
|
|
|
'btn-outline-danger': isNotFound,
|
|
|
|
|
'btn-outline-secondary': !isNotFound,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const toggleClientStatus = (type, ip) => {
|
|
|
|
|
const confirmMessage = type === BLOCK_ACTIONS.BLOCK ? 'client_confirm_block' : 'client_confirm_unblock';
|
|
|
|
|
|
|
|
|
|
if (window.confirm(t(confirmMessage, { ip }))) {
|
|
|
|
|
dispatch(toggleClientBlock(type, ip));
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const onClick = () => toggleClientStatus(type, ip);
|
|
|
|
|
|
|
|
|
|
return <div className="table__action pl-4">
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
className={className}
|
|
|
|
|
onClick={onClick}
|
|
|
|
|
disabled={processingSet}
|
|
|
|
|
>
|
|
|
|
|
<Trans>{text}</Trans>
|
|
|
|
|
</button>
|
|
|
|
|
</div>;
|
2020-01-30 10:58:54 +00:00
|
|
|
};
|
|
|
|
|
|
2020-09-01 13:30:30 +00:00
|
|
|
const ClientCell = (row) => {
|
|
|
|
|
const { value, original: { info } } = row;
|
|
|
|
|
|
|
|
|
|
return <>
|
|
|
|
|
<div className="logs__row logs__row--overflow logs__row--column d-flex">
|
|
|
|
|
{renderFormattedClientCell(value, info, true)}
|
|
|
|
|
{renderBlockingButton(value)}
|
|
|
|
|
</div>
|
|
|
|
|
</>;
|
2020-05-22 14:06:05 +00:00
|
|
|
};
|
2019-08-22 13:10:47 +00:00
|
|
|
|
2019-08-27 13:43:58 +00:00
|
|
|
const Clients = ({
|
2020-01-30 10:58:54 +00:00
|
|
|
refreshButton,
|
|
|
|
|
subtitle,
|
2020-09-01 13:30:30 +00:00
|
|
|
}) => {
|
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
const topClients = useSelector((state) => state.stats.topClients, shallowEqual);
|
|
|
|
|
const disallowedClients = useSelector((state) => state.access.disallowed_clients, shallowEqual);
|
|
|
|
|
|
|
|
|
|
return <Card
|
|
|
|
|
title={t('top_clients')}
|
|
|
|
|
subtitle={subtitle}
|
|
|
|
|
bodyType="card-table"
|
|
|
|
|
refresh={refreshButton}
|
2019-08-27 13:43:58 +00:00
|
|
|
>
|
|
|
|
|
<ReactTable
|
2020-09-01 13:30:30 +00:00
|
|
|
data={topClients.map(({
|
|
|
|
|
name: ip, count, info, blocked,
|
|
|
|
|
}) => ({
|
|
|
|
|
ip,
|
|
|
|
|
count,
|
|
|
|
|
info,
|
|
|
|
|
blocked,
|
|
|
|
|
}))}
|
|
|
|
|
columns={[
|
|
|
|
|
{
|
|
|
|
|
Header: 'IP',
|
|
|
|
|
accessor: 'ip',
|
|
|
|
|
sortMethod: sortIp,
|
|
|
|
|
Cell: ClientCell,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
Header: <Trans>requests_count</Trans>,
|
|
|
|
|
accessor: 'count',
|
|
|
|
|
minWidth: 180,
|
|
|
|
|
maxWidth: 200,
|
|
|
|
|
Cell: CountCell,
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
showPagination={false}
|
|
|
|
|
noDataText={t('no_clients_found')}
|
|
|
|
|
minRows={6}
|
|
|
|
|
defaultPageSize={100}
|
|
|
|
|
className="-highlight card-table-overflow--limited clients__table"
|
|
|
|
|
getTrProps={(_state, rowInfo) => {
|
|
|
|
|
if (!rowInfo) {
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const { ip } = rowInfo.original;
|
|
|
|
|
|
|
|
|
|
return getIpMatchListStatus(ip, disallowedClients) === IP_MATCH_LIST_STATUS.NOT_FOUND ? {} : { className: 'red' };
|
|
|
|
|
}}
|
2019-08-27 13:43:58 +00:00
|
|
|
/>
|
2020-09-01 13:30:30 +00:00
|
|
|
</Card>;
|
|
|
|
|
};
|
2018-08-30 14:25:33 +00:00
|
|
|
|
|
|
|
|
Clients.propTypes = {
|
2018-10-12 13:02:01 +00:00
|
|
|
refreshButton: PropTypes.node.isRequired,
|
2019-08-22 13:10:47 +00:00
|
|
|
subtitle: PropTypes.string.isRequired,
|
2018-08-30 14:25:33 +00:00
|
|
|
};
|
|
|
|
|
|
2020-09-01 13:30:30 +00:00
|
|
|
export default Clients;
|