escolalms / jitsi
Escola LMS jitsi integration.
Installs: 27 747
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:package
pkg:composer/escolalms/jitsi
Requires
- php: >=7.4
- escolalms/auth: ^0
- escolalms/core: ^1
- escolalms/settings: ^0
- firebase/php-jwt: ^6|^5
- laravel/framework: >=8.0
Requires (Dev)
- orchestra/testbench: ^6
- phpunit/phpunit: ^9.0
README
Jitsi integration
What does it do
This package introduce just a facade that you can use to generate parameters for jitsi player
Installing
composer require escolalms/jitsi- Setup environmental config to point to Jitsi service - use either
envfile or Settings package (settings should be visible in the settings endpoint)
return [ 'host' => env('JITSI_HOST', 'meet-stage.escolalms.com'), 'app_id' => env('JITSI_APP_ID', 'meet-id'), 'secret' => env('JITSI_APP_SECRET', 'secret'), 'package_status' => 'enabled', ];
If app_id or secret service will skip JWT token generation.
Once you provide the above you can generate parameters, example from tinker
\EscolaLms\Jitsi\Facades\Jitsi::getChannelData(App\Models\User::find(1), "czesc ziomku", true, ['logoImageUrl'=>'https://escola.pl/_next/image?url=%2Fimages%2Flogo-escola.svg&w=3840&q=75'])
would generate some thing like
[
"data" => [
"domain" => "meet-stage.escolalms.com",
"roomName" => "czescZiomku",
"configOverwrite" => [
"logoImageUrl" => "https://escola.pl/_next/image?url=%2Fimages%2Flogo-escola.svg&w=3840&q=75",
],
"interfaceConfigOverwrite" => [
],
"userInfo" => [
"id" => 1,
"name" => "Osman Kanu",
"displayName" => "Osman Kanu",
"email" => "student@escola-lms.com",
"moderator" => true,
],
"jwt" => "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJtZWV0LWlkIiwiYXVkIjoibWVldC1pZCIsInN1YiI6Im1lZXQtc3RhZ2UuZXNjb2xhbG1zLmNvbSIsImV4cCI6MTY0MzY1OTM1NCwicm9vbSI6ImN6ZXNjWmlvbWt1IiwidXNlciI6eyJpZCI6MSwibmFtZSI6Ik9zbWFuIEthbnUiLCJkaXNwbGF5TmFtZSI6Ik9zbWFuIEthbnUiLCJlbWFpbCI6InN0dWRlbnRAZXNjb2xhLWxtcy5jb20iLCJtb2RlcmF0b3IiOmZhbHNlfX0.xnFV-Kk63c3YRADzkSQLz6FP71yfEUO7Q53isFGkv_U",
],
"host" => "meet-stage.escolalms.com",
"url" => "https://meet-stage.escolalms.com/czescZiomku?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJtZWV0LWlkIiwiYXVkIjoibWVldC1pZCIsInN1YiI6Im1lZXQtc3RhZ2UuZXNjb2xhbG1zLmNvbSIsImV4cCI6MTY0MzY1OTM1NCwicm9vbSI6ImN6ZXNjWmlvbWt1IiwidXNlciI6eyJpZCI6MSwibmFtZSI6Ik9zbWFuIEthbnUiLCJkaXNwbGF5TmFtZSI6Ik9zbWFuIEthbnUiLCJlbWFpbCI6InN0dWRlbnRAZXNjb2xhLWxtcy5jb20iLCJtb2RlcmF0b3IiOmZhbHNlfX0.xnFV-Kk63c3YRADzkSQLz6FP71yfEUO7Q53isFGkv_U",
]
pass this object into endpoint that generates jitsi call. You should definitely read the manual before.
Example
import React from "react"; import JitsiMeeting from "@jitsi/web-sdk/lib/components/JitsiMeeting"; import type { IJitsiMeetExternalApi, IJitsiMeetingProps, } from "@jitsi/web-sdk/lib/types"; const dataFromEndpoint = { domain: "meet-stage.escolalms.com", roomName: "czescZiomku", configOverwrite: {}, interfaceConfigOverwrite: {}, userInfo: { displayName: "Osman Kanu", email: "student@escola-lms.com", }, jwt: "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJtZWV0LWlkIiwiYXVkIjoibWVldC1pZCIsInN1YiI6Im1lZXQtc3RhZ2UuZXNjb2xhbG1zLmNvbSIsImV4cCI6MTY0MzY1OTM1NCwicm9vbSI6ImN6ZXNjWmlvbWt1IiwidXNlciI6eyJpZCI6MSwibmFtZSI6Ik9zbWFuIEthbnUiLCJkaXNwbGF5TmFtZSI6Ik9zbWFuIEthbnUiLCJlbWFpbCI6InN0dWRlbnRAZXNjb2xhLWxtcy5jb20iLCJtb2RlcmF0b3IiOmZhbHNlfX0.xnFV-Kk63c3YRADzkSQLz6FP71yfEUO7Q53isFGkv_U", }; const data: IJitsiMeetingProps = { ...dataFromEndpoint, onApiReady: (api) => console.log("api ready", api), }; function App() { return ( <div className="App"> <JitsiMeeting {...data} /> </div> ); } export default App;
Tests
Run ./vendor/bin/phpunit --filter 'EscolaLms\\Jitsi\\Tests' to run tests. See tests folder as it's quite good staring point as documentation appendix.