Laravel Slack按需通知;在哪里设置webhook?

时间:2019-05-19 15:58:39

标签: php laravel laravel-5 slack laravel-5.8

根据Laravel文档,我可以在这样的控制器中执行按需通知:

use Notification;
use App\Notifications\TradeSuccessful;

$trada_data = array( 'title' => 'test', 'amount' => 123.45 )

Notification::route('slack', '#test')->notify(new TradeSuccessful($trade_data));

TradeSuccessful中(示例代码):

public function toSlack($notifiable)
    {
        return (new SlackMessage)
            ->success()
            ->content('One of your invoices has been paid!')
            ->attachment(function ($attachment) use ($trade_data) {
                $attachment->title('Invoice 1322')
                    ->fields([
                    'Title' => $trade_data['title],
                    'Amount' => $trade_data['amount]
                ]);
            });
    }

主要问题: 当我使用这样的通知(按需)时,应在哪里设置Slack Webhook?因为它们在文档中使用:

public function routeNotificationForSlack($notification)
    {
        return 'https://hooks.slack.com/services/...';
    }

但是该功能是在模型上定义的,在使用按需通知时,在模型上没有定义任何内容。

1 个答案:

答案 0 :(得分:0)

来自documentation

  

按需通知

     

有时候,您可能需要向不属于自己的人发送通知   存储为应用程序的“用户”。使用   Notification::route方法,您可以指定临时通知   发送通知之前路由信息:

Notification::route('mail', 'taylor@example.com')
            ->route('nexmo', '5555555555')
            ->notify(new InvoicePaid($invoice));

在使用Slack的情况下,您指定的路由必须是网络挂钩:

use Notification;
use App\Notifications\TradeSuccessful;

$trada_data = array( 'title' => 'test', 'amount' => 123.45 );

$slack_webhook = 'my-slack-webhook-url'; // <---

Notification::route('slack', $slack_webhook)->notify(new TradeSuccessful($trade_data));
                             ^^^^^^^^^^^^^^

当然,您应该将其存储为env()键,但是您会明白这一点。