Git Product home page Git Product logo

laravel-block-ip's Introduction

Laravel Block IP Package

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

The Laravel Block IP package provides a convenient way to control everything related to website visits using the Laravel framework. It allows you to block specific IP addresses, configure rate limiting, and receive notifications for certain events.

Installation

You can install the package via Composer by running the following command:

composer require michaelnabil230/laravel-block-ip

After installing the package, you need to publish the package files and run the migrations:

php artisan block-ip:install
php artisan migrate

To publish and run the migrations separately, you can use the following commands:

php artisan vendor:publish --tag="laravel-block-ip-migrations"
php artisan migrate

You can also publish the package's configuration file using the following command:

php artisan vendor:publish --tag="laravel-block-ip-config"

The published configuration file allows you to customize various settings related to block IP functionality, notifications, caching, and more.

Usage

To configure rate limiting and use the package's functionality, you can add code to your app/Providers/RouteServiceProvider.php file. The following code demonstrates how to configure rate limiting and enable the package:

protected function configureRateLimiting()
{
    RateLimiter::for('api', function (Request $request) {
        return Limit::perMinute(60)->by($request->user()?->id ?: $request->ip());
    });

    \MichaelNabil230\BlockIp\BlockIpRegistrar::rateLimiter();
}

By default, the rate limiter is set to allow 60 requests per minute, but you can customize this value by passing it to the rateLimiter() method.

The package provides a BlockIpMiddleware middleware that you can add to your routes in the app/Http/Kernel.php file. Make sure to uncomment the necessary line for the throttle middleware as well. Here's an example:

protected $middlewareAliases = [
    // ...
    'block-ip' => \MichaelNabil230\BlockIp\Middleware\BlockIpMiddleware::class,
];

To protect your routes using the block IP middleware and rate limiting, you can define them as follows:

Route::middleware(['block-ip', 'throttle:block-ip'])->group(function () {
    // Your protected routes here
});

If you want to unblock all IP addresses, you can use the following command:

php artisan block-ip:unblock --all

You can also unblock multiple IP addresses by providing them as a comma-separated list:

php artisan block-ip:unblock --ips=127.0.0.1,127.0.0.2

To block new IP addresses, you can use the following command:

php artisan block-ip:block 127.0.0.1 127.0.0.2

Support

If you find this package useful, you can show your support by contributing financially:

Testing

You can run the package's tests using the following command:

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

laravel-block-ip's People

Contributors

dependabot[bot] avatar github-actions[bot] avatar michaelnabil230 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Forkers

lowerrocklabs

laravel-block-ip's Issues

Command Does Not Work

Running the command:

php artisan block-ip:block 252.2.2.2

Results in

The "ips" argument does not exist.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.