83 lines
1.9 KiB
PHP
83 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Module;
|
|
use App\Models\User;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Broadcasting\PrivateChannel;
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcastNow;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class Users extends Event implements ShouldBroadcastNow
|
|
{
|
|
use SerializesModels;
|
|
|
|
public User $user;
|
|
|
|
public array|Model $data;
|
|
|
|
public null|Module $module = null;
|
|
|
|
public string $event = 'notification';
|
|
|
|
public Carbon $sent_at;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(User|int $user, string $event, array|Model $data)
|
|
{
|
|
// init vars
|
|
$this->sent_at = Carbon::now();
|
|
|
|
// if user is int
|
|
if (is_int($user)) {
|
|
$user = (new User)->find($user);
|
|
}
|
|
|
|
$this->user = $user;
|
|
|
|
$this->event = $event;
|
|
|
|
if ($data instanceof Model) {
|
|
$this->data = $data->toArray();
|
|
} else {
|
|
$this->data = $data;
|
|
}
|
|
|
|
if (Auth::guard('module')->check()) {
|
|
$this->module = Auth::guard('module')->user();
|
|
|
|
// if (isset($this->data['event'])) {
|
|
// $this->event = $this->module->id . '.' . $this->data['event'];
|
|
// }
|
|
}
|
|
|
|
// log
|
|
if (config('app.env') != 'production') {
|
|
Log::debug('Users Event', [
|
|
'user' => $this->user->id,
|
|
'data' => $this->data,
|
|
'module' => $this->module,
|
|
'event' => $this->event,
|
|
]);
|
|
}
|
|
}
|
|
|
|
public function broadcastOn(): PrivateChannel
|
|
{
|
|
return new PrivateChannel('users.'.$this->user->id);
|
|
}
|
|
|
|
public function broadcastAs(): string
|
|
{
|
|
return 'messages';
|
|
}
|
|
}
|