您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SharedVideo.js 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819
  1. /* global $, APP, YT, interfaceConfig, onPlayerReady, onPlayerStateChange,
  2. onPlayerError */
  3. const logger = require('jitsi-meet-logger').getLogger(__filename);
  4. import UIUtil from '../util/UIUtil';
  5. import UIEvents from '../../../service/UI/UIEvents';
  6. import VideoLayout from '../videolayout/VideoLayout';
  7. import LargeContainer from '../videolayout/LargeContainer';
  8. import Filmstrip from '../videolayout/Filmstrip';
  9. import {
  10. createSharedVideoEvent as createEvent,
  11. sendAnalytics
  12. } from '../../../react/features/analytics';
  13. import {
  14. participantJoined,
  15. participantLeft
  16. } from '../../../react/features/base/participants';
  17. import {
  18. dockToolbox,
  19. getToolboxHeight,
  20. showToolbox
  21. } from '../../../react/features/toolbox';
  22. import SharedVideoThumb from './SharedVideoThumb';
  23. export const SHARED_VIDEO_CONTAINER_TYPE = 'sharedvideo';
  24. /**
  25. * Example shared video link.
  26. * @type {string}
  27. */
  28. const defaultSharedVideoLink = 'https://www.youtube.com/watch?v=xNXN7CZk8X0';
  29. const updateInterval = 5000; // milliseconds
  30. /**
  31. * The dialog for user input (video link).
  32. * @type {null}
  33. */
  34. let dialog = null;
  35. /**
  36. * Manager of shared video.
  37. */
  38. export default class SharedVideoManager {
  39. /**
  40. *
  41. */
  42. constructor(emitter) {
  43. this.emitter = emitter;
  44. this.isSharedVideoShown = false;
  45. this.isPlayerAPILoaded = false;
  46. this.mutedWithUserInteraction = false;
  47. }
  48. /**
  49. * Indicates if the player volume is currently on. This will return true if
  50. * we have an available player, which is currently in a PLAYING state,
  51. * which isn't muted and has it's volume greater than 0.
  52. *
  53. * @returns {boolean} indicating if the volume of the shared video is
  54. * currently on.
  55. */
  56. isSharedVideoVolumeOn() {
  57. return this.player
  58. && this.player.getPlayerState() === YT.PlayerState.PLAYING
  59. && !this.player.isMuted()
  60. && this.player.getVolume() > 0;
  61. }
  62. /**
  63. * Indicates if the local user is the owner of the shared video.
  64. * @returns {*|boolean}
  65. */
  66. isSharedVideoOwner() {
  67. return this.from && APP.conference.isLocalId(this.from);
  68. }
  69. /**
  70. * Starts shared video by asking user for url, or if its already working
  71. * asks whether the user wants to stop sharing the video.
  72. */
  73. toggleSharedVideo() {
  74. if (dialog) {
  75. return;
  76. }
  77. if (!this.isSharedVideoShown) {
  78. requestVideoLink().then(
  79. url => {
  80. this.emitter.emit(
  81. UIEvents.UPDATE_SHARED_VIDEO, url, 'start');
  82. sendAnalytics(createEvent('started'));
  83. },
  84. err => {
  85. logger.log('SHARED VIDEO CANCELED', err);
  86. sendAnalytics(createEvent('canceled'));
  87. }
  88. );
  89. return;
  90. }
  91. if (APP.conference.isLocalId(this.from)) {
  92. showStopVideoPropmpt().then(
  93. () => {
  94. // make sure we stop updates for playing before we send stop
  95. // if we stop it after receiving self presence, we can end
  96. // up sending stop playing, and on the other end it will not
  97. // stop
  98. if (this.intervalId) {
  99. clearInterval(this.intervalId);
  100. this.intervalId = null;
  101. }
  102. this.emitter.emit(
  103. UIEvents.UPDATE_SHARED_VIDEO, this.url, 'stop');
  104. sendAnalytics(createEvent('stopped'));
  105. },
  106. () => {}); // eslint-disable-line no-empty-function
  107. } else {
  108. APP.UI.messageHandler.showWarning({
  109. descriptionKey: 'dialog.alreadySharedVideoMsg',
  110. titleKey: 'dialog.alreadySharedVideoTitle'
  111. });
  112. sendAnalytics(createEvent('already.shared'));
  113. }
  114. }
  115. /**
  116. * Shows the player component and starts the process that will be sending
  117. * updates, if we are the one shared the video.
  118. *
  119. * @param id the id of the sender of the command
  120. * @param url the video url
  121. * @param attributes
  122. */
  123. onSharedVideoStart(id, url, attributes) {
  124. if (this.isSharedVideoShown) {
  125. return;
  126. }
  127. this.isSharedVideoShown = true;
  128. // the video url
  129. this.url = url;
  130. // the owner of the video
  131. this.from = id;
  132. this.mutedWithUserInteraction = APP.conference.isLocalAudioMuted();
  133. // listen for local audio mute events
  134. this.localAudioMutedListener = this.onLocalAudioMuted.bind(this);
  135. this.emitter.on(UIEvents.AUDIO_MUTED, this.localAudioMutedListener);
  136. // This code loads the IFrame Player API code asynchronously.
  137. const tag = document.createElement('script');
  138. tag.src = 'https://www.youtube.com/iframe_api';
  139. const firstScriptTag = document.getElementsByTagName('script')[0];
  140. firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
  141. // sometimes we receive errors like player not defined
  142. // or player.pauseVideo is not a function
  143. // we need to operate with player after start playing
  144. // self.player will be defined once it start playing
  145. // and will process any initial attributes if any
  146. this.initialAttributes = attributes;
  147. const self = this;
  148. if (self.isPlayerAPILoaded) {
  149. window.onYouTubeIframeAPIReady();
  150. } else {
  151. window.onYouTubeIframeAPIReady = function() {
  152. self.isPlayerAPILoaded = true;
  153. const showControls
  154. = APP.conference.isLocalId(self.from) ? 1 : 0;
  155. const p = new YT.Player('sharedVideoIFrame', {
  156. height: '100%',
  157. width: '100%',
  158. videoId: self.url,
  159. playerVars: {
  160. 'origin': location.origin,
  161. 'fs': '0',
  162. 'autoplay': 0,
  163. 'controls': showControls,
  164. 'rel': 0
  165. },
  166. events: {
  167. 'onReady': onPlayerReady,
  168. 'onStateChange': onPlayerStateChange,
  169. 'onError': onPlayerError
  170. }
  171. });
  172. // add listener for volume changes
  173. p.addEventListener(
  174. 'onVolumeChange', 'onVolumeChange');
  175. if (APP.conference.isLocalId(self.from)) {
  176. // adds progress listener that will be firing events
  177. // while we are paused and we change the progress of the
  178. // video (seeking forward or backward on the video)
  179. p.addEventListener(
  180. 'onVideoProgress', 'onVideoProgress');
  181. }
  182. };
  183. }
  184. /**
  185. * Indicates that a change in state has occurred for the shared video.
  186. * @param event the event notifying us of the change
  187. */
  188. window.onPlayerStateChange = function(event) {
  189. // eslint-disable-next-line eqeqeq
  190. if (event.data == YT.PlayerState.PLAYING) {
  191. self.player = event.target;
  192. if (self.initialAttributes) {
  193. // If a network update has occurred already now is the
  194. // time to process it.
  195. self.processVideoUpdate(
  196. self.player,
  197. self.initialAttributes);
  198. self.initialAttributes = null;
  199. }
  200. self.smartAudioMute();
  201. // eslint-disable-next-line eqeqeq
  202. } else if (event.data == YT.PlayerState.PAUSED) {
  203. self.smartAudioUnmute();
  204. sendAnalytics(createEvent('paused'));
  205. }
  206. // eslint-disable-next-line eqeqeq
  207. self.fireSharedVideoEvent(event.data == YT.PlayerState.PAUSED);
  208. };
  209. /**
  210. * Track player progress while paused.
  211. * @param event
  212. */
  213. window.onVideoProgress = function(event) {
  214. const state = event.target.getPlayerState();
  215. // eslint-disable-next-line eqeqeq
  216. if (state == YT.PlayerState.PAUSED) {
  217. self.fireSharedVideoEvent(true);
  218. }
  219. };
  220. /**
  221. * Gets notified for volume state changed.
  222. * @param event
  223. */
  224. window.onVolumeChange = function(event) {
  225. self.fireSharedVideoEvent();
  226. // let's check, if player is not muted lets mute locally
  227. if (event.data.volume > 0 && !event.data.muted) {
  228. self.smartAudioMute();
  229. } else if (event.data.volume <= 0 || event.data.muted) {
  230. self.smartAudioUnmute();
  231. }
  232. sendAnalytics(createEvent(
  233. 'volume.changed',
  234. {
  235. volume: event.data.volume,
  236. muted: event.data.muted
  237. }));
  238. };
  239. window.onPlayerReady = function(event) {
  240. const player = event.target;
  241. // do not relay on autoplay as it is not sending all of the events
  242. // in onPlayerStateChange
  243. player.playVideo();
  244. const thumb = new SharedVideoThumb(
  245. self.url, SHARED_VIDEO_CONTAINER_TYPE, VideoLayout);
  246. thumb.setDisplayName('YouTube');
  247. VideoLayout.addRemoteVideoContainer(self.url, thumb);
  248. VideoLayout.resizeThumbnails(true);
  249. const iframe = player.getIframe();
  250. // eslint-disable-next-line no-use-before-define
  251. self.sharedVideo = new SharedVideoContainer(
  252. { url,
  253. iframe,
  254. player });
  255. // prevents pausing participants not sharing the video
  256. // to pause the video
  257. if (!APP.conference.isLocalId(self.from)) {
  258. $('#sharedVideo').css('pointer-events', 'none');
  259. }
  260. VideoLayout.addLargeVideoContainer(
  261. SHARED_VIDEO_CONTAINER_TYPE, self.sharedVideo);
  262. APP.store.dispatch(participantJoined({
  263. // FIXME The cat is out of the bag already or rather _room is
  264. // not private because it is used in multiple other places
  265. // already such as AbstractPageReloadOverlay and
  266. // JitsiMeetLogStorage.
  267. conference: APP.conference._room,
  268. id: self.url,
  269. isBot: true,
  270. name: 'YouTube'
  271. }));
  272. thumb.videoClick();
  273. // If we are sending the command and we are starting the player
  274. // we need to continuously send the player current time position
  275. if (APP.conference.isLocalId(self.from)) {
  276. self.intervalId = setInterval(
  277. self.fireSharedVideoEvent.bind(self),
  278. updateInterval);
  279. }
  280. };
  281. window.onPlayerError = function(event) {
  282. logger.error('Error in the player:', event.data);
  283. // store the error player, so we can remove it
  284. self.errorInPlayer = event.target;
  285. };
  286. }
  287. /**
  288. * Process attributes, whether player needs to be paused or seek.
  289. * @param player the player to operate over
  290. * @param attributes the attributes with the player state we want
  291. */
  292. processVideoUpdate(player, attributes) {
  293. if (!attributes) {
  294. return;
  295. }
  296. // eslint-disable-next-line eqeqeq
  297. if (attributes.state == 'playing') {
  298. const isPlayerPaused
  299. = this.player.getPlayerState() === YT.PlayerState.PAUSED;
  300. // If our player is currently paused force the seek.
  301. this.processTime(player, attributes, isPlayerPaused);
  302. // Process mute.
  303. const isAttrMuted = attributes.muted === 'true';
  304. if (player.isMuted() !== isAttrMuted) {
  305. this.smartPlayerMute(isAttrMuted, true);
  306. }
  307. // Process volume
  308. if (!isAttrMuted
  309. && attributes.volume !== undefined
  310. // eslint-disable-next-line eqeqeq
  311. && player.getVolume() != attributes.volume) {
  312. player.setVolume(attributes.volume);
  313. logger.info(`Player change of volume:${attributes.volume}`);
  314. }
  315. if (isPlayerPaused) {
  316. player.playVideo();
  317. }
  318. // eslint-disable-next-line eqeqeq
  319. } else if (attributes.state == 'pause') {
  320. // if its not paused, pause it
  321. player.pauseVideo();
  322. this.processTime(player, attributes, true);
  323. }
  324. }
  325. /**
  326. * Check for time in attributes and if needed seek in current player
  327. * @param player the player to operate over
  328. * @param attributes the attributes with the player state we want
  329. * @param forceSeek whether seek should be forced
  330. */
  331. processTime(player, attributes, forceSeek) {
  332. if (forceSeek) {
  333. logger.info('Player seekTo:', attributes.time);
  334. player.seekTo(attributes.time);
  335. return;
  336. }
  337. // check received time and current time
  338. const currentPosition = player.getCurrentTime();
  339. const diff = Math.abs(attributes.time - currentPosition);
  340. // if we drift more than the interval for checking
  341. // sync, the interval is in milliseconds
  342. if (diff > updateInterval / 1000) {
  343. logger.info('Player seekTo:', attributes.time,
  344. ' current time is:', currentPosition, ' diff:', diff);
  345. player.seekTo(attributes.time);
  346. }
  347. }
  348. /**
  349. * Checks current state of the player and fire an event with the values.
  350. */
  351. fireSharedVideoEvent(sendPauseEvent) {
  352. // ignore update checks if we are not the owner of the video
  353. // or there is still no player defined or we are stopped
  354. // (in a process of stopping)
  355. if (!APP.conference.isLocalId(this.from) || !this.player
  356. || !this.isSharedVideoShown) {
  357. return;
  358. }
  359. const state = this.player.getPlayerState();
  360. // if its paused and haven't been pause - send paused
  361. if (state === YT.PlayerState.PAUSED && sendPauseEvent) {
  362. this.emitter.emit(UIEvents.UPDATE_SHARED_VIDEO,
  363. this.url, 'pause', this.player.getCurrentTime());
  364. } else if (state === YT.PlayerState.PLAYING) {
  365. // if its playing and it was paused - send update with time
  366. // if its playing and was playing just send update with time
  367. this.emitter.emit(UIEvents.UPDATE_SHARED_VIDEO,
  368. this.url, 'playing',
  369. this.player.getCurrentTime(),
  370. this.player.isMuted(),
  371. this.player.getVolume());
  372. }
  373. }
  374. /**
  375. * Updates video, if it's not playing and needs starting or if it's playing
  376. * and needs to be paused.
  377. * @param id the id of the sender of the command
  378. * @param url the video url
  379. * @param attributes
  380. */
  381. onSharedVideoUpdate(id, url, attributes) {
  382. // if we are sending the event ignore
  383. if (APP.conference.isLocalId(this.from)) {
  384. return;
  385. }
  386. if (!this.isSharedVideoShown) {
  387. this.onSharedVideoStart(id, url, attributes);
  388. return;
  389. }
  390. // eslint-disable-next-line no-negated-condition
  391. if (!this.player) {
  392. this.initialAttributes = attributes;
  393. } else {
  394. this.processVideoUpdate(this.player, attributes);
  395. }
  396. }
  397. /**
  398. * Stop shared video if it is currently showed. If the user started the
  399. * shared video is the one in the id (called when user
  400. * left and we want to remove video if the user sharing it left).
  401. * @param id the id of the sender of the command
  402. */
  403. onSharedVideoStop(id, attributes) {
  404. if (!this.isSharedVideoShown) {
  405. return;
  406. }
  407. if (this.from !== id) {
  408. return;
  409. }
  410. if (!this.player) {
  411. // if there is no error in the player till now,
  412. // store the initial attributes
  413. if (!this.errorInPlayer) {
  414. this.initialAttributes = attributes;
  415. return;
  416. }
  417. }
  418. this.emitter.removeListener(UIEvents.AUDIO_MUTED,
  419. this.localAudioMutedListener);
  420. this.localAudioMutedListener = null;
  421. APP.store.dispatch(participantLeft(this.url, APP.conference._room));
  422. VideoLayout.showLargeVideoContainer(SHARED_VIDEO_CONTAINER_TYPE, false)
  423. .then(() => {
  424. VideoLayout.removeLargeVideoContainer(
  425. SHARED_VIDEO_CONTAINER_TYPE);
  426. if (this.player) {
  427. this.player.destroy();
  428. this.player = null;
  429. } else if (this.errorInPlayer) {
  430. // if there is an error in player, remove that instance
  431. this.errorInPlayer.destroy();
  432. this.errorInPlayer = null;
  433. }
  434. this.smartAudioUnmute();
  435. // revert to original behavior (prevents pausing
  436. // for participants not sharing the video to pause it)
  437. $('#sharedVideo').css('pointer-events', 'auto');
  438. this.emitter.emit(
  439. UIEvents.UPDATE_SHARED_VIDEO, null, 'removed');
  440. });
  441. this.url = null;
  442. this.isSharedVideoShown = false;
  443. this.initialAttributes = null;
  444. }
  445. /**
  446. * Receives events for local audio mute/unmute by local user.
  447. * @param muted boolena whether it is muted or not.
  448. * @param {boolean} indicates if this mute was a result of user interaction,
  449. * i.e. pressing the mute button or it was programatically triggerred
  450. */
  451. onLocalAudioMuted(muted, userInteraction) {
  452. if (!this.player) {
  453. return;
  454. }
  455. if (muted) {
  456. this.mutedWithUserInteraction = userInteraction;
  457. } else if (this.player.getPlayerState() !== YT.PlayerState.PAUSED) {
  458. this.smartPlayerMute(true, false);
  459. // Check if we need to update other participants
  460. this.fireSharedVideoEvent();
  461. }
  462. }
  463. /**
  464. * Mutes / unmutes the player.
  465. * @param mute true to mute the shared video, false - otherwise.
  466. * @param {boolean} Indicates if this mute is a consequence of a network
  467. * video update or is called locally.
  468. */
  469. smartPlayerMute(mute, isVideoUpdate) {
  470. if (!this.player.isMuted() && mute) {
  471. this.player.mute();
  472. if (isVideoUpdate) {
  473. this.smartAudioUnmute();
  474. }
  475. } else if (this.player.isMuted() && !mute) {
  476. this.player.unMute();
  477. if (isVideoUpdate) {
  478. this.smartAudioMute();
  479. }
  480. }
  481. }
  482. /**
  483. * Smart mike unmute. If the mike is currently muted and it wasn't muted
  484. * by the user via the mike button and the volume of the shared video is on
  485. * we're unmuting the mike automatically.
  486. */
  487. smartAudioUnmute() {
  488. if (APP.conference.isLocalAudioMuted()
  489. && !this.mutedWithUserInteraction
  490. && !this.isSharedVideoVolumeOn()) {
  491. sendAnalytics(createEvent('audio.unmuted'));
  492. logger.log('Shared video: audio unmuted');
  493. this.emitter.emit(UIEvents.AUDIO_MUTED, false, false);
  494. }
  495. }
  496. /**
  497. * Smart mike mute. If the mike isn't currently muted and the shared video
  498. * volume is on we mute the mike.
  499. */
  500. smartAudioMute() {
  501. if (!APP.conference.isLocalAudioMuted()
  502. && this.isSharedVideoVolumeOn()) {
  503. sendAnalytics(createEvent('audio.muted'));
  504. logger.log('Shared video: audio muted');
  505. this.emitter.emit(UIEvents.AUDIO_MUTED, true, false);
  506. }
  507. }
  508. }
  509. /**
  510. * Container for shared video iframe.
  511. */
  512. class SharedVideoContainer extends LargeContainer {
  513. /**
  514. *
  515. */
  516. constructor({ url, iframe, player }) {
  517. super();
  518. this.$iframe = $(iframe);
  519. this.url = url;
  520. this.player = player;
  521. }
  522. /**
  523. *
  524. */
  525. show() {
  526. const self = this;
  527. return new Promise(resolve => {
  528. this.$iframe.fadeIn(300, () => {
  529. self.bodyBackground = document.body.style.background;
  530. document.body.style.background = 'black';
  531. this.$iframe.css({ opacity: 1 });
  532. APP.store.dispatch(dockToolbox(true));
  533. resolve();
  534. });
  535. });
  536. }
  537. /**
  538. *
  539. */
  540. hide() {
  541. const self = this;
  542. APP.store.dispatch(dockToolbox(false));
  543. return new Promise(resolve => {
  544. this.$iframe.fadeOut(300, () => {
  545. document.body.style.background = self.bodyBackground;
  546. this.$iframe.css({ opacity: 0 });
  547. resolve();
  548. });
  549. });
  550. }
  551. /**
  552. *
  553. */
  554. onHoverIn() {
  555. APP.store.dispatch(showToolbox());
  556. }
  557. /**
  558. *
  559. */
  560. get id() {
  561. return this.url;
  562. }
  563. /**
  564. *
  565. */
  566. resize(containerWidth, containerHeight) {
  567. let height, width;
  568. if (interfaceConfig.VERTICAL_FILMSTRIP) {
  569. height = containerHeight - getToolboxHeight();
  570. width = containerWidth - Filmstrip.getFilmstripWidth();
  571. } else {
  572. height = containerHeight - Filmstrip.getFilmstripHeight();
  573. width = containerWidth;
  574. }
  575. this.$iframe.width(width).height(height);
  576. }
  577. /**
  578. * @return {boolean} do not switch on dominant speaker event if on stage.
  579. */
  580. stayOnStage() {
  581. return false;
  582. }
  583. }
  584. /**
  585. * Checks if given string is youtube url.
  586. * @param {string} url string to check.
  587. * @returns {boolean}
  588. */
  589. function getYoutubeLink(url) {
  590. const p = /^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$/;// eslint-disable-line max-len
  591. return url.match(p) ? RegExp.$1 : false;
  592. }
  593. /**
  594. * Ask user if he want to close shared video.
  595. */
  596. function showStopVideoPropmpt() {
  597. return new Promise((resolve, reject) => {
  598. const submitFunction = function(e, v) {
  599. if (v) {
  600. resolve();
  601. } else {
  602. reject();
  603. }
  604. };
  605. const closeFunction = function() {
  606. dialog = null;
  607. };
  608. dialog = APP.UI.messageHandler.openTwoButtonDialog({
  609. titleKey: 'dialog.removeSharedVideoTitle',
  610. msgKey: 'dialog.removeSharedVideoMsg',
  611. leftButtonKey: 'dialog.Remove',
  612. submitFunction,
  613. closeFunction
  614. });
  615. });
  616. }
  617. /**
  618. * Ask user for shared video url to share with others.
  619. * Dialog validates client input to allow only youtube urls.
  620. */
  621. function requestVideoLink() {
  622. const i18n = APP.translation;
  623. const cancelButton = i18n.generateTranslationHTML('dialog.Cancel');
  624. const shareButton = i18n.generateTranslationHTML('dialog.Share');
  625. const backButton = i18n.generateTranslationHTML('dialog.Back');
  626. const linkError
  627. = i18n.generateTranslationHTML('dialog.shareVideoLinkError');
  628. return new Promise((resolve, reject) => {
  629. dialog = APP.UI.messageHandler.openDialogWithStates({
  630. state0: {
  631. titleKey: 'dialog.shareVideoTitle',
  632. html: `
  633. <input name='sharedVideoUrl' type='text'
  634. class='input-control'
  635. data-i18n='[placeholder]defaultLink'
  636. autofocus>`,
  637. persistent: false,
  638. buttons: [
  639. { title: cancelButton,
  640. value: false },
  641. { title: shareButton,
  642. value: true }
  643. ],
  644. focus: ':input:first',
  645. defaultButton: 1,
  646. submit(e, v, m, f) { // eslint-disable-line max-params
  647. e.preventDefault();
  648. if (!v) {
  649. reject('cancelled');
  650. dialog.close();
  651. return;
  652. }
  653. const sharedVideoUrl = f.sharedVideoUrl;
  654. if (!sharedVideoUrl) {
  655. return;
  656. }
  657. const urlValue
  658. = encodeURI(UIUtil.escapeHtml(sharedVideoUrl));
  659. const yVideoId = getYoutubeLink(urlValue);
  660. if (!yVideoId) {
  661. dialog.goToState('state1');
  662. return false;
  663. }
  664. resolve(yVideoId);
  665. dialog.close();
  666. }
  667. },
  668. state1: {
  669. titleKey: 'dialog.shareVideoTitle',
  670. html: linkError,
  671. persistent: false,
  672. buttons: [
  673. { title: cancelButton,
  674. value: false },
  675. { title: backButton,
  676. value: true }
  677. ],
  678. focus: ':input:first',
  679. defaultButton: 1,
  680. submit(e, v) {
  681. e.preventDefault();
  682. if (v === 0) {
  683. reject();
  684. dialog.close();
  685. } else {
  686. dialog.goToState('state0');
  687. }
  688. }
  689. }
  690. }, {
  691. close() {
  692. dialog = null;
  693. }
  694. }, {
  695. url: defaultSharedVideoLink
  696. });
  697. });
  698. }