Home PHP Framework Laravel Detailed explanation of Laravel's broadcast module

Detailed explanation of Laravel's broadcast module

Apr 12, 2020 pm 02:12 PM
laravel

This article is based on the analysis and writing of the broadcast module code of Laravel 5.4 version;

Recommended: "laravel tutorial"

Introduction

Broadcasting means that the sender sends a message, and each receiver who subscribes to the channel can receive the message in time; for example, student A writes an article, and student B comments under the article, and student A comments on the page You can receive notifications that an article has been commented on without refreshing. This essentially means that student A has received a broadcast message. This broadcast message is triggered by the action of student B commenting;

is broadcast throughout the entire broadcast. In behavior, there is an important concept called channel. The types of channels are

● Public channel public

● Private channel private

● Existence channel presence

If the mobile terminal subscribes to the public channel public, it will directly prompt success; during the subscription process of private channel private and existing channel presence, permission verification will be sent to the server to see if it has permission to subscribe to the channel; private channel private The difference from channel presence is that private channel private can receive messages sent by other members, while channel presence can also receive messages when users join and leave;

Broadcasting is suitable for the following scenarios (This small part is excerpted from Laravel event broadcast based on Pusher driver (Part 1)):

● Notification or Signal

Notification is the simplest example and the most commonly used arrive. Signals can also be seen as a form of notification, except that signals have no UI.

● Activity Streams

Activity Streams (feeds) are the core of social networks. For example, likes and comments in WeChat Moments, A can see B's likes in real time, and B can see A's comments in real time.

● Chat

Real-time display of chat information

Module composition

Detailed explanation of Laravels broadcast module

# #Demo

##Log driver

Configuration

.env file Modify or add a line: BROADCAST_DRIVER=log;

Broadcast

Direct call

 $manager = app(Illuminate\Broadcasting\BroadcastManager::class);
 $driver = $manager->connection();
 // 第一个参数是频道名,第二个参数是事件名,第三个参数是广播内容
 $driver->broadcast(['channel_1', 'channel_2'], 'login', ['message' => 'hello world']);
Copy after login
Because it is a log driver, the broadcast content will be written to the log file configured by the framework , the output message is as follows

[2017-08-18 20:45:49] local.INFO: Broadcasting [login] on channels [channel_1, channel_2] with payload:
{
    "message": "hello world"
}
Copy after login

Listen to event broadcast

This calling method is that when the event that implements the ShouldBroadcast interface is triggered, a broadcast operation will be performed ; (At the same time, there is also an interface called ShouldBroadcastNow. The difference from the ShouldBroadcast interface is that when events that implement the ShouldBroadcastNow interface are put into the queue, they will be put into the queue called sync)

For example,

The first step, the Illuminate\Auth\Events\Login event is an event that will be triggered after the user successfully logs in. Slightly change it to implement the broadcast function;

class Login implements ShouldBroadcast {
    ......
    
    // 定义事件被触发时,广播频道;此处定义名为 first-channel 的私有频道
    public function broadcastOn() {
        return [
            new PrivateChannel('first-channel'),
        ];
    }
    
    // 自定义广播名称;如果方法未定义,默认以类名为事件名,此处的默认值是 Illuminate\Auth\Events\Login
    public function broadcastAs() {
        return 'login';
    }
}
Copy after login

The second step, register Event monitoring; modify in app/Providers/EventServiceProvider.php:

protected $listen = [
   ......
   'Illuminate\Auth\Events\Login' => [
        'App\Listeners\UserLogin',
   ],
];
Copy after login

The file app/Listeners/UserLogin.php is roughly implemented:

class UserLogin {
    public function __construct() {}
    
    public function handle(Login $event){
        \Log::info('Do UserLogin Listener: I was Login');
    }
}
Copy after login

The third step is to trigger the event and send it Broadcast; there are several ways to trigger broadcast:

1. Direct event trigger

event(new Illuminate\Auth\Events\Login($user, true));
Copy after login

2. Help function broadcast, indirect trigger event

broadcast(new Illuminate\Auth\Events\Login($user, true));
Copy after login

3. Broadcast management class, Indirectly trigger events, broadcast directly

$manager = app(Illuminate\Broadcasting\BroadcastManager::class);
$manager->event(new Illuminate\Auth\Events\Login($user, true));
Copy after login

4. Broadcast management class, indirectly trigger events, put them into the queue

$manager = app(Illuminate\Broadcasting\BroadcastManager::class);
$manager->queue(new Illuminate\Auth\Events\Login($user, true));
Copy after login

Pusher driver

Pusher is a For third-party services, when the server sends a broadcast, it will send a request to Pusher, and then interact with data through the long connection maintained by Pusher and the browser or mobile terminal;

Configuration

Register user information through the Pusher official website, obtain your own set of key information, and modify the .env configuration file;

BROADCAST_DRIVER=pusher
PUSHER_APP_ID=xxxxxxxxxxxxxxxxxxxxxx
PUSHER_APP_KEY=xxxxxxxxxxxxxxxxxxxxxx
PUSHER_APP_SECRET=xxxxxxxxxxxxxxxxxxxxxx
Copy after login

Preparation

Event Listening

Event monitoring in the background still uses the login example of the "Log Driven" part;

Front-end

The front-end page introduces the following code:

<script src="https://js.pusher.com/4.1/pusher.min.js"></script>
<script>
// 打开 Pusher 的调试日志
Pusher.logToConsole = true;
// 定义 Pusher 变量
var pusher = new Pusher(&#39;PUSHER_APP_KEY的值&#39;, {
    cluster: &#39;ap1&#39;,
    encrypted: true
});
// 定义频道,绑定事件
var channel = pusher.subscribe(&#39;private-first-channel&#39;);
channel.bind(&#39;login&#39;, function(data) {
    alert(data);
});
</script>
Copy after login

