upstream-team/laravel-crawler-detect

Wrapper for the crawler detection package

0.1.10 2023-10-20 11:24 UTC

This package is auto-updated.

Last update: 2024-04-21 12:23:03 UTC


README

About

Welcome to the Laravel Crawler Detect repository, your powerful ally in identifying and handling web crawlers and bots within your Laravel applications. In the vast world of web traffic, being able to discern between genuine users and automated crawl bots is crucial. This tool is designed to seamlessly integrate with your Laravel projects, giving you the ability to efficiently detect spiders, bots, and crawler software.

Install

composer require upstream-team/laravel-crawler-detect

Usage

1. Macros

request()->isCrawler();

2. Middleware

    protected $middlewareGroups = [
        'web' => [
            // ...
            UpstreamTeam\CrawlerDetect\Middleware\CrawlerFilter::class,
        ],
        // ...

3. Service

app('crawler-detect')->isCrawler();
// or
app('crawler-detect')->isCrawler($userAgent);

4. Facade

CrawlerDetectFacade::isCrawler();
// or
CrawlerDetectFacade::isCrawler($userAgent);