A package to generate view of a Jitsi Meet room using Jitsi Meet IFrame API.
Your Jitsi Meet host must use the token authentication. Currently this package also require your Jitsi Host to allow anonymous user to join by configuring the anonymousdomain (might change later).
If you are self-hosting your Jitsi Meet instance, here are some article that might help:
- JWT token authentication Prosody plugin
- Rocket Chat part 3: Installing Jitsi with JWT for secure video conferencing
- Here’s how you should install jitsi-meet-tokens on debian 10 (luajwtjitsi problem)
- Compile your own lua_cjson
- Prosody token + anonymous authentication config
You can install the package via composer:
composer require amyisme13/laravel-jitsi
Add these variables to your .env file
# Domain of the jitsi meet instance
JITSI_APP_DOMAIN=
# App id
JITSI_APP_ID=
# Secret key used to generate jwt
JITSI_APP_SECRET=
Add the trait \Amyisme13\LaravelJitsi\Traits\HasJitsiAttributes
to your User model.
use Amyisme13\LaravelJitsi\Traits\HasJitsiAttributes;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
<...>
use HasJitsiAttributes;
<...>
}
In your web.php
route file, call the jitsi
route macro.
Route::jitsi();
Then visit /jitsi/<room name>
to join a conference call. Visiting this url when you are authenticated will set your display name, email, avatar and also grant you the moderator role.
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email amy.azmim@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.