简体   繁体   中英

listen to messages using pusher in Laravel

I need to get echo message in the log when there is massage has been set to me can I listen to the message that has been sent to me through this code

<script src="https://js.pusher.com/4.1/pusher.min.js"></script>

<script type="text/javascript">
// Enable pusher logging - don't include this in production
Pusher.logToConsole = false;

var pusher = new Pusher('34b9ea6826c359c41c3f', {
    cluster: 'eu',
    encrypted: true
});

var channel = pusher.subscribe('Messages');
channel.bind('msgSend{{$id}}msgReceive{{Auth::user()->id}}', function(data) {
    $('.adsx').append(data.html);
    $("html,body").animate({scrollTop: $('.adsx')[0].scrollHeight}, 0);
});

I think you need to create a Laravel Event through artisan php artisan make:event addANameHere

Afterwards, inside the event you need to add a channel to be broadcast on eg

class addANameHere implements ShouldBroadcast {

use Dispatchable, InteractsWithSockets, SerializesModels;

public $user_id;

/**
 * Create a new event instance.
 *
 * @return void
 */
public function __construct($user_id)
{
    $this->user_id = $user_id;
}

/**
 * Get the channels the event should broadcast on.
 *
 * @return \Illuminate\Broadcasting\Channel|array
 */
public function broadcastOn()
{
    return ['alert-user-'.$this->user_id];
}

Then, you can receive messages like that:

var pusher = new Pusher("34b9ea6826c359c41c3f", {
    cluster: 'eu',
    encrypted: false,
});

var channel = pusher.subscribe('alert-user-{{ Auth::user()->id }}');
channel.bind('App\\Events\\addANameHere', function(data) {
    // Do whatever you want here ...
});

In order to trigger that event (When the message is sent) you call your Event Class like that:

 \Event::dispatch(new addANameHere($user_id)); 

And the $user_id is the user you want to see that message.

I hope I helped..

this method is very good but i want to add a little bit. i think be careful if you think use this method. don't print cleartext $user_id variable on blade file. because you could have some problem for code security.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM