diff --git a/edge-functions/block-bots.js b/edge-functions/block-bots.js new file mode 100644 index 0000000..ea3eb35 --- /dev/null +++ b/edge-functions/block-bots.js @@ -0,0 +1,61 @@ +/** +* block-bots.js +* View the original post by Jeremia Kimelman at: +* https://www.jeremiak.com/blog/block-bots-netlify-edge-functions/ +* +* modify `netlify.toml` +* [[edge_functions]] +* function = "block-bots" +* path = "/*" +* +* Place at `netlify/edge-functions/block-bots.js` +*/ + +// inspired (and taken) from ethan marcotte's blog post +// https://ethanmarcotte.com/wrote/blockin-bots/ +const botUas = [ + 'AdsBot-Google', + 'Amazonbot', + 'anthropic-ai', + 'Applebot', + 'AwarioRssBot', + 'AwarioSmartBot', + 'Bytespider', + 'CCBot', + 'ChatGPT-User', + 'ClaudeBot', + 'Claude-Web', + 'cohere-ai', + 'DataForSeoBot', + 'FacebookBot', + 'FriendlyCrawler', + 'Google-Extended', + 'GoogleOther', + 'GPTBot', + 'ImagesiftBot', + 'magpie-crawler', + 'Meltwater', + 'omgili', + 'omgilibot', + 'peer39_crawler', + 'peer39_crawler/1.0', + 'PerplexityBot', + 'PiplBot', + 'Seekr', + 'YouBot', +] + +export default async (request, context) => { + const ua = request.headers.get('user-agent'); + + let isBot = false + + botUas.forEach(u => { + if (ua.toLowerCase().includes(u.toLowerCase())) { + isBot = true + } + }) + + const response = isBot ? new Response(null, { status: 401 }) : await context.next(); + return response +}; \ No newline at end of file