If you subscribe to a public channel, you will not request permission check from the server; if it is a private channel (the channel name starts with private-) or there is a channel (the channel name starts with presence-), A permission check request will be issued; the corresponding backend needs to define the permissions of private channels and existing channels;

Channel permission definition

The permission definition of the channel is in routes/ channels.php; here the author defines the permission callback function for the first-channel channel:

Broadcast::channel(&#39;first-channel&#39;, function ($user) {
    return (int) $user->id === 1;
});
Copy after login

Some readers may wonder, isn’t the channel subscribed to by the front-end page private-first-channel? Why does the backend only define the permissions of the first-channel channel? That's because, assuming the channel defined by the backend is A, then the private channel passed in Pusher and the browser or mobile terminal is named private-A. If the channel exists, it will be presence-A;

Broadcast

##Direct broadcast

$manager = app(Illuminate\Broadcasting\BroadcastManager::class);
$driver = $manager->connection();
// socket 参数是广播私有频道时排除的 socket, 每个浏览器端或者移动端在建立 websocket 时都会被分配一个 socket_id
$driver->broadcast([&#39;private-first-channel&#39;], &#39;login&#39;, [&#39;user&#39; => [&#39;name&#39; => &#39;hello&#39;], &#39;socket&#39; => &#39;5395.4377611&#39;]);
Copy after login
Indirect broadcast

Refer to the indirect broadcast mentioned in "Log Driven" Way;

If you want to send an exclusive broadcast (that is, no broadcast message will be received except for the client currently requesting), the following conditions are required:

1. The event uses the Illuminate\Broadcasting\InteractsWithSockets trait;

2. The request header sent by the front end must carry X-Socket-ID information;

3. The event triggers broadcast(new Illuminate\Auth\Events\Login($user, true)) ->toOthers();

Redis driver

Configuration

.env file Modify or add a line: BROADCAST_DRIVER= redis;

Broadcast

The principle is to also deploy a Socket.IO server on the backend. The Laravel framework will publish messages to the Socket.IO server, and the Socket.IO The server maintains a long connection with the browser or mobile terminal;

I haven’t demoed this part yet, and there are quite a lot of introductory materials online. If you know the principle, it will be much easier to get started with this part of the action;

The above is the detailed content of Detailed explanation of Laravel's broadcast module. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1663
14
PHP Tutorial
1266
29
C# Tutorial
1239
24
Laravel Introduction Example Laravel Introduction Example Apr 18, 2025 pm 12:45 PM

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

Solve caching issues in Craft CMS: Using wiejeben/craft-laravel-mix plug-in Solve caching issues in Craft CMS: Using wiejeben/craft-laravel-mix plug-in Apr 18, 2025 am 09:24 AM

When developing websites using CraftCMS, you often encounter resource file caching problems, especially when you frequently update CSS and JavaScript files, old versions of files may still be cached by the browser, causing users to not see the latest changes in time. This problem not only affects the user experience, but also increases the difficulty of development and debugging. Recently, I encountered similar troubles in my project, and after some exploration, I found the plugin wiejeben/craft-laravel-mix, which perfectly solved my caching problem.

Laravel user login function Laravel user login function Apr 18, 2025 pm 12:48 PM

Laravel provides a comprehensive Auth framework for implementing user login functions, including: Defining user models (Eloquent model), creating login forms (Blade template engine), writing login controllers (inheriting Auth\LoginController), verifying login requests (Auth::attempt) Redirecting after login is successful (redirect) considering security factors: hash passwords, anti-CSRF protection, rate limiting and security headers. In addition, the Auth framework also provides functions such as resetting passwords, registering and verifying emails. For details, please refer to the Laravel documentation: https://laravel.com/doc

Laravel framework installation method Laravel framework installation method Apr 18, 2025 pm 12:54 PM

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

Laravel and the Backend: Powering Web Application Logic Laravel and the Backend: Powering Web Application Logic Apr 11, 2025 am 11:29 AM

How does Laravel play a role in backend logic? It simplifies and enhances backend development through routing systems, EloquentORM, authentication and authorization, event and listeners, and performance optimization. 1. The routing system allows the definition of URL structure and request processing logic. 2.EloquentORM simplifies database interaction. 3. The authentication and authorization system is convenient for user management. 4. The event and listener implement loosely coupled code structure. 5. Performance optimization improves application efficiency through caching and queueing.

How to learn Laravel How to learn Laravel for free How to learn Laravel How to learn Laravel for free Apr 18, 2025 pm 12:51 PM

Want to learn the Laravel framework, but suffer from no resources or economic pressure? This article provides you with free learning of Laravel, teaching you how to use resources such as online platforms, documents and community forums to lay a solid foundation for your PHP development journey from getting started to master.

How to view the version number of laravel? How to view the version number of laravel How to view the version number of laravel? How to view the version number of laravel Apr 18, 2025 pm 01:00 PM

The Laravel framework has built-in methods to easily view its version number to meet the different needs of developers. This article will explore these methods, including using the Composer command line tool, accessing .env files, or obtaining version information through PHP code. These methods are essential for maintaining and managing versioning of Laravel applications.

What versions of laravel are there? How to choose the version of laravel for beginners What versions of laravel are there? How to choose the version of laravel for beginners Apr 18, 2025 pm 01:03 PM

In the Laravel framework version selection guide for beginners, this article dives into the version differences of Laravel, designed to assist beginners in making informed choices among many versions. We will focus on the key features of each release, compare their pros and cons, and provide useful advice to help beginners choose the most suitable version of Laravel based on their skill level and project requirements. For beginners, choosing a suitable version of Laravel is crucial because it can significantly impact their learning curve and overall development experience.

See all articles