DEV Community

Cover image for Build a Scalable Video Chat App with Agora in Laravel
Kofi Mupati
Kofi Mupati

Posted on • Updated on • Originally published at agora.io

Build a Scalable Video Chat App with Agora in Laravel

Introduction

Laravel is a powerful PHP framework that aims to make the web development process easier without sacrificing application functionality. This is especially true when you try to build a video chat app with Laravel.

Previously, I built a video chat app with WebRTC and Laravel and wrote about it here: Adding Video Chat To Your Laravel App. WebRTC is only one of the ways that people can implement video chat features. Companies like Agora also provide a fully packaged video chat SDK to provide a high-quality Real-Time Engagement video chat experience. As someone who has WebRTC development experience, I can tell you there are some limitations with WebRTC, such as:

  1. Quality of experience: Since WebRTC is transmitted over the Internet, which is a public domain, the quality of experience is hard to guarantee.
  2. Scalability: Scalability is fairly limited on group video calls due to the peer-to-peer nature of WebRTC.

After I was introduced to Agora, I was impressed that setting up the same video call feature is easier with Agora than with WebRTC. Let me walk you through building a video chat app with Agora in Laravel.

Why Agora Is the Preferred Solution

After building a video chat app with Agora, I want to highlight some of the advantages:

  1. There's one SDK for everything - voice, video, live streaming, screen sharing, and so on.
  2. I didn't have to set up a turn server with coturn on Amazon EC2 as I did in the other implementation to relay traffic between peers on different networks.
  3. You get 10,000 minutes every month free, and this gives you the flexibility to develop your solution prototype for free.
  4. You don't have the challenge of managing the underlying infrastructure supporting the video call functionality.
  5. Intuitive API documentation is available.

Prerequisites

Project Setup

  1. Open your terminal or console and navigate to your Laravel project directory.
  2. Install the necessary packages. ```bash composer require pusher/pusher-php-server "~4.0" npm install --save laravel-echo pusher-js ```
  3. Download the AgoraDynamicKey PHP code from the Agora repository: AgoraDynamicKey Keep the downloaded folder in a location outside the project folder. Some files from the folder will be copied into our project when we're configuring the back end.

Configuring the Backend

We will set up the various controllers and classes with methods needed to generate the Agora token to establish a call. Laravel's broadcasting system will also be activated.
We begin with the endpoints that will be accessed from the front end.

1. Add Application Routes.

Add the following code to routes/web.php.

2. Activate Laravel's Broadcasting System.

Uncomment BroadcastServiceProvider in config/app.php in your project folder.

+ App\Providers\BroadcastServiceProvider::class
- //App\Providers\BroadcastServiceProvider::class 
Enter fullscreen mode Exit fullscreen mode

3. Create a presence channel in routes/channels.php

We get to know online users by looking at who has subscribed to this channel on the front end. We return their ID and name.

4. Create an event for making a call named MakeAgoraCall

This event will be used to make a call by broadcasting some data over the agora-online-channel. Run the following command in your terminal/console:

php artisan make:event MakeAgoraCall
Enter fullscreen mode Exit fullscreen mode

Add the following code to MakeAgoraCall.php

5. Add the downloaded AgoraDynamicKey generator files

  • Open your command line, and in your project's app directory create a directory named Class along with a subdirectory named AgoraDynamicKey. ```bash cd app mkdir -p Class/AgoraDynamicKey ```
  • Open the AgoraDynamicKey folder that was downloaded as part of the project setup. Next, copy the AccessToken.php and RtcTokenBuilder.php from the src directory into the AgoraDynamicKey directory that was created in the previous step.
  • Open AccessToken.php and RtcTokenBuilder.php, and add the project's namespace to make them accessible in a controller.

RtcTokenBuilder.php becomes:

AccessToken.php becomes:

6. Create the AgoraVideoController.php

Next, create the AgoraVideoController using the command line.

php artisan make:controller AgoraVideoController
Enter fullscreen mode Exit fullscreen mode

Add the following code to AgoraVideoController.php:

Breakdown of Methods in the AgoraVideoController

  • index: To view the video call page.
  • token: To generate the Agora dynamic token. The token generation code is taken from sample/RtcTokenBuilderSample.php, which can be found in the files downloaded during the project setup.
  • callUser: To call a particular user by broadcasting a MakeAgoraCall event across a Laravel presence channel that I've named agora-online-channel. All logged-in users subscribe and listen to events on this channel.

