A SIP-Call Mapper for Jitsi.
• TL;DR • Startup • Contribute • Requirements • Configuration • Deployment • License • Sponsors •
- Helps to participate in a Jitsi Meet conference by SIP-Call.
- A SIP-Call is not possible via
https://meet.domain.org/<ConferenceName>
so the App maps from<ConferenceName>
to a 6-10-digit number - If
<ConferenceID>
is entered viaGET
,<ConferenceName>
is returned - If
?conference=<ConferenceName>
then<ConferenceID>
is returned.
The Selfhosted Jitsi Conference Mapper helps phone callers join a Jitsi Meet conference by SIP-Call.
People joining by web or the Jitsi Meet Electron app click on a link like https://meet.domain.org/<MyConferenceName>
.
However, those calling by phone cannot simply type the <ConferenceName>
into their phone. Clarified: If you
enter id=04023
via GET
, the name of the conference will be returned. If you enter conference=KarlWasHere
, the ID
is returned (technically, both are returned always).
The very first time a specific conference name is entered an n-digit number with n=6-9 digits number is generated and stored. After that, this pair is persisted - and reused for all requests.
Development on the Jitsi conference mapper app happens at GitHub.
Please take a look at our Contribution Guidelines.
You need to have Docker, Maven and Java installed.
Tell Jitsi to use this app as an API for Mapping. Replace <meet.domain.com>
with your jitsi domain:
sudo nano /etc/jitsi/meet/meet.domain.com-config.js
Modify the dialConfCodeULR line to match your new path
CONFCODE_URL: 'https://<meet.domain.com>/conferenceMapper/
Use the provided application.yml and fill it with your configuration. For a list of available options, see Configuration.
In order to make the Application work properly you need to setup the database using Docker:
docker run --rm --name jitsi_mapper__postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 postgres
cd 'path/to/Jitsi Conference Mapper' | mvn clean install package
Yon can run the app using
java -jar target/<VERSION_TAG>-SNAPSHOT.jar
- Build the App using Docker
docker build -t nordeck/jcm '.'
- Setup the database using Docker as mentioned above.
Note If you want to run the App via Docker it's mandatory to open a Docker Network (via Docker Compose e.g.) so the app and the database can communicate;
- Change directory
cd '<path/to/Jitsi Conference Mapper>/helm-charts/jitsi-conference-mapper'
- Add Helm repo and install Postgres DB
helm repo add bitnami https://charts.bitnami.com/bitnami; helm dependency build
helm install --upgrade --namespace <YourFavouriteNameSpace> jitsi-conference-mapper '.'
This project is licensed under APACHE 2.0.