Merge pull request #12250 from overleaf/ii-add-new-email-blocklist

[web] Prevent Blocklisted domains from appearing as suggestion

GitOrigin-RevId: b02bebe3e043cb264fbdbffce3f783b3af483e95
This commit is contained in:
Jakob Ackermann 2023-03-16 10:35:28 +00:00 committed by Copybot
parent 798df873c4
commit 223b8aa9d8
3 changed files with 34 additions and 9 deletions

View file

@ -84,6 +84,9 @@ function Input({ onChange, handleAddNewEmail }: InputProps) {
setMatchedDomain(cachedDomain)
return
}
if (domainBlocklist.some(d => domain.endsWith(d))) {
return
}
const query = `?hostname=${domain}&limit=1`
getJSON<Nullable<DomainInfo[]>>(`/institutions/domains${query}`, {
signal,
@ -92,7 +95,7 @@ function Input({ onChange, handleAddNewEmail }: InputProps) {
if (!(data && data[0])) {
return
}
if (domainBlocklist.has(data[0].hostname)) {
if (domainBlocklist.some(d => data[0].hostname.endsWith(d))) {
return
}
const hostname = data[0]?.hostname

View file

@ -1,4 +1,4 @@
const domainBlocklist = new Set(['overleaf.com'])
const domainBlocklist = ['overleaf.com']
const commonTLDs = [
'br',
'cn',
@ -54,8 +54,8 @@ const commonDomains = [
for (const domain of commonDomains) {
for (const tld of commonTLDs) {
domainBlocklist.add(`${domain}.${tld}`)
domainBlocklist.push(`${domain}.${tld}`)
}
}
export default domainBlocklist
export default domainBlocklist as ReadonlyArray<typeof domainBlocklist[number]>

View file

@ -10,6 +10,7 @@ import fetchMock from 'fetch-mock'
import Input, {
clearDomainCache,
} from '../../../../../../frontend/js/features/settings/components/emails/add-email/input'
import domainBlocklist from '../../../../../../frontend/js/features/settings/domain-blocklist'
const testInstitutionData = [
{ university: { id: 124 }, hostname: 'domain.edu' },
@ -215,19 +216,40 @@ describe('<AddEmailInput/>', function () {
})
describe('when there is a match for a blocklisted domain', function () {
beforeEach(function () {
const [blockedDomain] = domainBlocklist
afterEach(function () {
clearDomainCache()
fetchMock.reset()
})
it('should not render the suggestion with blocked domain', async function () {
const blockedInstitution = [
{ university: { id: 1 }, hostname: 'overleaf.com' },
{ university: { id: 1 }, hostname: blockedDomain },
]
fetchMock.get('express:/institutions/domains', blockedInstitution)
fireEvent.change(screen.getByRole('textbox'), {
target: { value: 'user@o' },
target: { value: `user@${blockedDomain.split('.')[0]}` },
})
await fetchMock.flush(true)
expect(screen.queryByText(`user@${blockedDomain}`)).to.be.null
})
it('should not render the suggestion', async function () {
it('should not render the suggestion with blocked domain having a subdomain', async function () {
const blockedInstitution = [
{
university: { id: 1 },
hostname: `subdomain.${blockedDomain}`,
},
]
fetchMock.get('express:/institutions/domains', blockedInstitution)
fireEvent.change(screen.getByRole('textbox'), {
target: {
value: `user@subdomain.${blockedDomain.split('.')[0]}`,
},
})
await fetchMock.flush(true)
expect(screen.queryByText('user@overleaf.com')).to.be.null
expect(screen.queryByText(`user@subdomain.${blockedDomain}`)).to.be.null
})
})