qirolab/laravel-bannable 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

qirolab/laravel-bannable

Composer 安装命令:

composer require qirolab/laravel-bannable

包简介

Laravel bannable package is for blocking and banning Eloquent models.

README 文档

README

Latest Version on Packagist GitHub Tests Action Status Styling Psalm GitHub

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, ]

统计信息

  • 总下载量: 3.39k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 17
  • 点击次数: 5
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 17
  • Watchers: 1
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-12-30

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固