jiti-meet/modules/recorder/Recorder.js

45 lines
1.1 KiB
JavaScript
Raw Normal View History

/* global APP, config */
2016-05-05 16:14:27 +00:00
/**
* The (name of the) command which transports the recorder info.
*/
const _USER_INFO_COMMAND = 'userinfo';
2016-05-05 16:14:27 +00:00
/**
* The Recorder class is meant to take care of recorder related presence
* commands.
*/
class Recorder {
/**
* Creates new recorder instance.
*/
2016-05-05 16:14:27 +00:00
constructor() {
if (config.iAmRecorder) {
2016-05-05 16:14:27 +00:00
this._sendRecorderInfo();
}
2016-05-05 16:14:27 +00:00
}
/**
* Sends the information that this is a recorder through the presence.
* @private
*/
_sendRecorderInfo() {
const commands = APP.conference.commands;
2016-05-05 16:14:27 +00:00
// XXX The "Follow Me" command represents a snapshot of all states
// which are to be followed so don't forget to removeCommand before
// sendCommand!
commands.removeCommand(_USER_INFO_COMMAND);
commands.sendCommand(
_USER_INFO_COMMAND,
{
attributes: {
xmlns: 'http://jitsi.org/jitmeet/userinfo',
robot: true
}
});
}
}
export default Recorder;