123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- /* global APP, getConfigParamsFromUrl */
-
- /**
- * 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';
-
- import * as JitsiMeetConferenceEvents from '../../ConferenceEvents';
-
- /**
- * List of the available commands.
- * @type {{
- * displayName: inputDisplayNameHandler,
- * toggleAudio: toggleAudio,
- * toggleVideo: toggleVideo,
- * toggleFilmStrip: toggleFilmStrip,
- * toggleChat: toggleChat,
- * toggleContactList: toggleContactList
- * }}
- */
- let commands = {};
-
- let hashParams = getConfigParamsFromUrl();
-
- /**
- * JitsiMeetExternalAPI id - unique for a webpage.
- */
- let jitsi_meet_external_api_id = hashParams.jitsi_meet_external_api_id;
-
- /**
- * Object that will execute sendMessage
- */
- let target = window.opener ? window.opener : window.parent;
-
- /**
- * Postis instance. Used to communicate with the external application.
- */
- let postis;
-
- /**
- * Current status (enabled/disabled) of API.
- */
- let enabled = false;
-
- /**
- * The state of screen sharing(started/stopped) before the screen sharing is
- * enabled and initialized.
- * NOTE: This flag help us to cache the state and use it if toggle-share-screen
- * was received before the initialization.
- */
- let initialScreenSharingState = false;
-
- /**
- * Executes on toggle-share-screen command.
- */
- function toggleScreenSharing() {
- if(!APP.conference.isDesktopSharingEnabled) {
- initialScreenSharingState = !initialScreenSharingState;
- } else {
- APP.conference.toggleScreenSharing();
- }
- }
-
- function initCommands() {
- commands = {
- "display-name":
- APP.conference.changeLocalDisplayName.bind(APP.conference),
- "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": toggleScreenSharing,
- "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));
- });
- }
-
- /**
- * Sends message to the external application.
- * @param message {object}
- * @param method {string}
- * @param params {object} the object that will be sent as JSON string
- */
- function sendMessage(message) {
- if(enabled) {
- postis.send(message);
- }
- }
-
- /**
- * Check whether the API should be enabled or not.
- * @returns {boolean}
- */
- function shouldBeEnabled () {
- return (typeof jitsi_meet_external_api_id === "number");
- }
-
- /**
- * 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});
- }
- }
-
- /**
- * Listens for screen sharing enabled events and toggles the screen sharing if
- * needed.
- *
- * @param {boolean} enabled - Current screen sharing enabled status.
- * @returns {void}
- */
- function onScreenSharingEnable(enabled = false) {
- if(enabled && initialScreenSharingState) {
- toggleScreenSharing();
- }
- }
-
- class API {
- /**
- * Constructs new instance
- * @constructor
- */
- constructor() { }
-
- /**
- * 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.
- * @param options {object}
- * @param forceEnable {boolean} if true the module will be enabled.
- */
- init (options = {}) {
- if(!shouldBeEnabled() && !options.forceEnable)
- return;
-
- if(!enabled) {
- APP.conference.addListener(
- JitsiMeetConferenceEvents.DESKTOP_SHARING_ENABLED_CHANGED,
- onScreenSharingEnable);
- 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();
- }
-
- /**
- * Notify external application (if API is enabled) that message was sent.
- * @param {string} body message body
- */
- notifySendingChatMessage (body) {
- triggerEvent("outgoing-message", {"message": body});
- }
-
- /**
- * 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
- */
- notifyReceivedChatMessage (id, nick, body, ts) {
- if (APP.conference.isLocalId(id)) {
- return;
- }
-
- triggerEvent(
- "incoming-message",
- {"from": id, "nick": nick, "message": body, "stamp": ts}
- );
- }
-
- /**
- * Notify external application (if API is enabled) that
- * user joined the conference.
- * @param {string} id user id
- */
- notifyUserJoined (id) {
- triggerEvent("participant-joined", {id});
- }
-
- /**
- * Notify external application (if API is enabled) that
- * user left the conference.
- * @param {string} id user id
- */
- notifyUserLeft (id) {
- triggerEvent("participant-left", {id});
- }
-
- /**
- * 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});
- }
-
- /**
- * 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});
- }
-
- /**
- * Removes the listeners.
- */
- dispose () {
- if(enabled) {
- postis.destroy();
- APP.conference.removeListener(
- JitsiMeetConferenceEvents.DESKTOP_SHARING_ENABLED_CHANGED,
- onScreenSharingEnable);
- }
- }
- }
-
- export default new API();
|