chore: drop expensive edge func
This commit is contained in:
parent
df3a98be39
commit
2f2796bf12
1 changed files with 0 additions and 53 deletions
|
@ -1,53 +0,0 @@
|
||||||
import { getStore } from '@netlify/blobs'
|
|
||||||
import { DateTime } from 'luxon'
|
|
||||||
|
|
||||||
const botUas = [
|
|
||||||
'AdsBot-Google',
|
|
||||||
'Amazonbot',
|
|
||||||
'anthropic-ai',
|
|
||||||
'Applebot',
|
|
||||||
'AwarioRssBot',
|
|
||||||
'AwarioSmartBot',
|
|
||||||
'Bytespider',
|
|
||||||
'CCBot',
|
|
||||||
'ChatGPT',
|
|
||||||
'ChatGPT-User',
|
|
||||||
'Claude-Web',
|
|
||||||
'ClaudeBot',
|
|
||||||
'cohere-ai',
|
|
||||||
'DataForSeoBot',
|
|
||||||
'Diffbot',
|
|
||||||
'FacebookBot',
|
|
||||||
'FacebookBot',
|
|
||||||
'Google-Extended',
|
|
||||||
'GPTBot',
|
|
||||||
'ImagesiftBot',
|
|
||||||
'magpie-crawler',
|
|
||||||
'omgili',
|
|
||||||
'Omgilibot',
|
|
||||||
'peer39_crawler',
|
|
||||||
'PerplexityBot',
|
|
||||||
'YouBot'
|
|
||||||
]
|
|
||||||
|
|
||||||
export default async (request, context) => {
|
|
||||||
const ua = request.headers.get('user-agent');
|
|
||||||
const bots = getStore('bots')
|
|
||||||
let isBot = false
|
|
||||||
|
|
||||||
botUas.forEach(u => {
|
|
||||||
if (ua.toLowerCase().includes(u.toLowerCase())) {
|
|
||||||
isBot = true
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
if (isBot) await bots.set(ua, DateTime.now())
|
|
||||||
|
|
||||||
const response = isBot ? new Response(null, { status: 401 }) : await context.next();
|
|
||||||
|
|
||||||
return response
|
|
||||||
};
|
|
||||||
|
|
||||||
export const config = {
|
|
||||||
path: '/*',
|
|
||||||
}
|
|
Reference in a new issue