jiti-meet/modules/API/API.js

241 lines
6.4 KiB
JavaScript
Raw Normal View History

/* global APP, getConfigParamsFromUrl */
2016-11-11 15:00:54 +00:00
2015-01-09 13:39:32 +00:00
/**
* Implements API class that communicates with external api class
* and provides interface to access Jitsi Meet features by external
* applications that embed Jitsi Meet
*/
import postisInit from 'postis';
2016-06-13 21:11:44 +00:00
2015-01-09 13:39:32 +00:00
/**
* List of the available commands.
* @type {{
* displayName: inputDisplayNameHandler,
* toggleAudio: toggleAudio,
* toggleVideo: toggleVideo,
* toggleFilmStrip: toggleFilmStrip,
* toggleChat: toggleChat,
* toggleContactList: toggleContactList
2015-01-09 13:39:32 +00:00
* }}
*/
2016-06-13 21:11:44 +00:00
let commands = {};
let hashParams = getConfigParamsFromUrl();
2016-06-13 21:11:44 +00:00
/**
* JitsiMeetExternalAPI id - unique for a webpage.
2016-06-13 21:11:44 +00:00
*/
let jitsi_meet_external_api_id = hashParams.jitsi_meet_external_api_id;
2016-06-13 21:11:44 +00:00
/**
* Object that will execute sendMessage
2016-06-13 21:11:44 +00:00
*/
let target = window.opener ? window.opener : window.parent;
2016-06-13 21:11:44 +00:00
/**
* Postis instance. Used to communicate with the external application.
2016-06-13 21:11:44 +00:00
*/
let postis;
2016-06-13 21:11:44 +00:00
/**
* Current status (enabled/disabled) of API.
2016-06-13 21:11:44 +00:00
*/
let enabled = false;
function initCommands() {
commands = {
"display-name": APP.UI.inputDisplayNameHandler,
2016-09-23 11:04:19 +00:00
"toggle-audio": APP.conference.toggleAudioMuted.bind(APP.conference),
"toggle-video": APP.conference.toggleVideoMuted.bind(APP.conference),
"toggle-film-strip": APP.UI.toggleFilmStrip,
"toggle-chat": APP.UI.toggleChat,
"toggle-contact-list": APP.UI.toggleContactList,
"toggle-share-screen":
APP.conference.toggleScreenSharing.bind(APP.conference),
"video-hangup": () => APP.conference.hangup(),
"email": APP.conference.changeLocalEmail,
"avatar-url": APP.conference.changeLocalAvatarUrl,
"remote-control-event": event =>
APP.remoteControl.onRemoteControlAPIEvent(event)
};
Object.keys(commands).forEach(function (key) {
postis.listen(key, args => commands[key](...args));
});
}
2015-01-09 13:39:32 +00:00
2016-06-13 21:11:44 +00:00
/**
* Sends message to the external application.
* @param message {object}
* @param method {string}
* @param params {object} the object that will be sent as JSON string
2016-06-13 21:11:44 +00:00
*/
function sendMessage(message) {
if(enabled) {
postis.send(message);
}
2016-06-13 21:11:44 +00:00
}
2016-01-14 15:05:54 +00:00
/**
* Check whether the API should be enabled or not.
* @returns {boolean}
*/
function shouldBeEnabled () {
return (typeof jitsi_meet_external_api_id === "number");
}
2016-01-14 15:05:54 +00:00
/**
* Sends event object to the external application that has been subscribed
* for that event.
* @param name the name event
* @param object data associated with the event
*/
function triggerEvent (name, object) {
if(enabled) {
sendMessage({method: name, params: object});
2016-01-14 15:05:54 +00:00
}
}
class API {
/**
* Constructs new instance
* @constructor
*/
constructor() { }
2015-01-09 13:39:32 +00:00
/**
* Initializes the APIConnector. Setups message event listeners that will
* receive information from external applications that embed Jitsi Meet.
* It also sends a message to the external application that APIConnector
* is initialized.
2016-06-13 21:11:44 +00:00
* @param options {object}
* @param forceEnable {boolean} if true the module will be enabled.
2015-01-09 13:39:32 +00:00
*/
init (options = {}) {
if(!shouldBeEnabled() && !options.forceEnable)
2016-01-14 15:05:54 +00:00
return;
2016-06-13 21:11:44 +00:00
enabled = true;
if(!postis) {
this._initPostis();
}
}
/**
* initializes postis library.
* @private
*/
_initPostis() {
let postisOptions = {
window: target
};
if(typeof jitsi_meet_external_api_id === "number")
postisOptions.scope
= "jitsi_meet_external_api_" + jitsi_meet_external_api_id;
postis = postisInit(postisOptions);
initCommands();
}
2016-01-14 15:05:54 +00:00
/**
* Notify external application (if API is enabled) that message was sent.
* @param {string} body message body
*/
notifySendingChatMessage (body) {
triggerEvent("outgoing-message", {"message": body});
}
2016-06-13 21:11:44 +00:00
2015-01-09 13:39:32 +00:00
/**
2016-01-14 15:05:54 +00:00
* Notify external application (if API is enabled) that
* message was received.
* @param {string} id user id
* @param {string} nick user nickname
* @param {string} body message body
* @param {number} ts message creation timestamp
2015-01-09 13:39:32 +00:00
*/
2016-01-14 15:05:54 +00:00
notifyReceivedChatMessage (id, nick, body, ts) {
if (APP.conference.isLocalId(id)) {
return;
}
triggerEvent(
"incoming-message",
2016-01-14 15:05:54 +00:00
{"from": id, "nick": nick, "message": body, "stamp": ts}
);
}
2015-01-09 13:39:32 +00:00
/**
2016-01-14 15:05:54 +00:00
* Notify external application (if API is enabled) that
* user joined the conference.
* @param {string} id user id
2015-01-09 13:39:32 +00:00
*/
2016-01-14 15:05:54 +00:00
notifyUserJoined (id) {
triggerEvent("participant-joined", {id});
}
2016-01-14 15:05:54 +00:00
/**
* Notify external application (if API is enabled) that
* user left the conference.
* @param {string} id user id
*/
notifyUserLeft (id) {
triggerEvent("participant-left", {id});
}
2016-01-14 15:05:54 +00:00
/**
* Notify external application (if API is enabled) that
* user changed their nickname.
* @param {string} id user id
* @param {string} displayName user nickname
*/
notifyDisplayNameChanged (id, displayName) {
triggerEvent("display-name-change", {id, displayname: displayName});
}
/**
* Notify external application (if API is enabled) that
* user changed their nickname.
* @param {string} id user id
* @param {string} displayName user nickname
*/
notifyConferenceJoined (room) {
triggerEvent("video-conference-joined", {roomName: room});
}
/**
* Notify external application (if API is enabled) that
* user changed their nickname.
* @param {string} id user id
* @param {string} displayName user nickname
*/
notifyConferenceLeft (room) {
triggerEvent("video-conference-left", {roomName: room});
}
2015-01-09 13:39:32 +00:00
/**
* Notify external application (if API is enabled) that
* we are ready to be closed.
*/
notifyReadyToClose () {
triggerEvent("video-ready-to-close", {});
}
/**
* Sends remote control event.
* @param {RemoteControlEvent} event the remote control event.
*/
sendRemoteControlEvent(event) {
sendMessage({method: "remote-control-event", params: event});
}
2015-01-09 13:39:32 +00:00
/**
* Removes the listeners.
*/
dispose () {
if(enabled)
postis.destroy();
2015-01-09 13:39:32 +00:00
}
}
export default new API();