.. | ||
config | ||
extra | ||
log | ||
test | ||
.dockerignore | ||
.gitignore | ||
.nvmrc | ||
app.js | ||
application.js | ||
callback_emitter.js | ||
Dockerfile | ||
hook.js | ||
id_mapping.js | ||
logger.js | ||
messageMapping.js | ||
package-lock.json | ||
package.json | ||
README.md | ||
responses.js | ||
userMapping.js | ||
utils.js | ||
web_hooks.js | ||
web_server.js |
bbb-webhooks
This is a node.js application that listens for all events on BigBlueButton and sends POST requests with details about these events to hooks registered via an API. A hook is any external URL that can receive HTTP POST requests.
You can read the full documentation at: https://docs.bigbluebutton.org/dev/webhooks.html
Development
With a working development environment, follow the commands below from within the bigbluebutton/bbb-webhooks
directory.
-
Install the node dependencies:
npm install
-
Copy the configuration file:
cp config/default.example.yml config/default.yml
- Update the
serverDomain
andsharedSecret
values to match your BBB server configuration in the newly copiedconfig/default.yml
.
-
Stop the bbb-webhook service:
sudo service bbb-webhooks stop
-
Run the application:
node app.js
- Note: If the
node app.js
script stops, it's likely an issue with the configuration, or thebbb-webhooks
service may have not been terminated.
Persistent Hooks
If you want all webhooks from a BBB server to post to your 3rd party application/s, you can modify the configuration file to include permanentURLs
and define one or more server urls which you would like the webhooks to post back to.
To add these permanent urls, do the follow:
sudo nano config/default.yml
- Locate
hooks.permanentURLs
in your config/default.yml and modify it as follows:-
hooks: permanentURLs: - url: 'https://staging.example.com/webhook-post-route', getRaw: false - url: 'https://app.example.com/webhook-post-route', getRaw: false
-
Once you have adjusted your configuration file, you will need to restart your development/app server to adapt to the new configuration.
If you are editing these permanent urls after they have already been committed to the application once, you may need to flush the redis database in order for adjustments to these permanent hooks to get picked up by your application. Use the following command to do so:
redis-cli flushall
- IMPORTANT: Running the above command clears the redis database entirely. This will result in all meetings, processing or not, to be cleared from the database, and may result in broken meetings currently processing.
Production
Follow the commands below starting within the bigbluebutton/bbb-webhooks
directory.
-
Copy the entire webhooks directory:
sudo cp -r . /usr/local/bigbluebutton/bbb-webhooks
-
Move into the directory we just copied the files to:
cd /usr/local/bigbluebutton/bbb-webhooks
-
Install the dependencies:
npm install
-
Copy the configuration file:
sudo cp config/default.example.yml config/default.yml
- Update the
serverDomain
andsharedSecret
values to match your BBB server configuration:sudo nano config/default.yml
-
Start the bbb-webhooks service:
sudo service bbb-webhooks restart