Close #1597 Squashed commit of the following: commit 1eb89586dd71260e561420fe669abc8b56a506a1 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed May 20 14:54:10 2020 +0300 Fix translation in install options commit 1ebdc9ebfe12a609f978e47db6505c7095b10f7e Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed May 20 13:11:34 2020 +0300 Remove commented code commit 2a8302c65a2a3cf7b6b1596115d1153dac32a794 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue May 19 19:02:49 2020 +0300 Update i18n packages, add development browserlist, downgrade eslint to match peerDepencancies version commit 3fcf73fb14cd9da508522d1a300b66af24da95e5 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue May 19 17:30:37 2020 +0300 Remove all unused dependencies commit e761810e3e54e188ada41245bdce7414cd0f03e8 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue May 19 16:35:24 2020 +0300 Remove unused dependencies commit d89d27da6befcaabcdc12bf5e7e94cbb24140010 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue May 19 16:14:09 2020 +0300 Update regular dependencies commit d2dfd01233d059870d5173ffd748cf61a477936f Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue May 19 15:34:10 2020 +0300 Update all dev dependancies commit 02b6fb480e9d310039fbe9b7aae062a41128f070 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue May 19 14:14:44 2020 +0300 Update all postcss packages commit 5e1fa5f99ad75f77e5e429b28ee1ca0b5e65a9a0 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue May 19 12:45:02 2020 +0300 Prevent git from converting linebreaks in .js files commit 0b9b3b0dccd47cfa50c9531fb61729e6b5a04523 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue May 19 12:43:01 2020 +0300 Prevent git from converting linebreaks in .js files commit 18b7495e9ef7130b1ac4dbba84c54127d16c6350 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue May 19 12:24:47 2020 +0300 Remove linebreak-style eslint rule commit df893dec53adebb1d662fe805fab508fd4ed5e06 Author: ArtemBaskal <a.baskal@adguard.com> Date: Mon May 18 20:55:47 2020 +0300 Add prop types commit 36178ecfc5c7fa11a6ee08d7705ca8560941af40 Author: ArtemBaskal <a.baskal@adguard.com> Date: Mon May 18 18:52:07 2020 +0300 Update eslint and babel, fix eslint warnings commit f045b4a2e6b9b78f7e88e3b5d1419c29966a8230 Author: ArtemBaskal <a.baskal@adguard.com> Date: Mon May 18 16:45:49 2020 +0300 Update css loading webpack rules commit 247fa1ed548ef0706a03fdada8309c1454d191f8 Author: ArtemBaskal <a.baskal@adguard.com> Date: Sat May 16 16:13:49 2020 +0300 Suppress linebreak-style eslint error for Windows commit d6499aac507100d6918c849c06d739d80f2229f0 Author: ArtemBaskal <a.baskal@adguard.com> Date: Sat May 16 14:55:07 2020 +0300 Suppress eslint exit code commit ae2d6c614ea23a90d515168f8752e959298894ef Author: ArtemBaskal <a.baskal@adguard.com> Date: Sat May 16 14:05:18 2020 +0300 Edit css file warnings commit 60675050f2a5baebc679fc05da7e033e5c740d90 Author: ArtemBaskal <a.baskal@adguard.com> Date: Sat May 16 13:10:26 2020 +0300 Remove uglifyjs plugin commit a27806434dd8672e71a26c7a2e810d77e5e229fa Author: ArtemBaskal <a.baskal@adguard.com> Date: Sat May 16 01:29:17 2020 +0300 Fix DefinePlugin value commit 8f2966ca59195c2f70bca5072d20515d536f42a6 Author: ArtemBaskal <a.baskal@adguard.com> Date: Sat May 16 01:05:03 2020 +0300 Update webpack
466 lines
13 KiB
JavaScript
466 lines
13 KiB
JavaScript
import 'url-polyfill';
|
|
import dateParse from 'date-fns/parse';
|
|
import dateFormat from 'date-fns/format';
|
|
import subHours from 'date-fns/sub_hours';
|
|
import addHours from 'date-fns/add_hours';
|
|
import addDays from 'date-fns/add_days';
|
|
import subDays from 'date-fns/sub_days';
|
|
import isSameDay from 'date-fns/is_same_day';
|
|
import round from 'lodash/round';
|
|
import axios from 'axios';
|
|
import i18n from 'i18next';
|
|
import uniqBy from 'lodash/uniqBy';
|
|
import versionCompare from './versionCompare';
|
|
|
|
import {
|
|
STANDARD_DNS_PORT,
|
|
STANDARD_WEB_PORT,
|
|
STANDARD_HTTPS_PORT,
|
|
CHECK_TIMEOUT,
|
|
DNS_RECORD_TYPES,
|
|
DEFAULT_TIME_FORMAT,
|
|
DEFAULT_DATE_FORMAT_OPTIONS,
|
|
DETAILED_DATE_FORMAT_OPTIONS,
|
|
DEFAULT_LANGUAGE,
|
|
FILTERED_STATUS,
|
|
FILTERED,
|
|
} from './constants';
|
|
|
|
/**
|
|
* @param string The time to format
|
|
* @returns string Returns the time in the format HH:mm:ss
|
|
*/
|
|
export const formatTime = (time) => {
|
|
const parsedTime = dateParse(time);
|
|
return dateFormat(parsedTime, DEFAULT_TIME_FORMAT);
|
|
};
|
|
|
|
/**
|
|
* @param string The date to format
|
|
* @returns string Returns the date and time in the format DD/MM/YYYY, HH:mm
|
|
*/
|
|
export const formatDateTime = (dateTime, options = DEFAULT_DATE_FORMAT_OPTIONS) => {
|
|
const currentLanguage = i18n.languages[0] || DEFAULT_LANGUAGE;
|
|
const parsedTime = dateParse(dateTime);
|
|
|
|
return parsedTime.toLocaleString(currentLanguage, options);
|
|
};
|
|
|
|
export const formatDetailedDateTime = (dateTime) => formatDateTime(
|
|
dateTime, DETAILED_DATE_FORMAT_OPTIONS,
|
|
);
|
|
|
|
/**
|
|
* @param string
|
|
* @returns boolean
|
|
*/
|
|
export const isToday = (date) => isSameDay(new Date(date), new Date());
|
|
|
|
export const normalizeLogs = (logs) => logs.map((log) => {
|
|
const {
|
|
time,
|
|
question,
|
|
answer: response,
|
|
reason,
|
|
client,
|
|
filterId,
|
|
rule,
|
|
service_name,
|
|
status,
|
|
original_answer,
|
|
} = log;
|
|
const { host: domain, type } = question;
|
|
const responsesArray = response ? response.map((response) => {
|
|
const { value, type, ttl } = response;
|
|
return `${type}: ${value} (ttl=${ttl})`;
|
|
}) : [];
|
|
return {
|
|
time,
|
|
domain,
|
|
type,
|
|
response: responsesArray,
|
|
reason,
|
|
client,
|
|
filterId,
|
|
rule,
|
|
status,
|
|
serviceName: service_name,
|
|
originalAnswer: original_answer,
|
|
};
|
|
});
|
|
|
|
export const normalizeHistory = (history, interval) => {
|
|
if (interval === 1 || interval === 7) {
|
|
const hoursAgo = subHours(Date.now(), 24 * interval);
|
|
return history.map((item, index) => ({
|
|
x: dateFormat(addHours(hoursAgo, index), 'D MMM HH:00'),
|
|
y: round(item, 2),
|
|
}));
|
|
}
|
|
|
|
const daysAgo = subDays(Date.now(), interval - 1);
|
|
return history.map((item, index) => ({
|
|
x: dateFormat(addDays(daysAgo, index), 'D MMM YYYY'),
|
|
y: round(item, 2),
|
|
}));
|
|
};
|
|
|
|
export const normalizeTopStats = (stats) => (
|
|
stats.map((item) => ({
|
|
name: Object.keys(item)[0],
|
|
count: Object.values(item)[0],
|
|
}))
|
|
);
|
|
|
|
export const addClientInfo = (data, clients, param) => (
|
|
data.map((row) => {
|
|
const clientIp = row[param];
|
|
const info = clients.find((item) => item[clientIp]) || '';
|
|
return {
|
|
...row,
|
|
info: (info && info[clientIp]) || '',
|
|
};
|
|
})
|
|
);
|
|
|
|
export const normalizeFilters = (filters) => (
|
|
filters ? filters.map((filter) => {
|
|
const {
|
|
id,
|
|
url,
|
|
enabled,
|
|
last_updated,
|
|
name = 'Default name',
|
|
rules_count = 0,
|
|
} = filter;
|
|
|
|
return {
|
|
id,
|
|
url,
|
|
enabled,
|
|
lastUpdated: last_updated,
|
|
name,
|
|
rulesCount: rules_count,
|
|
};
|
|
}) : []
|
|
);
|
|
|
|
export const normalizeFilteringStatus = (filteringStatus) => {
|
|
const {
|
|
enabled, filters, user_rules: userRules, interval, whitelist_filters,
|
|
} = filteringStatus;
|
|
const newUserRules = Array.isArray(userRules) ? userRules.join('\n') : '';
|
|
|
|
return {
|
|
enabled,
|
|
userRules: newUserRules,
|
|
filters: normalizeFilters(filters),
|
|
whitelistFilters: normalizeFilters(whitelist_filters),
|
|
interval,
|
|
};
|
|
};
|
|
|
|
export const getPercent = (amount, number) => {
|
|
if (amount > 0 && number > 0) {
|
|
return round(100 / (amount / number), 2);
|
|
}
|
|
return 0;
|
|
};
|
|
|
|
export const captitalizeWords = (text) => text.split(/[ -_]/g).map((str) => str.charAt(0).toUpperCase() + str.substr(1)).join(' ');
|
|
|
|
export const getInterfaceIp = (option) => {
|
|
const onlyIPv6 = option.ip_addresses.every((ip) => ip.includes(':'));
|
|
let interfaceIP = option.ip_addresses[0];
|
|
|
|
if (!onlyIPv6) {
|
|
option.ip_addresses.forEach((ip) => {
|
|
if (!ip.includes(':')) {
|
|
interfaceIP = ip;
|
|
}
|
|
});
|
|
}
|
|
|
|
return interfaceIP;
|
|
};
|
|
|
|
export const getIpList = (interfaces) => {
|
|
let list = [];
|
|
|
|
Object.keys(interfaces).forEach((item) => {
|
|
list = [...list, ...interfaces[item].ip_addresses];
|
|
});
|
|
|
|
return list.sort();
|
|
};
|
|
|
|
export const getDnsAddress = (ip, port = '') => {
|
|
const isStandardDnsPort = port === STANDARD_DNS_PORT;
|
|
let address = ip;
|
|
|
|
if (port) {
|
|
if (ip.includes(':') && !isStandardDnsPort) {
|
|
address = `[${ip}]:${port}`;
|
|
} else if (!isStandardDnsPort) {
|
|
address = `${ip}:${port}`;
|
|
}
|
|
}
|
|
|
|
return address;
|
|
};
|
|
|
|
export const getWebAddress = (ip, port = '') => {
|
|
const isStandardWebPort = port === STANDARD_WEB_PORT;
|
|
let address = `http://${ip}`;
|
|
|
|
if (port && !isStandardWebPort) {
|
|
if (ip.includes(':') && !ip.includes('[')) {
|
|
address = `http://[${ip}]:${port}`;
|
|
} else {
|
|
address = `http://${ip}:${port}`;
|
|
}
|
|
}
|
|
|
|
return address;
|
|
};
|
|
|
|
export const checkRedirect = (url, attempts) => {
|
|
let count = attempts || 1;
|
|
|
|
if (count > 10) {
|
|
window.location.replace(url);
|
|
return false;
|
|
}
|
|
|
|
const rmTimeout = (t) => t && clearTimeout(t);
|
|
const setRecursiveTimeout = (time, ...args) => setTimeout(
|
|
checkRedirect,
|
|
time,
|
|
...args,
|
|
);
|
|
|
|
let timeout;
|
|
|
|
axios.get(url)
|
|
.then((response) => {
|
|
rmTimeout(timeout);
|
|
if (response) {
|
|
window.location.replace(url);
|
|
return;
|
|
}
|
|
timeout = setRecursiveTimeout(CHECK_TIMEOUT, url, count += 1);
|
|
})
|
|
.catch((error) => {
|
|
rmTimeout(timeout);
|
|
if (error.response) {
|
|
window.location.replace(url);
|
|
return;
|
|
}
|
|
timeout = setRecursiveTimeout(CHECK_TIMEOUT, url, count += 1);
|
|
});
|
|
|
|
return false;
|
|
};
|
|
|
|
export const redirectToCurrentProtocol = (values, httpPort = 80) => {
|
|
const {
|
|
protocol, hostname, hash, port,
|
|
} = window.location;
|
|
const { enabled, port_https } = values;
|
|
const httpsPort = port_https !== STANDARD_HTTPS_PORT ? `:${port_https}` : '';
|
|
|
|
if (protocol !== 'https:' && enabled && port_https) {
|
|
checkRedirect(`https://${hostname}${httpsPort}/${hash}`);
|
|
} else if (protocol === 'https:' && enabled && port_https && port_https !== parseInt(port, 10)) {
|
|
checkRedirect(`https://${hostname}${httpsPort}/${hash}`);
|
|
} else if (protocol === 'https:' && (!enabled || !port_https)) {
|
|
window.location.replace(`http://${hostname}:${httpPort}/${hash}`);
|
|
}
|
|
};
|
|
|
|
export const normalizeTextarea = (text) => {
|
|
if (!text) {
|
|
return [];
|
|
}
|
|
|
|
return text.replace(/[;, ]/g, '\n').split('\n').filter((n) => n);
|
|
};
|
|
|
|
/**
|
|
* Normalizes the topClients array
|
|
*
|
|
* @param {Object[]} topClients
|
|
* @param {string} topClients.name
|
|
* @param {number} topClients.count
|
|
* @param {Object} topClients.info
|
|
* @param {string} topClients.info.name
|
|
* @returns {Object} normalizedTopClients
|
|
* @returns {Object.<string, number>} normalizedTopClients.auto - auto clients
|
|
* @returns {Object.<string, number>} normalizedTopClients.configured - configured clients
|
|
*/
|
|
|
|
export const normalizeTopClients = (topClients) => topClients.reduce(
|
|
(nameToCountMap, clientObj) => {
|
|
const { name, count, info: { name: infoName } } = clientObj;
|
|
// eslint-disable-next-line no-param-reassign
|
|
nameToCountMap.auto[name] = count;
|
|
// eslint-disable-next-line no-param-reassign
|
|
nameToCountMap.configured[infoName] = count;
|
|
return nameToCountMap;
|
|
}, { auto: {}, configured: {} },
|
|
);
|
|
|
|
export const getClientInfo = (clients, ip) => {
|
|
const client = clients
|
|
.find((item) => item.ip_addrs && item.ip_addrs.find((clientIp) => clientIp === ip));
|
|
|
|
if (!client) {
|
|
return '';
|
|
}
|
|
|
|
const { name, whois_info } = client;
|
|
const whois = Object.keys(whois_info).length > 0 ? whois_info : '';
|
|
|
|
return { name, whois };
|
|
};
|
|
|
|
export const getAutoClientInfo = (clients, ip) => {
|
|
const client = clients.find((item) => ip === item.ip);
|
|
|
|
if (!client) {
|
|
return '';
|
|
}
|
|
|
|
const { name, whois_info } = client;
|
|
const whois = Object.keys(whois_info).length > 0 ? whois_info : '';
|
|
|
|
return { name, whois };
|
|
};
|
|
|
|
export const sortClients = (clients) => {
|
|
const compare = (a, b) => {
|
|
const nameA = a.name.toUpperCase();
|
|
const nameB = b.name.toUpperCase();
|
|
|
|
if (nameA > nameB) {
|
|
return 1;
|
|
} if (nameA < nameB) {
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
};
|
|
|
|
return clients.sort(compare);
|
|
};
|
|
|
|
export const toggleAllServices = (services, change, isSelected) => {
|
|
services.forEach((service) => change(`blocked_services.${service.id}`, isSelected));
|
|
};
|
|
|
|
export const secondsToMilliseconds = (seconds) => {
|
|
if (seconds) {
|
|
return seconds * 1000;
|
|
}
|
|
|
|
return seconds;
|
|
};
|
|
|
|
export const normalizeRulesTextarea = (text) => text && text.replace(/^\n/g, '').replace(/\n\s*\n/g, '\n');
|
|
|
|
export const isVersionGreater = (currentVersion, previousVersion) => (
|
|
versionCompare(currentVersion, previousVersion) === -1
|
|
);
|
|
|
|
export const normalizeWhois = (whois) => {
|
|
if (Object.keys(whois).length > 0) {
|
|
const {
|
|
city, country, ...values
|
|
} = whois;
|
|
let location = (country && country) || '';
|
|
|
|
if (city && location) {
|
|
location = `${location}, ${city}`;
|
|
} else if (city) {
|
|
location = city;
|
|
}
|
|
|
|
if (location) {
|
|
return {
|
|
location,
|
|
...values,
|
|
};
|
|
}
|
|
|
|
return { ...values };
|
|
}
|
|
|
|
return whois;
|
|
};
|
|
|
|
export const isValidQuestionType = (type) => type && DNS_RECORD_TYPES.includes(type.toUpperCase());
|
|
|
|
export const getPathWithQueryString = (path, params) => {
|
|
const searchParams = new URLSearchParams(params);
|
|
|
|
return `${path}?${searchParams.toString()}`;
|
|
};
|
|
|
|
export const getParamsForClientsSearch = (data, param) => {
|
|
const uniqueClients = uniqBy(data, param);
|
|
return uniqueClients
|
|
.reduce((acc, item, idx) => {
|
|
const key = `ip${idx}`;
|
|
acc[key] = item[param];
|
|
return acc;
|
|
}, {});
|
|
};
|
|
|
|
/**
|
|
* Creates onBlur handler that can normalize input if normalization function is specified
|
|
*
|
|
* @param {Object} event
|
|
* @param {Object} event.target
|
|
* @param {string} event.target.value
|
|
* @param {Object} input
|
|
* @param {function} input.onBlur
|
|
* @param {function} [normalizeOnBlur]
|
|
* @returns {function}
|
|
*/
|
|
export const createOnBlurHandler = (event, input, normalizeOnBlur) => (
|
|
normalizeOnBlur
|
|
? input.onBlur(normalizeOnBlur(event.target.value))
|
|
: input.onBlur());
|
|
|
|
export const checkFiltered = (reason) => reason.indexOf(FILTERED) === 0;
|
|
export const checkRewrite = (reason) => reason === FILTERED_STATUS.REWRITE;
|
|
export const checkRewriteHosts = (reason) => reason === FILTERED_STATUS.REWRITE_HOSTS;
|
|
export const checkBlackList = (reason) => reason === FILTERED_STATUS.FILTERED_BLACK_LIST;
|
|
export const checkWhiteList = (reason) => reason === FILTERED_STATUS.NOT_FILTERED_WHITE_LIST;
|
|
// eslint-disable-next-line max-len
|
|
export const checkNotFilteredNotFound = (reason) => reason === FILTERED_STATUS.NOT_FILTERED_NOT_FOUND;
|
|
export const checkSafeSearch = (reason) => reason === FILTERED_STATUS.FILTERED_SAFE_SEARCH;
|
|
export const checkSafeBrowsing = (reason) => reason === FILTERED_STATUS.FILTERED_SAFE_BROWSING;
|
|
export const checkParental = (reason) => reason === FILTERED_STATUS.FILTERED_PARENTAL;
|
|
export const checkBlockedService = (reason) => reason === FILTERED_STATUS.FILTERED_BLOCKED_SERVICE;
|
|
|
|
export const getCurrentFilter = (url, filters) => {
|
|
const filter = filters && filters.find((item) => url === item.url);
|
|
|
|
if (filter) {
|
|
const { enabled, name, url } = filter;
|
|
return { enabled, name, url };
|
|
}
|
|
|
|
return { name: '', url: '' };
|
|
};
|
|
|
|
/**
|
|
* @param number Number to format
|
|
* @returns string Returns a string with a language-sensitive representation of this number
|
|
*/
|
|
export const formatNumber = (num) => {
|
|
const currentLanguage = i18n.languages[0] || DEFAULT_LANGUAGE;
|
|
return num.toLocaleString(currentLanguage);
|
|
};
|