Updates #2624. Updates #3162. Squashed commit of the following: commit 68860da717a23a0bfeba14b7fe10b5e4ad38726d Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jun 29 15:41:33 2021 +0300 all: imp types, names commit ebd4ec26636853d0d58c4e331e6a78feede20813 Merge: 239eb72116e5e09cAuthor: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jun 29 15:14:33 2021 +0300 Merge branch 'master' into 2624-clientid-access commit 239eb7215abc47e99a0300a0f4cf56002689b1a9 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jun 29 15:13:10 2021 +0300 all: fix client blocking check commit e6bece3ea8367b3cbe3d90702a3368c870ad4f13 Merge: 9935f2a39d1656b5Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jun 29 13:12:28 2021 +0300 Merge branch 'master' into 2624-clientid-access commit 9935f2a30bcfae2b853f3ef610c0ab7a56a8f448 Author: Ildar Kamalov <ik@adguard.com> Date: Tue Jun 29 11:26:51 2021 +0300 client: show block button for client id commit ed786a6a74a081cd89e9d67df3537a4fadd54831 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Jun 25 15:56:23 2021 +0300 client: imp i18n commit 4fed21c68473ad408960c08a7d87624cabce1911 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Jun 25 15:34:09 2021 +0300 all: imp i18n, docs commit 55e65c0d6b939560c53dcb834a4557eb3853d194 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Jun 25 13:34:01 2021 +0300 all: fix cache, imp code, docs, tests commit c1e5a83e76deb44b1f92729bb9ddfcc6a96ac4a8 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Jun 24 19:27:12 2021 +0300 all: allow clientid in access settings
151 lines
4.9 KiB
JavaScript
151 lines
4.9 KiB
JavaScript
import React from 'react';
|
|
import ReactTable from 'react-table';
|
|
import PropTypes from 'prop-types';
|
|
import { Trans, useTranslation } from 'react-i18next';
|
|
|
|
import { shallowEqual, useDispatch, useSelector } from 'react-redux';
|
|
import classNames from 'classnames';
|
|
import Card from '../ui/Card';
|
|
import Cell from '../ui/Cell';
|
|
|
|
import { getPercent, sortIp } from '../../helpers/helpers';
|
|
import { BLOCK_ACTIONS, STATUS_COLORS } from '../../helpers/constants';
|
|
import { toggleClientBlock } from '../../actions/access';
|
|
import { renderFormattedClientCell } from '../../helpers/renderFormattedClientCell';
|
|
import { getStats } from '../../actions/stats';
|
|
|
|
const getClientsPercentColor = (percent) => {
|
|
if (percent > 50) {
|
|
return STATUS_COLORS.green;
|
|
}
|
|
if (percent > 10) {
|
|
return STATUS_COLORS.yellow;
|
|
}
|
|
return STATUS_COLORS.red;
|
|
};
|
|
|
|
const CountCell = (row) => {
|
|
const { value, original: { ip } } = row;
|
|
const numDnsQueries = useSelector((state) => state.stats.numDnsQueries, shallowEqual);
|
|
|
|
const percent = getPercent(numDnsQueries, value);
|
|
const percentColor = getClientsPercentColor(percent);
|
|
|
|
return <Cell value={value} percent={percent} color={percentColor} search={ip} />;
|
|
};
|
|
|
|
const renderBlockingButton = (ip, disallowed, disallowed_rule) => {
|
|
const dispatch = useDispatch();
|
|
const { t } = useTranslation();
|
|
const processingSet = useSelector((state) => state.access.processingSet);
|
|
|
|
const buttonClass = classNames('button-action button-action--main', {
|
|
'button-action--unblock': disallowed,
|
|
});
|
|
|
|
const toggleClientStatus = async (ip, disallowed, disallowed_rule) => {
|
|
const confirmMessage = disallowed
|
|
? t('client_confirm_unblock', { ip: disallowed_rule })
|
|
: `${t('adg_will_drop_dns_queries')} ${t('client_confirm_block', { ip })}`;
|
|
|
|
if (window.confirm(confirmMessage)) {
|
|
await dispatch(toggleClientBlock(ip, disallowed, disallowed_rule));
|
|
await dispatch(getStats());
|
|
}
|
|
};
|
|
|
|
const onClick = () => toggleClientStatus(ip, disallowed, disallowed_rule);
|
|
|
|
const text = disallowed ? BLOCK_ACTIONS.UNBLOCK : BLOCK_ACTIONS.BLOCK;
|
|
|
|
const isNotInAllowedList = disallowed && disallowed_rule === '';
|
|
return (
|
|
<div className="table__action pl-4">
|
|
<button
|
|
type="button"
|
|
className={buttonClass}
|
|
onClick={isNotInAllowedList ? undefined : onClick}
|
|
disabled={isNotInAllowedList || processingSet}
|
|
title={t(isNotInAllowedList ? 'client_not_in_allowed_clients' : text)}
|
|
>
|
|
<Trans>{text}</Trans>
|
|
</button>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const ClientCell = (row) => {
|
|
const { value, original: { info, info: { disallowed, disallowed_rule } } } = row;
|
|
|
|
return <>
|
|
<div className="logs__row logs__row--overflow logs__row--column d-flex align-items-center">
|
|
{renderFormattedClientCell(value, info, true)}
|
|
{renderBlockingButton(value, disallowed, disallowed_rule)}
|
|
</div>
|
|
</>;
|
|
};
|
|
|
|
const Clients = ({
|
|
refreshButton,
|
|
subtitle,
|
|
}) => {
|
|
const { t } = useTranslation();
|
|
const topClients = useSelector((state) => state.stats.topClients, shallowEqual);
|
|
|
|
return (
|
|
<Card
|
|
title={t('top_clients')}
|
|
subtitle={subtitle}
|
|
bodyType="card-table"
|
|
refresh={refreshButton}
|
|
>
|
|
<ReactTable
|
|
data={topClients.map(({
|
|
name: ip, count, info, blocked,
|
|
}) => ({
|
|
ip,
|
|
count,
|
|
info,
|
|
blocked,
|
|
}))}
|
|
columns={[
|
|
{
|
|
Header: <Trans>client_table_header</Trans>,
|
|
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 { info: { disallowed } } = rowInfo.original;
|
|
|
|
return disallowed ? { className: 'logs__row--red' } : {};
|
|
}}
|
|
/>
|
|
</Card>
|
|
);
|
|
};
|
|
|
|
Clients.propTypes = {
|
|
refreshButton: PropTypes.node.isRequired,
|
|
subtitle: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export default Clients;
|