Advertisement
angelgoitia

Untitled

Sep 16th, 2024
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <?php
  2. header('Content-Type: application/json');
  3.  
  4. if (!$this->session->userdata('login')) {
  5. die(json_encode('no-one is logged in'));
  6. }
  7.  
  8. $pusher = new Pusher\Pusher(
  9. pusher_key,
  10. pusher_secret,
  11. pusher_app_id,
  12. );
  13.  
  14. $presence_data = ['username' => $this->session->userdata('username')];
  15.  
  16. echo $pusher->authorizePresenceChannel('channel-demo', $this->input->post('socket_id'), $this->session->userdata('user_id'), $presence_data);
  17. ?>
  18.  
  19. //javascript
  20.  
  21.  
  22. var pusher = new Pusher($("#pusher_key").val(), {
  23. cluster: 'mt1',
  24. userAuthentication: {
  25. endpoint: "/pusher/presenceAuth",
  26. transport: "ajax",
  27. },
  28. });
  29.  
  30. pusher.signin();
  31.  
  32. pusher.connection.bind('state_change', function(states) {
  33. if (states.current === 'connected') {
  34. console.log("Connection established!");
  35. } else {
  36. console.log('Pusher connection failed:', states.current);
  37. }
  38. });
  39.  
  40. var channel = pusher.subscribe($("#channel_pusher").val());
  41. channel.bind($("#event_pusher").val(), function(data) {
  42. console.log("reached here");
  43. });
  44.  
  45. pusher.connection.bind('error', function(error) {
  46. console.log('connection close');
  47. });
  48.  
  49. channel.bind('pusher:member_added', function(members) {
  50. console.log('A new member joined:', members);
  51. });
  52.  
  53. channel.bind('pusher:member_removed', function(members) {
  54. console.log('A member left:', members);
  55. });
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement