| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 | const logger = require("jitsi-meet-logger").getLogger(__filename);
import postisInit from "postis";
import EventEmitter from "events";
/**
 * The minimum width for the Jitsi Meet frame
 * @type {number}
 */
const MIN_WIDTH = 790;
/**
 * The minimum height for the Jitsi Meet frame
 * @type {number}
 */
const MIN_HEIGHT = 300;
/**
 * Last id of api object
 * @type {number}
 */
let id = 0;
/**
 * Maps the names of the commands expected by the API with the name of the
 * commands expected by jitsi-meet
 */
const commands = {
    "displayName": "display-name",
    "toggleAudio": "toggle-audio",
    "toggleVideo": "toggle-video",
    "toggleFilmStrip": "toggle-film-strip",
    "toggleChat": "toggle-chat",
    "toggleContactList": "toggle-contact-list",
    "toggleShareScreen": "toggle-share-screen",
    "hangup": "video-hangup",
    "email": "email",
    "avatarUrl": "avatar-url"
};
/**
 * Maps the names of the events expected by the API with the name of the
 * events expected by jitsi-meet
 */
const events = {
    "incomingMessage": "incoming-message",
    "outgoingMessage": "outgoing-message",
    "displayNameChange": "display-name-change",
    "participantJoined": "participant-joined",
    "participantLeft": "participant-left",
    "videoConferenceJoined": "video-conference-joined",
    "videoConferenceLeft": "video-conference-left",
    "readyToClose": "video-ready-to-close"
};
/**
 * Sends the passed object to Jitsi Meet
 * @param postis {Postis object} the postis instance that is going to be used
 * to send the message
 * @param object the object to be sent
 * - method {sting}
 * - params {object}
 */
function sendMessage(postis, object) {
    postis.send(object);
}
/**
 * Adds given number to the numberOfParticipants property of given APIInstance.
 * @param {JitsiMeetExternalAPI} APIInstance the instance of the
 * JitsiMeetExternalAPI
 * @param {int} number - the number of participants to be added to
 * numberOfParticipants property (this parameter can be negative number if the
 * numberOfParticipants should be decreased).
 */
function changeParticipantNumber(APIInstance, number) {
    APIInstance.numberOfParticipants += number;
}
/**
 * Generates array with URL params based on the passed config object that will
 * be used for the Jitsi Meet URL generation.
 *
 * @param config {object} the config object.
 * @returns {Array<string>} the array with URL param strings.
 */
function configToURLParamsArray(config) {
    const params = [];
    for (const key in config) {
        try {
            params.push(key + '='
                + encodeURIComponent(JSON.stringify(config[key])));
        } catch (e) {
            console.warn(`Error encoding ${key}: ${e}`);
        }
    }
    return params;
}
/**
 * The IFrame API interface class.
 */
class JitsiMeetExternalAPI extends EventEmitter {
    /**
     * Constructs new API instance. Creates iframe element that loads
     * Jitsi Meet.
     * @param domain the domain name of the server that hosts the conference
     * @param room_name the name of the room to join
     * @param width width of the iframe
     * @param height height of the iframe
     * @param parent_node the node that will contain the iframe
     * @param configOverwrite object containing configuration options defined in
     * config.js to be overridden.
     * @param interfaceConfigOverwrite object containing configuration options
     * defined in interface_config.js to be overridden.
     * @param noSsl if the value is true https won't be used
     * @param {string} [jwt] the JWT token if needed by jitsi-meet for
     * authentication.
     * @constructor
     */
    constructor(domain, room_name, width, height, parentNode,
        configOverwrite, interfaceConfigOverwrite, noSsl, jwt) {
        super();
        if (!width || width < MIN_WIDTH) {
            width = MIN_WIDTH;
        }
        if (!height || height < MIN_HEIGHT) {
            height = MIN_HEIGHT;
        }
        this.parentNode = null;
        if (parentNode) {
            this.parentNode = parentNode;
        } else {
            var scriptTag = document.scripts[document.scripts.length - 1];
            this.parentNode = scriptTag.parentNode;
        }
        this.iframeHolder =
            this.parentNode.appendChild(document.createElement("div"));
        this.iframeHolder.id = "jitsiConference" + id;
        if (width) {
            this.iframeHolder.style.width = width + "px";
        }
        if (height) {
            this.iframeHolder.style.height = height + "px";
        }
        this.frameName = "jitsiConferenceFrame" + id;
        this.url = (noSsl) ? "http" : "https" +"://" + domain + "/";
        if (room_name) {
            this.url += room_name;
        }
        if (jwt) {
            this.url += '?jwt=' + jwt;
        }
        this.url += "#jitsi_meet_external_api_id=" + id;
        const configURLParams = configToURLParamsArray(configOverwrite);
        if (configURLParams.length) {
            this.url += '&config.' + configURLParams.join('&config.');
        }
        const interfaceConfigURLParams
            = configToURLParamsArray(interfaceConfigOverwrite);
        if (interfaceConfigURLParams.length) {
            this.url += '&interfaceConfig.'
                + interfaceConfigURLParams.join('&interfaceConfig.');
        }
        this.frame = document.createElement("iframe");
        this.frame.src = this.url;
        this.frame.name = this.frameName;
        this.frame.id = this.frameName;
        this.frame.width = "100%";
        this.frame.height = "100%";
        this.frame.setAttribute("allowFullScreen","true");
        this.frame = this.iframeHolder.appendChild(this.frame);
        this.postis = postisInit({
            window: this.frame.contentWindow,
            scope: "jitsi_meet_external_api_" + id
        });
        this.eventHandlers = {};
        // Map<{string} event_name, {boolean} postis_listener_added>
        this.postisListeners = {};
        this.numberOfParticipants = 1;
        this._setupListeners();
        id++;
    }
    /**
     * Executes command. The available commands are:
     * displayName - sets the display name of the local participant to the value
     * passed in the arguments array.
     * toggleAudio - mutes / unmutes audio with no arguments
     * toggleVideo - mutes / unmutes video with no arguments
     * filmStrip - hides / shows the film strip with no arguments
     * If the command doesn't require any arguments the parameter should be set
     * to empty array or it may be omitted.
     * @param name the name of the command
     * @param arguments array of arguments
     */
    executeCommand(name, ...argumentsList) {
        if(!(name in commands)) {
            logger.error("Not supported command name.");
            return;
        }
        sendMessage(this.postis, {
            method: commands[name],
            params: argumentsList
        });
    }
    /**
     * Executes commands. The available commands are:
     * displayName - sets the display name of the local participant to the value
     * passed in the arguments array.
     * toggleAudio - mutes / unmutes audio. no arguments
     * toggleVideo - mutes / unmutes video. no arguments
     * filmStrip - hides / shows the film strip. no arguments
     * toggleChat - hides / shows chat. no arguments.
     * toggleContactList - hides / shows contact list. no arguments.
     * toggleShareScreen - starts / stops screen sharing. no arguments.
     * @param object the object with commands to be executed. The keys of the
     * object are the commands that will be executed and the values are the
     * arguments for the command.
     */
    executeCommands(object) {
        for (var key in object) {
            this.executeCommand(key, object[key]);
        }
    }
    /**
     * Adds event listeners to Meet Jitsi. The object key should be the name of
     * the event and value - the listener.
     * Currently we support the following
     * events:
     * incomingMessage - receives event notifications about incoming
     * messages. The listener will receive object with the following structure:
     * {{
     *  "from": from,//JID of the user that sent the message
     *  "nick": nick,//the nickname of the user that sent the message
     *  "message": txt//the text of the message
     * }}
     * outgoingMessage - receives event notifications about outgoing
     * messages. The listener will receive object with the following structure:
     * {{
     *  "message": txt//the text of the message
     * }}
     * displayNameChanged - receives event notifications about display name
     * change. The listener will receive object with the following structure:
     * {{
     * jid: jid,//the JID of the participant that changed his display name
     * displayname: displayName //the new display name
     * }}
     * participantJoined - receives event notifications about new participant.
     * The listener will receive object with the following structure:
     * {{
     * jid: jid //the jid of the participant
     * }}
     * participantLeft - receives event notifications about the participant that
     * left the room.
     * The listener will receive object with the following structure:
     * {{
     * jid: jid //the jid of the participant
     * }}
     * video-conference-joined - receives event notifications about the local
     * user has successfully joined the video conference.
     * The listener will receive object with the following structure:
     * {{
     * roomName: room //the room name of the conference
     * }}
     * video-conference-left - receives event notifications about the local user
     * has left the video conference.
     * The listener will receive object with the following structure:
     * {{
     * roomName: room //the room name of the conference
     * }}
     * readyToClose - all hangup operations are completed and Jitsi Meet is
     * ready to be disposed.
     * @param object
     *
     * NOTE: This method is not removed for backward comatability purposes.
     */
    addEventListeners(object) {
        for (var i in object) {
            this.addEventListener(i, object[i]);
        }
    }
    /**
     * Adds event listeners to Meet Jitsi. Currently we support the following
     * events:
     * incomingMessage - receives event notifications about incoming
     * messages. The listener will receive object with the following structure:
     * {{
     *  "from": from,//JID of the user that sent the message
     *  "nick": nick,//the nickname of the user that sent the message
     *  "message": txt//the text of the message
     * }}
     * outgoingMessage - receives event notifications about outgoing
     * messages. The listener will receive object with the following structure:
     * {{
     *  "message": txt//the text of the message
     * }}
     * displayNameChanged - receives event notifications about display name
     * change. The listener will receive object with the following structure:
     * {{
     * jid: jid,//the JID of the participant that changed his display name
     * displayname: displayName //the new display name
     * }}
     * participantJoined - receives event notifications about new participant.
     * The listener will receive object with the following structure:
     * {{
     * jid: jid //the jid of the participant
     * }}
     * participantLeft - receives event notifications about participant the that
     * left the room.
     * The listener will receive object with the following structure:
     * {{
     * jid: jid //the jid of the participant
     * }}
     * video-conference-joined - receives event notifications fired when the
     * local user has joined the video conference.
     * The listener will receive object with the following structure:
     * {{
     * roomName: room //the room name of the conference
     * }}
     * video-conference-left - receives event notifications fired when the local
     * user has joined the video conference.
     * The listener will receive object with the following structure:
     * {{
     * roomName: room //the room name of the conference
     * }}
     * @param event the name of the event
     * @param listener the listener
     *
     * NOTE: This method is not removed for backward comatability purposes.
     */
    addEventListener(event, listener) {
        this.on(event, listener);
    }
    /**
     * Removes event listener.
     * @param event the name of the event.
     * NOTE: This method is not removed for backward comatability purposes.
     */
    removeEventListener(event) {
        this.removeListeners(event);
    }
    /**
     * Removes event listeners.
     * @param events array with the names of the events.
     * NOTE: This method is not removed for backward comatability purposes.
     */
    removeEventListeners(events) {
        for(var i = 0; i < events.length; i++) {
            this.removeEventListener(events[i]);
        }
    }
    /**
     * Returns the number of participants in the conference.
     * NOTE: the local participant is included.
     * @returns {int} the number of participants in the conference.
     */
    getNumberOfParticipants() {
        return this.numberOfParticipants;
    }
    /**
     * Setups listeners that are used internally for JitsiMeetExternalAPI.
     */
    _setupListeners() {
        this.postis.listen("participant-joined",
            changeParticipantNumber.bind(null, this, 1));
        this.postis.listen("participant-left",
            changeParticipantNumber.bind(null, this, -1));
        for (const eventName in events) {
            const postisMethod = events[eventName];
            this.postis.listen(postisMethod,
                (...args) => this.emit(eventName, ...args));
        }
    }
    /**
     * Removes the listeners and removes the Jitsi Meet frame.
     */
    dispose() {
        this.postis.destroy();
        var frame = document.getElementById(this.frameName);
        if(frame)
            frame.src = 'about:blank';
        window.setTimeout( () => {
            this.iframeHolder.removeChild(this.frame);
            this.iframeHolder.parentNode.removeChild(this.iframeHolder);
        }, 10);
    }
}
module.exports = JitsiMeetExternalAPI;
 |