The data received from the MakeAgoraEvent by the users subscribed to the agora-online-channel contains the following:

  • userToCall: This is the ID of the user who is supposed to receive a call from a caller.
  • channelName: This is the call channel that the caller has already joined on the front end. This is a channel created with the Agora SDK on the front end. It is the room the caller has already joined, waiting for the callee to also join to establish a call connection.
  • from: The ID of the caller.

From the MakeAgoraEvent, a user can determine whether they are being called if the userToCall value matches their ID. We show an incoming call notification with a button to accept the call.
They know who the caller is by the value of from.

Configuring the Front End

We are going to create the user interface for making and receiving the video call with the ability to toggle the on and off states of the camera and the microphone.

1. Add a link to the Agora SDK

Add the following to the head tag of resources/views/layouts/app.blade.php.


It then becomes:

2. Instantiate Laravel Echo and Pusher Instantiate Laravel Echo and Pusher in resources/js/bootstrap.js by uncommenting the following block of code:

3. Create an Agora chat component

On your terminal or command line, create a component called AgoraChat.vue with the following command:

touch resources/js/components/AgoraChat.vue
Enter fullscreen mode Exit fullscreen mode

Add the following code:

Breakdown of the AgoraChat Component

On the AgoraChat page, we display buttons that bear the name of each registered user and whether they are online or offline at the moment.

To place a call, we click the button of a user with online status. An online user indicates one who is readily available to receive a call. For our demo, we see a list of users. The user named Bar is indicated as being online. The caller named Foo can call Bar by clicking the button.

Users to Call
Bar gets an incoming call notification with Accept and Decline buttons and the name of the caller.

Call Notification

From the call notification image above, we see that the caller's name is Foo. Bar can then accept the call for a connection to be established.

The following diagram explains the call logic in terms of the code:

The Call Logic

4. Register the AgoraChat.vue component

Add the following code to resources/js/app.js:

5. Create an Agora chat view

On your terminal or command line, create a view called agora-chat.blade.php with the following command:

touch resources/views/agora-chat.blade.php
Enter fullscreen mode Exit fullscreen mode

Add the following code to the agora-chat.blade.php:

6. Update env variables with Pusher and Agora keys

The .env file is located at the root of your project folder. Add the credentials you got from Agora and Pusher.

Testing

  1. Start the Laravel development server from your terminal.br/> ```bash php artisan serve ```
  2. Open another terminal and run the front end. ```bash npm run dev ```
  3. Open two different browsers or two instances of the same browser, with one instance in incognito mode, and go to http://127.0.0.1:8000/agora-chat.
  4. You are presented with a login page if you are not already logged in.
  5. After successful login, you are automatically redirected to the video chat page, where you see the buttons with names of the users with an indication of their online status.
  6. In each of the browsers you opened, the other users registered on the application are displayed as described in 5.
  7. In one browser, you can call the user who is logged in on the other browser by clicking the button that bears their name.
  8. The other user is prompted to click the Accept button to fully establish the call.

Video Demonstration of the Video Call

To confirm that your demo is functioning properly, see my demo video as an example of how the finished project should look and function:

Conclusion

You have now implemented the video chat feature in Laravel! It's not that hard, right?

To include video calling functionality in your web app, you don't have to build it from scratch.

Agora provides a lot of great features out of the box. It also helps businesses save development hours when implementing video chat into existing projects. The only thing a developer has to do is build a compelling front end - Agora handles the video chat back end.

Link to project repository: https://github.com/Mupati/laravel-video-chat
 
Demo link: https://laravel-video-call.herokuapp.com/agora-chat

Make sure the demo link or production version is served on HTTPS.

Test accounts:

foo@example.com: DY6m7feJtbnx3ud

bar@example.com: Me3tm5reQpWcn3Q

Other Resources

I also invite you to join the Agora.io Developer Slack community.

Oldest comments (2)

Collapse
 
ships09 profile image
ships09

Hi, I followed the steps to create Video Chat App with Agora in Laravel and created project. Created two users. Added the AGORA_APP_ID and AGORA_APP_CERTIFICATE.
When I login with two different users on two chrome browsers and click the call button the video box opens but on other window it doesn't show the Accept or Decline buttons. I don't see any error in console.
Also when the user always shows offline, unlike your demo link where the signed in users appear as online. Any idea if I am doing anything wrong or missing.

Collapse
 
ships09 profile image
ships09

Also when I do, npm run start it gives this error .npm ERR! missing script: start