The following tutorial column will introduce you to the construction of laravel-echo-server broadcast service. I hope it will be helpful to friends in need!
Motivation
Many scenarios in current projects use Redis queues and scheduled tasks to handle tasks that take longer to execute. These tasks The execution status and execution results can only be obtained by re-sending a request from the front end.
Goal
In order to optimize the program experience and allow users to pay attention to the task execution results as early as possible, we have evaluated various options. In order to reduce the communication cost between the front and back ends and avoid reinventing the wheel, we decided to use the broadcast function built into the Laravel framework.
Select a service
Officially recommends using pusher to build applications. The advantage of pusher is that it is very simple to build. However, considering that it is a foreign service, there is a risk of access stability; and the current project scale is small, so I tried to build a Websocket service myself, using the tlaverdure/laravel-echo-server project officially mentioned by the Laravel framework.
laravel-echo-server service features
The usage method of this project can be obtained directly from their github page. The following points are what we like:
Event information can be obtained and broadcast through the publish and subscribe function of Redis. This is more efficient than sending push requests to pusher's HTTP API; It is also compatible with pusher's HTTP API. If some services cannot publish events through Redis, you can use this mode to push events;- Building Websocket services
We initially used oanhnn/laravel -echo-server This image is used to start the container. During the debugging process, we found that this service is not stable. Node's service will exit directly when an exception occurs. This is the first pitfall we encountered. In order to quickly solve this problem, we added a supervisor based on this image to be responsible for the task of restarting the service process after exiting, and made our own image.
Redis Subscription
When trying out Redis subscription, in addition to the regular database address and password and other parameters, the key prefix is another pitfall we encountered, corresponding to The keyPrefix configuration item in the laravel-echo-server.json file in the laravel-echo-server service did not find the correct method at the beginning, and it was incorrect no matter how it was configured. Later I found out that if you want to know the current Redis key prefix of the program that wants to broadcast the event, just execute the following script in tinker. # php artisan tinkerconfig('database.redis.options.prefix');
Nginx proxy
Since the production environment uses the HTTPS protocol, I need to add a certificate to the service, but because I am a Node novice, no Node program uses the certificate Configuration experience, so I basically gave up after one round of attempts, and then adopted the Nginx proxy method to use the certificate. After several rounds of attempts, the configuration was finally successful. server {
listen port;
server_name your-domain;
ssl on;
ssl_certificate path-to-pem;
ssl_certificate_key path-to-key;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
location /socket.io {
proxy_pass http://container-name:6002;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}}
Private/Attendance Channel Authorization
Laravel broadcast divides channels into: public, private and attendance (I may have translated it wrong, please correct me), the latter two Authorized access is required. What we need to use is a private channel, so only authorized people can subscribe to our events from the front end. This is also a pitfall we encountered. After our observation and source code reading, we found that the overall authorization process of laravel-echo is:
The front-end program first sends an HTTP POST request to the laravel-echo-server service; laravel-echo-server sends an HTTP POST to the application server based on the two items- authEndpoint
- and authHost
- in the configuration. The POST data is the channel name and is transparently transmitted in the header. Authorization data;
laravel-echo-server will determine the authorization result based on the response of the application server. If the application server responds with a non-HTTP 200 status, it means that an error occurred and the authorization failed.We encounter two problems in practice. The first problem is that the authorization gatekeeping logic of our project is not laravel's default, so the routes introduced by the default - Broadcast::routes() cannot be used directly. After discovering the problem, we re-added our own authorization route and configured it in the
configuration item of laravel-echo-server.json. <p>Another problem is that we do not use the standard RESTFul protocol rules: respond to the corresponding HTTP Code to describe the error status. As a result, laravel-echo-server cannot detect the problem and feed it back to the front-end program even when authorization fails. The situation is similar to the picture below: </p>
<p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/020/ce24538de7ea16b3b939356a59350b87-0.jpg?x-oss-process=image/resize,p_40" class="lazy" alt=""></p>
<blockquote>##Sooner or later, you still have to pay off the debt. …<p></p>
</blockquote>
<h2 id="Summary-span-class-header-link-octicon-octicon-link-span-The-development-of-this-function-was-not-as-smooth-as-originally-thought-The-main-problems-are-as-follows">##Summary<span class="header-link octicon octicon-link"></span>The development of this function was not as smooth as originally thought. The main problems are as follows:</h2>
<p></p>laravel-echo-server is not as robust as expected. I have to look for alternatives when I have time in the future. It seems that there are also projects using swoole. You can try it; <ol>
<li>Forgot to consider the SSL problem in advance, resulting in The temporary processing during release was hectic; </li>
<li>laravel-echo-server and laravel-echo themselves are small projects. When encountering problems, you should give priority to analyzing their codes to reduce the time of trying. </li>
<li>
</ol>
The above is the detailed content of Share laravel-echo-server broadcast service construction. For more information, please follow other related articles on the PHP Chinese website!
Laravel (PHP) vs. Python: Weighing the Pros and ConsApr 17, 2025 am 12:18 AMLaravel is suitable for building web applications quickly, while Python is suitable for a wider range of application scenarios. 1.Laravel provides EloquentORM, Blade template engine and Artisan tools to simplify web development. 2. Python is known for its dynamic types, rich standard library and third-party ecosystem, and is suitable for Web development, data science and other fields.
Laravel vs. Python: Comparing Frameworks and LibrariesApr 17, 2025 am 12:16 AMLaravel and Python each have their own advantages: Laravel is suitable for quickly building feature-rich web applications, and Python performs well in the fields of data science and general programming. 1.Laravel provides EloquentORM and Blade template engines, suitable for building modern web applications. 2. Python has a rich standard library and third-party library, and Django and Flask frameworks meet different development needs.
Laravel's Purpose: Building Robust and Elegant Web ApplicationsApr 17, 2025 am 12:13 AMLaravel is worth choosing because it can make the code structure clear and the development process more artistic. 1) Laravel is based on PHP, follows the MVC architecture, and simplifies web development. 2) Its core functions such as EloquentORM, Artisan tools and Blade templates enhance the elegance and robustness of development. 3) Through routing, controllers, models and views, developers can efficiently build applications. 4) Advanced functions such as queue and event monitoring further improve application performance.
Laravel: Primarily a Backend Framework ExplainedApr 17, 2025 am 12:02 AMLaravel is not only a back-end framework, but also a complete web development solution. It provides powerful back-end functions, such as routing, database operations, user authentication, etc., and supports front-end development, improving the development efficiency of the entire web application.
Laravel (PHP) vs. Python: Understanding Key DifferencesApr 17, 2025 am 12:01 AMLaravel is suitable for web development, Python is suitable for data science and rapid prototyping. 1.Laravel is based on PHP and provides elegant syntax and rich functions, such as EloquentORM. 2. Python is known for its simplicity, widely used in Web development and data science, and has a rich library ecosystem.
Laravel in Action: Real-World Applications and ExamplesApr 16, 2025 am 12:02 AMLaravelcanbeeffectivelyusedinreal-worldapplicationsforbuildingscalablewebsolutions.1)ItsimplifiesCRUDoperationsinRESTfulAPIsusingEloquentORM.2)Laravel'secosystem,includingtoolslikeNova,enhancesdevelopment.3)Itaddressesperformancewithcachingsystems,en
Laravel's Primary Function: Backend DevelopmentApr 15, 2025 am 12:14 AMLaravel's core functions in back-end development include routing system, EloquentORM, migration function, cache system and queue system. 1. The routing system simplifies URL mapping and improves code organization and maintenance. 2.EloquentORM provides object-oriented data operations to improve development efficiency. 3. The migration function manages the database structure through version control to ensure consistency. 4. The cache system reduces database queries and improves response speed. 5. The queue system effectively processes large-scale data, avoid blocking user requests, and improve overall performance.
Laravel's Backend Capabilities: Databases, Logic, and MoreApr 14, 2025 am 12:04 AMLaravel performs strongly in back-end development, simplifying database operations through EloquentORM, controllers and service classes handle business logic, and providing queues, events and other functions. 1) EloquentORM maps database tables through the model to simplify query. 2) Business logic is processed in controllers and service classes to improve modularity and maintainability. 3) Other functions such as queue systems help to handle complex needs.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

WebStorm Mac version
Useful JavaScript development tools







