Go to file
sualko 1c3f2a7cba feat: bump to nc 25 2022-10-26 20:31:16 +02:00
.github feat: bump to nc 25 2022-10-26 20:31:16 +02:00
.tx [tx-robot] Update transifex configuration 2022-10-01 03:21:37 +00:00
appinfo feat: bump to nc 25 2022-10-26 20:31:16 +02:00
docs docs: add admin screenshot 2021-02-13 19:20:26 +01:00
img fix: Add missing image to repository 2020-12-22 08:51:22 +01:00
l10n [tx-robot] updated from transifex 2022-10-26 03:15:40 +00:00
lib feat: bump to nc 25 2022-10-26 20:31:16 +02:00
scripts chore: update release scripts 2022-07-24 14:31:35 +02:00
templates chore: update php cs fixer 2022-10-26 19:16:51 +02:00
tests feat: enable insert document 2022-10-26 19:11:36 +02:00
ts feat: bump to nc 25 2022-10-26 20:31:16 +02:00
.eslintrc.js chore: upgrade required Node version and deps 2022-03-16 11:27:11 +01:00
.gitattributes chore: add gitattributes 2021-01-23 11:34:00 +01:00
.gitignore chore: update php cs fixer 2022-10-26 19:16:51 +02:00
.php-cs-fixer.dist.php chore: update php cs fixer 2022-10-26 19:16:51 +02:00
.stylelintrc.json chore: fix linting 2020-04-26 22:41:06 +02:00
CHANGELOG.md docs: update change log 2022-07-28 21:56:59 +02:00
CODE_OF_CONDUCT.md docs: add code of conduct 2020-05-17 11:54:22 +02:00
COPYING Initial commit 2020-04-26 11:36:41 +02:00
Makefile make app id shorter 2020-04-26 13:26:34 +02:00
README.md feat: add support for analytics callback url 2022-03-16 11:58:38 +01:00
babel.config.js Initial commit 2020-04-26 11:36:41 +02:00
commitlint.config.js chore: ignore tx-robot commits if linting 2020-06-04 10:06:57 +02:00
composer.json feat: bump to nc 25 2022-10-26 20:31:16 +02:00
composer.lock feat: bump to nc 25 2022-10-26 20:31:16 +02:00
declarations.d.ts Initial commit 2020-04-26 11:36:41 +02:00
package.json release: 2.3.1 🎉 2022-07-28 21:57:43 +02:00
phpunit.integration.xml test: add integration test for room mapper 2020-06-18 15:07:19 +02:00
phpunit.xml ci: fix workaround for php 7.2 2021-02-13 18:30:59 +01:00
psalm.xml chore: update php deps 2022-07-28 21:37:21 +02:00
tsconfig.json Initial commit 2020-04-26 11:36:41 +02:00
webpack.common.js fix: image loader for webpack 5 2022-03-17 14:20:08 +01:00
webpack.dev.js chore: upgrade required Node version and deps 2022-03-16 11:27:11 +01:00
webpack.prod.js chore: upgrade required Node version and deps 2022-03-16 11:27:11 +01:00
yarn.lock feat: bump to nc 25 2022-10-26 20:31:16 +02:00

README.md

BigBlueButton™ integration for Nextcloud

Static analysis PHP Tests Lint Downloads GitHub release

ko-fi

This app allows to create meetings with an external installation of BigBlueButton.

👏 Developer wanted! If you have time it would be awesome if you could help to enhance this application.

This app uses BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.

Screenshot configuration

😍 Features

This integration provides the following features:

  • Room setup Create multiple room configurations with name, welcome message, ...
  • Share guest link Share the room link with all your guests
  • Share rooms Share rooms with members, groups or circles
  • Custom presentation Start a room with a selected presentation from your file browser
  • Manage recordings View, share and delete recordings for your rooms
  • Restrictions Restrict room creation to certain groups
  • Activities Get an overview of your room activities

🚀 Install it

The easiest way to install this app is by using the Nextcloud app store. If you like to build from source, please continue reading.

To install it change into your Nextcloud's apps directory:

cd nextcloud/apps

Then run:

