This document describes how you can configure jitsi-meet to use sipgw jibri and enable rooms in ‘Add people dialog’ You will need a working deployment of jibri configured to use a regular sip video device, for more info check out the jibri documentation.
This feature is available for non-guests of the system, so this relies on setting in config.js enableUserRolesBasedOnToken: true
and providing a jwt token when accessing the conference.
org.jitsi.jicofo.jibri.SIP_BREWERY=TheSipBrewery@conference.yourdomain.com
enableUserRolesBasedOnToken: true,
peopleSearchQueryTypes: ['conferenceRooms'],
peopleSearchUrl: 'https://api.yourdomain.com/testpath/searchpeople',
The combination of the above settings and providing a jwt token will enable a button under invite option which will show the dialog ‘Add people’.
When searching in the dialog, a request for results is made to the peopleSearchUrl
service.
The request is in the following format:
https://api.yourdomain.com/testpath/searchpeople?query=testroomname&queryTypes=[%22conferenceRooms%22]&jwt=somejwt
The parameters are:
peopleSearchQueryTypes
The response of the service is a json in the following format:
[
{
"id": "address@sip.domain.com",
"name": "Some room name",
"type": "videosipgw"
},
{
"id": "address2@sip.domain.com",
"name": "Some room name2",
"type": "videosipgw"
}
]
Type should be videosipgw
, name
is the name shown to the user and id
is the sip address to be called by the sipgw jibri.