← Решения Cloudflare по борьбе с ботами / bots / workers-templates
Действие Delay
Клиенты с Bot Management и Workers подписку, могут использовать приведённый ниже шаблон, чтобы добавить задержку для запросов, которые, вероятно, исходят от ботов.
Шаблон задаёт минимальную и максимальную задержку и замедляет запросы, у которых оценка бота меньше 30, а путь URI начинается с /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);
},
};Шаблон 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>;