git clone https://github.com/sualko/cloud_bbb.git bbb

Then install the dependencies using:

make build

⚙️ Configure it

Get your BBB API url and secret by executing sudo bbb-conf --secret on your BBB server.

$ sudo bbb-conf --secret

    URL: https://bbb.your.domain/bigbluebutton/
    Secret: abcdefghijklmnopqrstuvwxyz012345679

    Link to the API-Mate:
    https://mconf.github.io/api-mate/#server=https://...

Enter these values in the additional settings section on the admin configuration page of your Nextcloud instance.

Screenshot admin section

Manual configuration (for experts)

If you prefer not to use the web interface for configuration, you will find all used configuration keys in the list below. Please beware that there will be no check if those values are correct. Therefore this is not the recommended way. The syntax to set all settings is occ config:app:set bbb KEY --value "VALUE".

Key Description
app.navigation Set to true to show navigation entry
app.navigation.name Defines the navigation label. Default "BigBlueButton".
api.url URL to your BBB server. Should start with https://
api.secret Secret of your BBB server
api.meta_analytics-callback-url URL which gets called after meetings ends to generate statistics. See bbb-analytics.
app.shortener Value of your shortener service. Should start with https:// and contain {token}.
avatar.path Absolute path to an optional avatar cache directory.
avatar.url URL which serves avatar.path to be used as avatar cache.

Avatar cache (v2.2+)

The generation of avatars puts a high load on your Nextcloud instance, since the number of requests increases squarely to the number of participants in a room. To mitigate this situation, this app provides an optional avatar file cache. To activate the cache avatar.path and avatar.url have to be configured. avatar.path must provide an absolute path (e.g. /srv/bbb-avatar-cache/) to a directory which is writable by the PHP user. avatar.url must contain the url which serves all files from avatar.path. To bypass browser connection limits we recommend to setup a dedicated host.

Example Apache configuration for a dedicated host with avatar.path = /srv/bbb-avatar-cache/ and avatar.url = https://avatar-cache.your-nextcloud.com/:

<VirtualHost *:443>
        ServerName avatar-cache.your-nextcloud.com

        Header always set Strict-Transport-Security "max-age=15768000;"

        DocumentRoot /srv/bbb-avatar-cache
        <Directory /srv/bbb-avatar-cache>
                Options -FollowSymLinks -Indexes
        </Directory>

        SSLEngine On
        # SSL config...
</VirtualHost>

For additional security, we recommend to disable directory listing, symlinks and any language interpreter such as php for the cache directory.

Cached avatars are usually deleted as soon as the meeting ends. In cases the BBB server shuts down unexpected, we provide the bbb:clear-avatar-cache occ command (example use: ./occ bbb:clear-avatar-cache).

:bowtie: User guide

Create your first room

Go to the BigBlueButton section inside your personal settings page and enter a room name. That's it. You can now distribute the room url.

Enter a room from files

Use the ... menu and select the desired BBB configuration to enter the room. Beware that if the room is already running the presentation will not be updated. Entering a room with a defined presentation works only if link shares are enabled and do not require authentication. See #1 for details.

Screenshot file browser

📓 Notes

  • By using the Link Editor you can share rooms as any other file

⛏️ Troubleshooting

  • Before installing, make sure your BBB is running correctly
  • If the room doesn't appear in the ... menu of files, a browser/cache reload might help
  • To share an audio (mp3) or video (mp4) file with your audience follow these steps (more info in #148):
    • create a public share of the exact file
    • copy the location of the share from the share information screen into your clipboard
    • open big blue button, press the plus icon in the lower left corner
    • click on add external video
    • paste the url from your clipboard and append the following string for audio /download?.mp3 or /download?.mp4 for video files
  • To connect to a ScaleLite server, use the url like https://yourscalelite.url/bigbluebutton/ without additional api/ and as secret ScaleLite's LOADBALANCER_SECRET

❤️ Sponsors

Writing such an application is a lot of work and therefore we are specially thankful for people and organisations who are sponsoring features or bug fixes:

If you are looking for other ways to contribute to this project, you are welcome to look at our contributor guidelines. Every contribution is valuable 🎉.