Laravel
的ORM
模型在一些特定的情況下,會觸發一系列的事件,目前支援的事件有這些:creating
, created
, updating
, updated
, saving
, saved
, deleting
, deleted
, restoring
, restored
,那麼在底層是如何實現這個功能的呢?
1.如何使用模型事件
先來看看如何使用模型事件,文件裡面寫了兩種方法,實際上總共有三種方式可以定義一個模型事件,這裡以saved
事件來做例子,其他事件都一樣。
-
events
屬性
直接上程式碼:
class User extends Authenticatable {
use Notifiable;
protected $events = [
'saved' => UserSaved::class,
];
}
這個比較難以理解,而且文件並沒有詳細說明,剛開始以為saved
被觸發後會呼叫UserSaved
裡面的handle
方法,實際上並不是。這個陣列只是對事件做的一個對映,它定義了在模型的saved
的時候會觸發UserSaved
這個事件,我們還要定義該事件以及其監聽器才可以:
namespace App\Events;
use App\User;
class UserSaved {
public $user;
public function __construct(User $user){
$this->user = $user;
}
}
namespace App\Listeners;
class UserSavedListener {
public function handle(UserSaved $userSaved){
dd($userSaved);
}
}
然後還要到EventServiceProvider
中去註冊該事件和監聽器:
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
'App\Events\UserSaved' => [
'App\Listeners\UserSavedListener',
]
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
parent::boot();
}
}
這樣在saved
節點的時候,UserSaved
事件會被觸發,其監聽器UserSavedListener
的handle
方法會被呼叫。
- 2.觀察者
這是文件比較推崇的一個模型事件定義方法,也比較好理解,先定義一個觀察者:
use App\User;
class UserObserver
{
/**
* 監聽使用者建立事件.
*
* @param User $user
* @return void
*/
public function created(User $user)
{
//
}
/**
* 監聽使用者建立/更新事件.
*
* @param User $user
* @return void
*/
public function saved(User $user)
{
//
}
}
然後在某個服務提供者的boot
方法中註冊觀察者:
namespace App\Providers;
use App\User;
use App\Observers\UserObserver;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
User::observe(UserObserver::class);
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}
}
這樣在模型事件觸發的時候,UserObserver
的相應方法就會被呼叫。其實,在使用觀察者的時候,除了一些系統自帶的,我們還可以定義一些自己的事件:
class User extends Authenticatable {
use Notifiable;
protected $observables = [
'customing', 'customed'
];
}
然後在觀察者裡面定義同名方法:
class UserObserver
{
/**
* 監聽使用者建立/更新事件.
*
* @param User $user
* @return void
*/
public function saved(User $user)
{
//
}
public function customing(User $user){
}
public function customed(User $user){
}
}
由於是我們自己定義的事件,所以觸發的時候也必須手動觸發,在需要觸發的地方呼叫模型裡面的一個fireModelEvent
方法即可。不過由於該方法是protected
的,所以只能在自己定義的模型方法裡面,當然如果透過反射來呼叫,或許可以直接在$user
物件上觸發也說不定,這個我沒試,大家可以自行測試下。
class User extends Authenticatable {
use Notifiable;
protected $observables = [
'customing', 'awesoming'
];
public function custom(){
if ($this->fireModelEvent('customing') === false) {
return false;
}
//TODO
if ($this->fireModelEvent('customed') === false) {
return false;
}
}
}
-
3.靜態方法定義
我們還可以透過模型上的對應靜態方法來定義一個事件,在EventServiceProvider
的boot
方法裡面定義:class EventServiceProvider extends ServiceProvider{ /** * Register any events for your application. * * @return void */ public function boot() { parent::boot(); User::saved(function(User$user) { }); User::saved('UserSavedListener@saved'); } }
透過靜態方法定義的時候,可以直接傳遞進入一個閉包,也可以定義為某個類的方法,事件觸發時候傳遞進入的引數就是該模型例項。
2.模型事件實現原理
Laravel
的模型事件所有的程式碼都在Illuminate\Database\Eloquent\Concerns\HasEvents
這個trait
下,先來看看Laravel
是如何註冊這些事件的,其中的$dispatcher
是一個事件的排程器Illuminate\Contracts\Events\Dispatcher
例項,在Illuminate\Database\DatabaseServiceProvider
的boot
方法中注入。
protected static function registerModelEvent($event, $callback){
if (isset(static::$dispatcher)) {
$name = static::class;
static::$dispatcher->listen("eloquent.{$event}: {$name}", $callback);
}
}
這裡是Laravel
事件註冊的地方,其中以eloquent.saved:App\User
為事件名,$callback
作為處理器來註冊。這個註冊事件的方法,只會註冊以觀察者和靜態方法定義的。假如你定義為模型的$events
屬性的話,Laravel
是不會註冊的,會在觸發事件的時候同步觸發,接下來會分析。
然後在HasEvents
中定義了一堆的方法如下,這些就是我們上面透過靜態方法來定義事件監聽器的原理,不多說一看就懂。
public static function saving($callback){
static::registerModelEvent('saving', $callback);
}
public static function saved($callback){
static::registerModelEvent('saved', $callback);
}
那麼如何透過觀察者的形式來定義事件監聽器呢?看原始碼:
public static function observe($class){
$instance = new static;
$className = is_string($class) ? $class : get_class($class);
foreach ($instance->getObservableEvents() as $event) {
if (method_exists($class, $event)) {
static::registerModelEvent($event, $className.'@'.$event);
}
}
}
public function getObservableEvents()
{
return array_merge(
[
'creating', 'created', 'updating', 'updated',
'deleting', 'deleted', 'saving', 'saved',
'restoring', 'restored',
],
$this->observables
);
}
先獲取到observer
的類名,然後判斷是否存在事件名對應的方法,存在則呼叫registerModelEvent
註冊,這裡事件名還包括我們自己定義在observables
陣列中的。
事件以及監聽器都定義好後,就是如何觸發了,前面說到有一個方法fireModelEvent
,來看看原始碼:
protected function fireModelEvent($event, $halt = true)
{
if (! isset(static::$dispatcher)) {
return true;
}
$method = $halt ? 'until' : 'fire';
$result = $this->filterModelEventResults(
$this->fireCustomModelEvent($event, $method)
);
if ($result === false) {
return false;
}
return ! empty($result) ? $result : static::$dispatcher->{$method}(
"eloquent.{$event}: ".static::class, $this
);
}
其中比較關鍵的一個方法是fireCustomModelEvent
,它接受一個事件名以及觸發方式。順帶一提,filterModelEventResults
這個方法的作用就是把監聽器的返回值為null
的過濾掉。
看看fireCustomModelEvent
的原始碼:
protected function fireCustomModelEvent($event, $method)
{
if (! isset($this->events[$event])) {
return;
}
$result = static::$dispatcher->$method(new $this->events[$event]($this));
if (! is_null($result)) {
return $result;
}
}
這個就是用來觸發我們透過$events
定義的事件了,假如我們這麼定義:
class User extends Model{
protected $events = [
'saved' => UserSaved::class
]
}
那這裡的觸發就是:
$result = static::$dispatcher->fire(new UserSaved($this));
順帶一提,Laravel
中觸發事件的方法有兩個,一個是常用的fire
,還有一個是util
,這兩個的差別就是fire
會把監聽器的返回值返回,而util
永遠返回null
然後接下來就是會去觸發透過觀察者和靜態方法定義的監聽器了,這一段程式碼:
if ($result === false) {
return false;
}
return ! empty($result) ? $result : static::$dispatcher->{$method}(
"eloquent.{$event}: ".static::class, $this
);
這裡會先判斷$events
定義的監聽器是否返回false
以及返回值是否為空,如果為false
則直接結束事件,如果返回不為false
而且為空的話,會再去觸發透過觀察者和靜態方法定義的監聽器,並且把監聽器的返回值返回。
完。
本作品採用《CC 協議》,轉載必須註明作者和本文連結