tkaratug/laravel-domain-whitelist

A domain wwhitelist checker middleware.
1,216 13
Install
composer require tkaratug/laravel-domain-whitelist
Latest Version:1.2.0
PHP:^7.4|^8.0|^8.1|^8.2
License:MIT
Last Updated:Feb 19, 2023
Links: GitHub  ·  Packagist
Maintainer: tkaratug

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


Introduction

This package contains a middleware to check whether the origin domain is in the whitelist. If not it blocks the request.


Installation

You can install the package via composer:

composer require tkaratug/laravel-domain-whitelist

You can publish the config file with:

php artisan vendor:publish --provider="Tkaratug\LaravelDomainWhitelist\LaravelDomainWhitelistServiceProvider" --tag="domain-whitelist-config"

This is the contents of the published config file:

return [
    /*
    |---------------------------------------------
    | Domains to allow
    | Leave empty to allow all requests
    |---------------------------------------------
    */
    'domains' => [
        //'*.example.com',
        //'example.com',
    ],

    /*
    |---------------------------------------------
    | Paths to exclude
    |---------------------------------------------
    */
    'excludes' => [
        //'/api/posts',
    ],
];

Usage

Packages comes with DomainWhitelist middleware. You can register it in $routeMiddleware in app/Http/Kernel.php file:

protected $routeMiddleware = [
    // ...
    'domain_whitelist' => \Tkaratug\LaravelDomainWhitelist\Middlewares\DomainWhitelist::class,
];

Use the middleware in any of your routes.

Route::middleware('domain_whitelist')->get('/', [HomeController::class, 'index']);

Testing

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.

Related Packages

reliese/laravel

Reliese Components for Laravel Framework code generation.

3,954,390 1,705
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,312 160
laravel-ja/laravel

The Laravel Framework.

5,667 17
kavenegar/laravel

laravel 4 and 5 kavenegar integration

366,462 86
laravel/laravel

The skeleton application for the Laravel framework.

64,738,171 84,935