我对 Laravel 还是很陌生,并且已经完成了一些基本的 Laracast。现在我开始了我的第一个 Laravel 项目,但我一直在思考如何使用我的第一个包“Landlord”。基本上我需要在我的应用程序中设置 Multi-Tenancy 。我有一个公司表和一个用户表,用户表有一个 company_id 列。当公司注册成功时,它会创建公司并将 company_id 附加到用户。

我认为 Landlord 是实现 Multi-Tenancy 应用程序的最佳方式,所以我完成了安装说明,现在我将它包含在我的应用程序中。

但是 USAGE 部分的第一行说:
重要提示:房东是无国籍的。这意味着当您调用 addTenant() 时,它只会限定当前请求的范围。



看起来我需要附加一个 Landlord::addTenant('tenant_id', 1); 外观。

这可能是我忽略的一个非常简单的答案,但是使用 addTenant 的最佳位置在哪里,我是否必须使用每个 Controller 或模型重新声明它?我应该在用户登录时附加它,在我的路由中使用它还是用作中间件?如果它是中间件,为了从当前用户中提取 company_id 并将其与 addTenant 一起使用,以下是否正确?

中间件:

public function handle($request, Closure $next){
    $tenantId = Auth::user()->tenant_id;

    Landlord::addTenant('tenant_id', $tenantId);

    return $next($request);
}

更新

这是我的中间件 (MultiTenant.php)
<?php

namespace App\Http\Middleware;

use Closure;
use App\User;
use Illuminate\Support\Facades\Auth;

class MultiTenant
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */

    public function handle($request, Closure $next)
    {
        if (Auth::check()) {
            $tenantId = Auth::user()->company_id;

            Landlord::addTenant('company_id', $tenantId); // Different column name, but same concept
        }

        return $next($request);
    }
}

我的路线/web.php
<?php

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of the routes that are handled
| by your application. Just tell Laravel the URIs it should respond
| to using a Closure or controller method. Build something great!
|
*/

Route::get('/', function () {
    return view('welcome');
});

Auth::routes();
Route::group(['middleware' => ['multitenant']], function () {
    Route::get('/home', 'HomeController@index');

    //Clients
    Route::resource('clients', 'ClientController');
});

我的 Client.php 模型:
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use HipsterJazzbo\Landlord\BelongsToTenants;

class Client extends Model
{
    use BelongsToTenants;
    //
    protected $fillable = [
        'organization',
    ];

}

https://github.com/HipsterJazzbo/Landlord#user-content-usage

最佳答案

虽然只有一种选择,但我也选择了 middleware 路线。我认为这是实现它的一种简单方法。

我将 middleware 添加到我的 routes/web.php 文件中:

Route::group(['middleware' => ['landlord']], function () {
    // Your routes
});

我的 landlord middleware 看起来像这样:
public function handle($request, Closure $next)
{
    if (Auth::check()) {
        $tenantId = Auth::user()->company_id;

        Landlord::addTenant('company_id', $tenantId); // Different column name, but same concept
    }

    return $next($request);
}

然后我只需将 trait 添加到我想要范围的模型中:
use HipsterJazzbo\Landlord\BelongsToTenant;

class User extends Authenticatable
{
    use BelongsToTenant;
}

更新

另外,请确保在 config/app.php 文件中已将 landlord 添加到 providers 数组中:
'providers' => [
    // ...
    HipsterJazzbo\Landlord\LandlordServiceProvider::class
    // ...
],

aliases 数组:
'aliases' => [

    // ...
    'Landlord'   => HipsterJazzbo\Landlord\Facades\Landlord::class,
    // ...
],

然后最后 composer dump-autoload 完成后刷新自动加载。

关于php - 如何使用 Laravel 包 LandLord,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40877165/

10-11 15:20