ip block brave

This commit is contained in:
Maximilian Schneider 2021-08-10 00:43:43 +02:00
parent 836e7d5e44
commit b2f8dfbdf9
1 changed files with 11 additions and 4 deletions

View File

@ -36,10 +36,17 @@ export default function useIpAddress() {
useEffect(() => {
const checkIpLocation = async () => {
const response = await fetch(`https://www.cloudflare.com/cdn-cgi/trace`)
const parsedResponse = await response.text()
const ipLocation = parsedResponse.match(/loc=(.+)/)
const ipCountryCode = ipLocation ? ipLocation[1] : ''
let ipCountryCode
try {
const response = await fetch(`https://www.cloudflare.com/cdn-cgi/trace`)
const parsedResponse = await response.text()
const ipLocation = parsedResponse.match(/loc=(.+)/)
ipCountryCode = ipLocation ? ipLocation[1] : ''
} catch {
const response = await fetch(`https://countrycode.bonfida.workers.dev/`)
const parsedResponse = await response.json()
ipCountryCode = parsedResponse.countryCode
}
if (ipCountryCode) {
setIpAllowed(!SANCTIONED_COUNTRY_CODES.includes(ipCountryCode))