qirolab/laravel-bannable
Composer 安装命令:
composer require qirolab/laravel-bannable
包简介
Laravel bannable package is for blocking and banning Eloquent models.
README 文档
README
Laravel bannable package for blocking and banning Eloquent models. Using this package any model can be made bannable such as Organizations, Teams, Groups, and others.
Installation
Download package into the project using Composer.
composer require qirolab/laravel-bannable
Registering package
Laravel 5.5 (or higher) uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
For Laravel 5.4 or earlier releases version include the service provider within app/config/app.php:
'providers' => [ Qirolab\Laravel\Bannable\BannableServiceProvider::class, ],
Prepare Migration
Now need to add nullable banned_at timestamp column to model. So, create a new migration file.
php artisan make:migration add_banned_at_column_to_users_table
Add $table->timestamp('banned_at')->nullable(); in this new migration file as in below example.
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddBannedAtColumnToUsersTable extends Migration { public function up() { Schema::table('users', function (Blueprint $table) { $table->timestamp('banned_at')->nullable(); }); } public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('banned_at'); }); } }
Now run migration.
php artisan migrate
Prepare bannable model
Use Bannable trait in the Model as in below example.
use Qirolab\Laravel\Bannable\Traits\Bannable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Bannable;
}
Available methods
Ban model entity.
$user->ban();
Ban model entity with reason comment
$user->ban([ 'comment' => 'ban comment!', ]);
Ban model entity with expire time
Here expired_at attribute could be \Carbon\Carbon instance or any time string which could be parsed by \Carbon\Carbon::parse($string) method:
$user->ban([ 'expired_at' => '2086-03-28 00:00:00', ]);
or
$user->ban([ 'expired_at' => '+1 year', ]);
or
$date = Carbon::now()->addWeeks(2); $user->ban([ 'expired_at' => $date, ]);
Remove ban model
On unban all related ban models are soft deletes.
$user->unban();
Check if entity is banned
$user->isBanned();
Check if entity is not banned
$user->isNotBanned();
Delete expired bans manually
Qirolab\Laravel\Bannable\Models\Ban::deleteExpired();
Scopes
Get all models which are not banned
$users = User::withoutBanned()->get();
Get banned and not banned models
$users = User::withBanned()->get();
Get only banned models
$users = User::onlyBanned()->get();
Disable scope that hides banned models entity by default
By default all banned models will be hidden. To disable query scopes all the time you can define disableBannedAtScope method in bannable model.
/** * Determine which BannedAtScope should be applied or not. * * @return bool */ public function disableBannedAtScope() { return true; }
Events
On model entity ban \Qirolab\Laravel\Bannable\Events\ModelWasBanned event is fired.
On model entity unban \Qirolab\Laravel\Bannable\Events\ModelWasUnbanned event is fired.
Middleware
To prevent banned users to go to protected routes Qirolab\Laravel\Bannable\Middleware\ForbidBannedUser middleware is created.
Register it in $routeMiddleware array of app/Http/Kernel.php file:
protected $routeMiddleware = [ 'isBannedUser' => \Qirolab\Laravel\Bannable\Middleware\ForbidBannedUser::class, ]
qirolab/laravel-bannable 适用场景与选型建议
qirolab/laravel-bannable 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.39k 次下载、GitHub Stars 达 17, 最近一次更新时间为 2018 年 12 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「user」 「block」 「laravel」 「eloquent」 「ban」 「restrict」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 qirolab/laravel-bannable 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 qirolab/laravel-bannable 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 qirolab/laravel-bannable 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Block routes by IP
See how Matrix and Neo blocks are being used across your sections.
Prevent crawlers from creating a session
Standalone replacement for php's native get_browser() function
User component for Yii2
This module is designed to provide a special alerts feed block for Howard University
统计信息
- 总下载量: 3.39k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 17
- 点击次数: 12
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-12-30