Laravel 5.4,5.3:自定义或扩展通知 - 数据库模型

Bas*_*MHL 9 laravel laravel-5 laravel-6

恕我直言,当前用于在Laravel中保存通知的数据库通道是非常糟糕的设计:

  • 例如,您不能在项目上使用外键级联来清理已删除项目的通知
  • data列中搜索自定义属性(转换为Array)不是最佳选择

您将如何DatabaseNotification在供应商包中扩展模型?

我想添加列event_id,question_id,user_id(在创建该通知用户)等等为默认laravel notifications

如何覆盖send函数以包含更多列?

在:

vendor/laravel/framework/src/Illuminate/Notifications/Channels/DatabaseChannel.php
Run Code Online (Sandbox Code Playgroud)

代码:

class DatabaseChannel
{
 /**
  * Send the given notification.
  *
  * @param  mixed  $notifiable
  * @param  \Illuminate\Notifications\Notification  $notification
  * @return \Illuminate\Database\Eloquent\Model
  */
 public function send($notifiable, Notification $notification)
 {
    return $notifiable->routeNotificationFor('database')->create([
        'id' => $notification->id,
        'type' => get_class($notification),

      \\I want to add these
        'user_id' => \Auth::user()->id,
        'event_id' => $notification->type =='event' ? $notification->id : null, 
        'question_id' => $notification->type =='question' ? $notification->id : null,
      \\End adding new columns

        'data' => $this->getData($notifiable, $notification),
        'read_at' => null,
    ]);
 }
}
Run Code Online (Sandbox Code Playgroud)

Bas*_*MHL 20

要创建自定义通知渠道:

首先,在App\Notifications中创建一个类,例如:

<?php

namespace App\Notifications;

use Illuminate\Notifications\Notification;

class CustomDbChannel 
{

  public function send($notifiable, Notification $notification)
  {
    $data = $notification->toDatabase($notifiable);

    return $notifiable->routeNotificationFor('database')->create([
        'id' => $notification->id,

        //customize here
        'answer_id' => $data['answer_id'], //<-- comes from toDatabase() Method below
        'user_id'=> \Auth::user()->id,

        'type' => get_class($notification),
        'data' => $data,
        'read_at' => null,
    ]);
  }

}
Run Code Online (Sandbox Code Playgroud)

其次,via在Notification类的方法中使用此通道:

<?php

namespace App\Notifications;

use Illuminate\Notifications\Notification;

use App\Notifications\CustomDbChannel;

class NewAnswerPosted extends Notification
{
  private $answer;

  public function __construct($answer)
  {
    $this->answer = $answer;
  }

  public function via($notifiable)
  {
    return [CustomDbChannel::class]; //<-- important custom Channel defined here
  }

  public function toDatabase($notifiable)
  {
    return [
      'type' => 'some data',
      'title' => 'other data',
      'url' => 'other data',
      'answer_id' => $this->answer->id //<-- send the id here
    ];
  }
}
Run Code Online (Sandbox Code Playgroud)

  • 伟大的, شكراً جزيلاً (3认同)
  • 不支持驱动程序 [App\Notifications\CustomDatabaseChannel] (2认同)

Kam*_*han 8

创建并使用您自己的Notification模型和Notifiable特征,然后在您的(用户)模型中使用您自己的 Notifiable 特征。

应用\Notifiable.php:

namespace App;

use Illuminate\Notifications\Notifiable as BaseNotifiable;

trait Notifiable
{
    use BaseNotifiable;

    /**
     * Get the entity's notifications.
     */
    public function notifications()
    {
        return $this->morphMany(Notification::class, 'notifiable')
                            ->orderBy('created_at', 'desc');
    }
}
Run Code Online (Sandbox Code Playgroud)

应用\Notification.php:

namespace App;

use Illuminate\Notifications\DatabaseNotification;

class Notification extends DatabaseNotification
{
    // ...
}
Run Code Online (Sandbox Code Playgroud)

应用\User.php:

namespace App;

use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    use Notifiable;

    // ...
}
Run Code Online (Sandbox Code Playgroud)


Sam*_*ins 6

@cweiske response的示例。

如果您确实需要扩展Illuminate\Notifications\Channels\DatabaseChannel不创建新频道,您可以:

扩展通道:

<?php

namespace App\Notifications;

use Illuminate\Notifications\Channels\DatabaseChannel as BaseDatabaseChannel;
use Illuminate\Notifications\Notification;

class MyDatabaseChannel extends BaseDatabaseChannel
{
    /**
     * Send the given notification.
     *
     * @param  mixed  $notifiable
     * @param  \Illuminate\Notifications\Notification  $notification
     * @return \Illuminate\Database\Eloquent\Model
     */
    public function send($notifiable, Notification $notification)
    {
        $adminNotificationId = null;
        if (method_exists($notification, 'getAdminNotificationId')) {
            $adminNotificationId = $notification->getAdminNotificationId();
        }

        return $notifiable->routeNotificationFor('database')->create([
            'id' => $notification->id,
            'type' => get_class($notification),
            'data' => $this->getData($notifiable, $notification),

            // ** New custom field **
            'admin_notification_id' => $adminNotificationId,

            'read_at' => null,
        ]);
    }
}

Run Code Online (Sandbox Code Playgroud)

Illuminate\Notifications\Channels\DatabaseChannel再次注册应用程序容器:

app\Providers\AppServiceProvider.php

class AppServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        //
    }

    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        $this->app->bind(
            Illuminate\Notifications\Channels\DatabaseChannel::class,
            App\Notifications\MyDatabaseChannel::class
        );
    }
}

Run Code Online (Sandbox Code Playgroud)

现在Illuminate\Notifications\ChannelManager尝试createDatabaseDriver将返回您注册的数据库驱动程序。

解决这个问题的更多选择!