2026-06-18 12:51:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Notifications;
|
|
|
|
|
|
|
|
|
|
use App\Models\IssueComment;
|
|
|
|
|
use Illuminate\Bus\Queueable;
|
2026-08-31 12:16:56 +02:00
|
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
2026-06-18 12:51:41 +02:00
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
|
2026-08-31 12:16:56 +02:00
|
|
|
class IssueCommentedNotification extends Notification implements ShouldBroadcast
|
2026-06-18 12:51:41 +02:00
|
|
|
{
|
|
|
|
|
use Queueable;
|
|
|
|
|
|
|
|
|
|
public function __construct(public IssueComment $comment) {}
|
|
|
|
|
|
|
|
|
|
public function via($notifiable): array
|
|
|
|
|
{
|
2026-08-31 12:16:56 +02:00
|
|
|
return ['database', 'broadcast'];
|
2026-06-18 12:51:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function toArray($notifiable): array
|
|
|
|
|
{
|
|
|
|
|
$issue = $this->comment->issue;
|
|
|
|
|
|
|
|
|
|
return [
|
2026-08-28 13:04:28 +02:00
|
|
|
'type' => 'issue_commented',
|
|
|
|
|
'issue_id' => $this->comment->issue_id,
|
2026-06-18 12:51:41 +02:00
|
|
|
'project_id' => $issue?->project_id,
|
2026-08-28 13:04:28 +02:00
|
|
|
'author' => $this->comment->user?->name,
|
|
|
|
|
'message' => "{$this->comment->user?->name} comentó en '{$issue?->title}': ".Str::limit($this->comment->body, 60),
|
2026-06-18 12:51:41 +02:00
|
|
|
];
|
|
|
|
|
}
|
2026-08-31 12:16:56 +02:00
|
|
|
|
|
|
|
|
public function broadcastOn(): array
|
|
|
|
|
{
|
|
|
|
|
$issue = $this->comment->issue;
|
|
|
|
|
$userIds = [];
|
|
|
|
|
if ($issue->assigned_to) $userIds[] = $issue->assigned_to;
|
|
|
|
|
if ($issue->reported_by) $userIds[] = $issue->reported_by;
|
|
|
|
|
return array_map(fn ($id) => new \Illuminate\Broadcasting\PrivateChannel("user.{$id}"), array_unique($userIds));
|
|
|
|
|
}
|
|
|
|
|
}
|