laravel-block-bots icon indicating copy to clipboard operation
laravel-block-bots copied to clipboard

add console commands to list [hits, notified], event BotBlockedEvent

Open AMoktar opened this issue 1 year ago • 0 comments

php artisan block-bots:list-hits
php artisan block-bots:list-notified

I had to modify the key attribute https://github.com/Potelo/laravel-block-bots/blob/43f552d0b0770a0b57fc06f1018db93dab28dfbc/src/Contracts/Client.php#L29 and adding prefix

$this->key = "block_bot:hits:{$this->id}"

so I can use this prefix in commands like so

$keys = Redis::keys('block_bot:hits*');

Also I've added an event BotBlockedEvent

AMoktar avatar Sep 24 '23 13:09 AMoktar