This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/api/block-bots.js
2024-04-14 09:54:38 -07:00

53 lines
No EOL
971 B
JavaScript

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