/* WebRTC and Webcam related functionality for BareRTC. Most methods here are called by App.vue with some funcs reused by sub-components, e.g. for showing the webcam video buttons on the Who List and other places. */ import interact from 'interactjs'; import hark from 'hark'; import VideoFlag from './VideoFlag.js'; import LocalStorage from './LocalStorage.js'; // WebRTC configuration. const configuration = { iceServers: TURN.URLs.map(val => { let row = { urls: val, }; if (val.indexOf('turn:') === 0) { row.username = TURN.Username; row.credential = TURN.Credential; } return row; }) }; // Webcam sizes: ideal is 640x480 as this is the most friendly for end users, e.g. if everyone // broadcasted at 720p users on weaker hardware would run into problems sooner. const WebcamWidth = 640, WebcamHeight = 480; // For webcams that can not transmit at 640x480 (e.g. ultra widescreen), allow them to choose // the nearest resolution but no more than 720p. const WebcamMaxWidth = 1280, WebcamMaxHeight = 720; const ReactNudgeNsfwMessageID = -451; // An API surface layer of functions. class WebRTCController { // The caller configures: // - nsfw (bool): the BareRTC PermitNSFW setting, which controls some status options. // - isAdmin (func): return a boolean if the current user is operator. // - currentStatus (func): return the name of the user's current status. constructor() { } // Vue mixin for the main App.vue getMixin() { return { data: this.getData(), watch: this.getWatches(), computed: this.getComputed(), methods: this.getMethods(), } } // Vue.js data mixin for App.vue to store all our webcam-related state. getData() { return { // The user's local webcam and settings. webcam: { busy: false, active: false, elem: null, //