← Řešení Cloudflare pro boty / bots / workers-templates
Akce Delay
Zákazníci s Bot Management a Workers s předplatným můžete použít níže uvedenou šablonu k zavedení zpoždění u požadavků, které pravděpodobně pocházejí od botů.
Šablona nastavuje minimální a maximální zpoždění a zpožďuje požadavky, u kterých je skóre bota nižší než 30 a cesta URI začíná na /exampleURI.
// Configurable Variables
const PATH_START = "/exampleURI";
const DELAY_FROM = 5; // in seconds
const DELAY_TO = 10; // in seconds
export default {
async fetch(request, env, ctx) {
const url = new URL(request.url);
const botScore = request.cf.botManagement.score;
if (url.pathname.startsWith(PATH_START) && botScore < 30) {
// Random delay between DELAY_FROM and DELAY_TO seconds
const delay =
Math.floor(Math.random() * (DELAY_TO - DELAY_FROM + 1)) + DELAY_FROM;
await new Promise((resolve) => setTimeout(resolve, delay * 1000));
// Fetch the original request
return fetch(request);
}
// Fetch the original request without delay
return fetch(request);
},
};Šablona Workers
// Configurable Variables
const PATH_START = '/exampleURI';
const DELAY_FROM = 5; // in seconds
const DELAY_TO = 10; // in seconds
export default {
async fetch(request, env, ctx): Promise<Response> {
const url = new URL(request.url);
const botScore = request.cf.botManagement.score
if (url.pathname.startsWith(PATH_START) && botScore < 30) {
// Random delay between DELAY_FROM and DELAY_TO seconds
const delay = Math.floor(Math.random() * (DELAY_TO - DELAY_FROM + 1)) + DELAY_FROM;
await new Promise(resolve => setTimeout(resolve, delay * 1000));
// Fetch the original request
return fetch(request);
}
// Fetch the original request without delay
return fetch(request);
},
} satisfies ExportedHandler<Env>;