chore: drop expensive edge func

This commit is contained in:
Cory Dransfeldt 2024-04-14 11:31:16 -07:00
parent df3a98be39
commit 2f2796bf12
No known key found for this signature in database

View file

@ -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: '/*',
}