mirror of
https://github.com/ai-robots-txt/ai.robots.txt.git
synced 2025-04-05 19:37:45 +00:00
feat: add edge function
This commit is contained in:
parent
9a92568266
commit
1e91744ed2
1 changed files with 61 additions and 0 deletions
61
edge-functions/block-bots.js
Normal file
61
edge-functions/block-bots.js
Normal file
|
@ -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
|
||||||
|
};
|
Loading…
Reference in a new issue