Laravel通知在群组频道中添加用户提及

时间:2018-11-24 14:52:49

标签: php laravel notifications laravel-5.3 slack

我正在尝试在一般频道中发送提及用户的通知。这就是我所拥有的:

<?php

namespace App\Notifications;

use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Messages\SlackMessage;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;

class WeeklyTasksResponsible extends Notification
{
    use Queueable;

    protected $employee;

    /**
     * Create a new notification instance.
     *
     * @return void
     */
    public function __construct(\App\Employee $employee)
    {
        $this->employee = $employee;
    }

    /**
     * Get the notification's delivery channels.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function via($notifiable)
    {
        return ['slack'];
    }


    /**
     * Get the Slack representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return SlackMessage
     */
    public function toSlack($notifiable)
    {
        return (new SlackMessage)
            ->content('Reponsible for this week is: ' . $this->employee->slack_name);
    }
}

这将在我们公司的一般闲置频道中每周发送一次通知。消息是“本周负责人:nameofuser”。问题是用户看不到此通知。

我也尝试过这样做:

public function toSlack($notifiable)
{
    return (new SlackMessage)
        ->content('Reponsible for this week is: @' . $this->employee->slack_name);
}

但这与在频道中提及自己的情况不同。

我该怎么做?

3 个答案:

答案 0 :(得分:1)

如@HCK所述,您可以通过将可选参数@username设置为link_names来启用chat.postMessagestrue提及的用户名匹配。

但是,不建议使用用户名创建提及,并且不应再使用。

推荐的方法是使用用户ID创建提及,默认情况下将起作用。

示例:

<@U12345678>

有关用户名弃用的详细信息,请参见Slack的帖子A lingering farewell to the username

答案 1 :(得分:0)

我刚刚在Laravel 6.18.0源代码中找到了以下内容:

    /**
     * Find and link channel names and usernames.
     *
     * @return $this
     */
    public function linkNames()
    {
        $this->linkNames = 1;

        return $this;
    }

vendor/laravel/slack-notification-channel/src/Messages/SlackMessage.php

因此您可以像这样使用它:

public function toSlack($notifiable)
    {
        return (new SlackMessage)
        ->linkNames()
        ...
    }

正如@ erik-kalkoken所指出的那样,使用由<>括起来并带有@符号的Slack用户ID。您可以在Slack应用的个人资料中找到它:

enter image description here

答案 2 :(得分:0)

实际上,我尝试过这种方法,效果很好。

$content .= "New order!\r\n @person";

return (new SlackMessage)
            ->content($content)->linkNames();

您需要在人员或团队的名称之前添加 @ ,为了使松弛的人员将其识别为提及内容,而不仅仅是文本,您需要将内容与 linkNames < / strong>