You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Toolbar.js 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  1. /* global APP,$, buttonClick, config, lockRoom,
  2. setSharedKey, Util */
  3. var messageHandler = require("../util/MessageHandler");
  4. var BottomToolbar = require("./BottomToolbar");
  5. var Prezi = require("../prezi/Prezi");
  6. var Etherpad = require("../etherpad/Etherpad");
  7. var PanelToggler = require("../side_pannels/SidePanelToggler");
  8. var Authentication = require("../authentication/Authentication");
  9. var UIUtil = require("../util/UIUtil");
  10. var AuthenticationEvents
  11. = require("../../../service/authentication/AuthenticationEvents");
  12. var roomUrl = null;
  13. var sharedKey = '';
  14. var UI = null;
  15. var buttonHandlers =
  16. {
  17. "toolbar_button_mute": function () {
  18. return APP.UI.toggleAudio();
  19. },
  20. "toolbar_button_camera": function () {
  21. return APP.UI.toggleVideo();
  22. },
  23. /*"toolbar_button_authentication": function () {
  24. return Toolbar.authenticateClicked();
  25. },*/
  26. "toolbar_button_record": function () {
  27. return toggleRecording();
  28. },
  29. "toolbar_button_security": function () {
  30. return Toolbar.openLockDialog();
  31. },
  32. "toolbar_button_link": function () {
  33. return Toolbar.openLinkDialog();
  34. },
  35. "toolbar_button_chat": function () {
  36. return BottomToolbar.toggleChat();
  37. },
  38. "toolbar_button_prezi": function () {
  39. return Prezi.openPreziDialog();
  40. },
  41. "toolbar_button_etherpad": function () {
  42. return Etherpad.toggleEtherpad(0);
  43. },
  44. "toolbar_button_desktopsharing": function () {
  45. return APP.desktopsharing.toggleScreenSharing();
  46. },
  47. "toolbar_button_fullScreen": function()
  48. {
  49. UIUtil.buttonClick("#fullScreen", "icon-full-screen icon-exit-full-screen");
  50. return Toolbar.toggleFullScreen();
  51. },
  52. "toolbar_button_sip": function () {
  53. return callSipButtonClicked();
  54. },
  55. "toolbar_button_settings": function () {
  56. PanelToggler.toggleSettingsMenu();
  57. },
  58. "toolbar_button_hangup": function () {
  59. return hangup();
  60. },
  61. "toolbar_button_login": function () {
  62. Toolbar.authenticateClicked();
  63. },
  64. "toolbar_button_logout": function () {
  65. // Ask for confirmation
  66. messageHandler.openTwoButtonDialog(
  67. "dialog.logoutTitle",
  68. null,
  69. "dialog.logoutQuestion",
  70. null,
  71. false,
  72. "dialog.Yes",
  73. function (evt, yes) {
  74. if (yes) {
  75. APP.xmpp.logout(function (url) {
  76. if (url) {
  77. window.location.href = url;
  78. } else {
  79. hangup();
  80. }
  81. });
  82. }
  83. });
  84. }
  85. };
  86. function hangup() {
  87. APP.xmpp.disposeConference();
  88. if(config.enableWelcomePage)
  89. {
  90. setTimeout(function()
  91. {
  92. window.localStorage.welcomePageDisabled = false;
  93. window.location.pathname = "/";
  94. }, 10000);
  95. }
  96. var title = APP.translation.generateTranslatonHTML(
  97. "dialog.sessTerminated");
  98. var msg = APP.translation.generateTranslatonHTML(
  99. "dialog.hungUp");
  100. var button = APP.translation.generateTranslatonHTML(
  101. "dialog.joinAgain");
  102. var buttons = [];
  103. buttons.push({title: button, value: true});
  104. UI.messageHandler.openDialog(
  105. title,
  106. msg,
  107. true,
  108. buttons,
  109. function(event, value, message, formVals)
  110. {
  111. window.location.reload();
  112. return false;
  113. }
  114. );
  115. }
  116. /**
  117. * Starts or stops the recording for the conference.
  118. */
  119. function toggleRecording() {
  120. APP.xmpp.toggleRecording(function (callback) {
  121. var msg = APP.translation.generateTranslatonHTML(
  122. "dialog.recordingToken");
  123. var token = APP.translation.translateString("dialog.token");
  124. APP.UI.messageHandler.openTwoButtonDialog(null, null, null,
  125. '<h2>' + msg + '</h2>' +
  126. '<input name="recordingToken" type="text" ' +
  127. ' data-i18n="[placeholder]dialog.token" ' +
  128. 'placeholder="' + token + '" autofocus>',
  129. false,
  130. "dialog.Save",
  131. function (e, v, m, f) {
  132. if (v) {
  133. var token = f.recordingToken;
  134. if (token) {
  135. callback(UIUtil.escapeHtml(token));
  136. }
  137. }
  138. },
  139. null,
  140. function () { },
  141. ':input:first'
  142. );
  143. }, Toolbar.setRecordingButtonState, Toolbar.setRecordingButtonState);
  144. }
  145. /**
  146. * Locks / unlocks the room.
  147. */
  148. function lockRoom(lock) {
  149. var currentSharedKey = '';
  150. if (lock)
  151. currentSharedKey = sharedKey;
  152. APP.xmpp.lockRoom(currentSharedKey, function (res) {
  153. // password is required
  154. if (sharedKey)
  155. {
  156. console.log('set room password');
  157. Toolbar.lockLockButton();
  158. }
  159. else
  160. {
  161. console.log('removed room password');
  162. Toolbar.unlockLockButton();
  163. }
  164. }, function (err) {
  165. console.warn('setting password failed', err);
  166. messageHandler.showError("dialog.lockTitle",
  167. "dialog.lockMessage");
  168. Toolbar.setSharedKey('');
  169. }, function () {
  170. console.warn('room passwords not supported');
  171. messageHandler.showError("dialog.warning",
  172. "dialog.passwordNotSupported");
  173. Toolbar.setSharedKey('');
  174. });
  175. };
  176. /**
  177. * Invite participants to conference.
  178. */
  179. function inviteParticipants() {
  180. if (roomUrl === null)
  181. return;
  182. var sharedKeyText = "";
  183. if (sharedKey && sharedKey.length > 0) {
  184. sharedKeyText =
  185. APP.translation.translateString("email.sharedKey",
  186. {sharedKey: sharedKey});
  187. sharedKeyText = sharedKeyText.replace(/\n/g, "%0D%0A");
  188. }
  189. var supportedBrowsers = "Chromium, Google Chrome " +
  190. APP.translation.translateString("email.and") + " Opera";
  191. var conferenceName = roomUrl.substring(roomUrl.lastIndexOf('/') + 1);
  192. var subject = APP.translation.translateString("email.subject",
  193. {appName:interfaceConfig.APP_NAME, conferenceName: conferenceName});
  194. var body = APP.translation.translateString("email.body",
  195. {appName:interfaceConfig.APP_NAME, sharedKeyText: sharedKeyText,
  196. roomUrl: roomUrl, supportedBrowsers: supportedBrowsers});
  197. body = body.replace(/\n/g, "%0D%0A");
  198. if (window.localStorage.displayname) {
  199. body += "%0D%0A%0D%0A" + window.localStorage.displayname;
  200. }
  201. if (interfaceConfig.INVITATION_POWERED_BY) {
  202. body += "%0D%0A%0D%0A--%0D%0Apowered by jitsi.org";
  203. }
  204. window.open("mailto:?subject=" + subject + "&body=" + body, '_blank');
  205. }
  206. function callSipButtonClicked()
  207. {
  208. var defaultNumber
  209. = config.defaultSipNumber ? config.defaultSipNumber : '';
  210. var sipMsg = APP.translation.generateTranslatonHTML(
  211. "dialog.sipMsg");
  212. messageHandler.openTwoButtonDialog(null, null, null,
  213. '<h2>' + sipMsg + '</h2>' +
  214. '<input name="sipNumber" type="text"' +
  215. ' value="' + defaultNumber + '" autofocus>',
  216. false,
  217. "dialog.Dial",
  218. function (e, v, m, f) {
  219. if (v) {
  220. var numberInput = f.sipNumber;
  221. if (numberInput) {
  222. APP.xmpp.dial(
  223. numberInput, 'fromnumber', UI.getRoomName(), sharedKey);
  224. }
  225. }
  226. },
  227. null, null, ':input:first'
  228. );
  229. }
  230. var Toolbar = (function (my) {
  231. my.init = function (ui) {
  232. for(var k in buttonHandlers)
  233. $("#" + k).click(buttonHandlers[k]);
  234. UI = ui;
  235. // Update login info
  236. APP.xmpp.addListener(
  237. AuthenticationEvents.IDENTITY_UPDATED,
  238. function (authenticationEnabled, userIdentity) {
  239. var loggedIn = false;
  240. if (userIdentity) {
  241. loggedIn = true;
  242. }
  243. Toolbar.showAuthenticateButton(authenticationEnabled);
  244. if (authenticationEnabled) {
  245. Toolbar.setAuthenticatedIdentity(userIdentity);
  246. Toolbar.showLoginButton(!loggedIn);
  247. Toolbar.showLogoutButton(loggedIn);
  248. }
  249. }
  250. );
  251. },
  252. /**
  253. * Sets shared key
  254. * @param sKey the shared key
  255. */
  256. my.setSharedKey = function (sKey) {
  257. sharedKey = sKey;
  258. };
  259. my.authenticateClicked = function () {
  260. Authentication.focusAuthenticationWindow();
  261. if (!APP.xmpp.isExternalAuthEnabled()) {
  262. Authentication.xmppAuthenticate();
  263. return;
  264. }
  265. // Get authentication URL
  266. if (!APP.xmpp.getMUCJoined()) {
  267. APP.xmpp.getLoginUrl(UI.getRoomName(), function (url) {
  268. // If conference has not been started yet - redirect to login page
  269. window.location.href = url;
  270. });
  271. } else {
  272. APP.xmpp.getPopupLoginUrl(UI.getRoomName(), function (url) {
  273. // Otherwise - open popup with authentication URL
  274. var authenticationWindow = Authentication.createAuthenticationWindow(
  275. function () {
  276. // On popup closed - retry room allocation
  277. APP.xmpp.allocateConferenceFocus(
  278. APP.UI.getRoomName(),
  279. function () { console.info("AUTH DONE"); }
  280. );
  281. }, url);
  282. if (!authenticationWindow) {
  283. messageHandler.openMessageDialog(
  284. null, "dialog.popupError");
  285. }
  286. });
  287. }
  288. };
  289. /**
  290. * Updates the room invite url.
  291. */
  292. my.updateRoomUrl = function (newRoomUrl) {
  293. roomUrl = newRoomUrl;
  294. // If the invite dialog has been already opened we update the information.
  295. var inviteLink = document.getElementById('inviteLinkRef');
  296. if (inviteLink) {
  297. inviteLink.value = roomUrl;
  298. inviteLink.select();
  299. document.getElementById('jqi_state0_buttonInvite').disabled = false;
  300. }
  301. };
  302. /**
  303. * Disables and enables some of the buttons.
  304. */
  305. my.setupButtonsFromConfig = function () {
  306. if (config.disablePrezi)
  307. {
  308. $("#prezi_button").css({display: "none"});
  309. }
  310. };
  311. /**
  312. * Opens the lock room dialog.
  313. */
  314. my.openLockDialog = function () {
  315. // Only the focus is able to set a shared key.
  316. if (!APP.xmpp.isModerator()) {
  317. if (sharedKey) {
  318. messageHandler.openMessageDialog(null,
  319. "dialog.passwordError");
  320. } else {
  321. messageHandler.openMessageDialog(null, "dialog.passwordError2");
  322. }
  323. } else {
  324. if (sharedKey) {
  325. messageHandler.openTwoButtonDialog(null, null,
  326. "dialog.passwordCheck",
  327. null,
  328. false,
  329. "dialog.Remove",
  330. function (e, v) {
  331. if (v) {
  332. Toolbar.setSharedKey('');
  333. lockRoom(false);
  334. }
  335. });
  336. } else {
  337. var msg = APP.translation.generateTranslatonHTML(
  338. "dialog.passwordMsg");
  339. var yourPassword = APP.translation.translateString(
  340. "dialog.yourPassword");
  341. messageHandler.openTwoButtonDialog(null, null, null,
  342. '<h2>' + msg + '</h2>' +
  343. '<input name="lockKey" type="text"' +
  344. ' data-i18n="[placeholder]dialog.yourPassword" ' +
  345. 'placeholder="' + yourPassword + '" autofocus>',
  346. false,
  347. "dialog.Save",
  348. function (e, v, m, f) {
  349. if (v) {
  350. var lockKey = f.lockKey;
  351. if (lockKey) {
  352. Toolbar.setSharedKey(
  353. UIUtil.escapeHtml(lockKey));
  354. lockRoom(true);
  355. }
  356. }
  357. },
  358. null, null, 'input:first'
  359. );
  360. }
  361. }
  362. };
  363. /**
  364. * Opens the invite link dialog.
  365. */
  366. my.openLinkDialog = function () {
  367. var inviteAttreibutes;
  368. if (roomUrl === null) {
  369. inviteAttreibutes = 'data-i18n="[value]roomUrlDefaultMsg" value="' +
  370. APP.translation.translateString("roomUrlDefaultMsg") + '"';
  371. } else {
  372. inviteAttreibutes = "value=\"" + encodeURI(roomUrl) + "\"";
  373. }
  374. messageHandler.openTwoButtonDialog("dialog.shareLink",
  375. null, null,
  376. '<input id="inviteLinkRef" type="text" ' +
  377. inviteAttreibutes + ' onclick="this.select();" readonly>',
  378. false,
  379. "dialog.Invite",
  380. function (e, v) {
  381. if (v) {
  382. if (roomUrl) {
  383. inviteParticipants();
  384. }
  385. }
  386. },
  387. function () {
  388. if (roomUrl) {
  389. document.getElementById('inviteLinkRef').select();
  390. } else {
  391. document.getElementById('jqi_state0_buttonInvite')
  392. .disabled = true;
  393. }
  394. }
  395. );
  396. };
  397. /**
  398. * Opens the settings dialog.
  399. * FIXME: not used ?
  400. */
  401. my.openSettingsDialog = function () {
  402. var settings1 = APP.translation.generateTranslatonHTML(
  403. "dialog.settings1");
  404. var settings2 = APP.translation.generateTranslatonHTML(
  405. "dialog.settings2");
  406. var settings3 = APP.translation.generateTranslatonHTML(
  407. "dialog.settings3");
  408. var yourPassword = APP.translation.translateString(
  409. "dialog.yourPassword");
  410. messageHandler.openTwoButtonDialog(null,
  411. '<h2>' + settings1 + '</h2>' +
  412. '<input type="checkbox" id="initMuted">' +
  413. settings2 + '<br/>' +
  414. '<input type="checkbox" id="requireNicknames">' +
  415. settings3 +
  416. '<input id="lockKey" type="text" placeholder="' + yourPassword +
  417. '" data-i18n="[placeholder]dialog.yourPassword" autofocus>',
  418. null,
  419. null,
  420. false,
  421. "dialog.Save",
  422. function () {
  423. document.getElementById('lockKey').focus();
  424. },
  425. function (e, v) {
  426. if (v) {
  427. if ($('#initMuted').is(":checked")) {
  428. // it is checked
  429. }
  430. if ($('#requireNicknames').is(":checked")) {
  431. // it is checked
  432. }
  433. /*
  434. var lockKey = document.getElementById('lockKey');
  435. if (lockKey.value) {
  436. setSharedKey(lockKey.value);
  437. lockRoom(true);
  438. }
  439. */
  440. }
  441. }
  442. );
  443. };
  444. /**
  445. * Toggles the application in and out of full screen mode
  446. * (a.k.a. presentation mode in Chrome).
  447. */
  448. my.toggleFullScreen = function () {
  449. var fsElement = document.documentElement;
  450. if (!document.mozFullScreen && !document.webkitIsFullScreen) {
  451. //Enter Full Screen
  452. if (fsElement.mozRequestFullScreen) {
  453. fsElement.mozRequestFullScreen();
  454. }
  455. else {
  456. fsElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
  457. }
  458. } else {
  459. //Exit Full Screen
  460. if (document.mozCancelFullScreen) {
  461. document.mozCancelFullScreen();
  462. } else {
  463. document.webkitCancelFullScreen();
  464. }
  465. }
  466. };
  467. /**
  468. * Unlocks the lock button state.
  469. */
  470. my.unlockLockButton = function () {
  471. if ($("#lockIcon").hasClass("icon-security-locked"))
  472. UIUtil.buttonClick("#lockIcon", "icon-security icon-security-locked");
  473. };
  474. /**
  475. * Updates the lock button state to locked.
  476. */
  477. my.lockLockButton = function () {
  478. if ($("#lockIcon").hasClass("icon-security"))
  479. UIUtil.buttonClick("#lockIcon", "icon-security icon-security-locked");
  480. };
  481. /**
  482. * Shows or hides authentication button
  483. * @param show <tt>true</tt> to show or <tt>false</tt> to hide
  484. */
  485. my.showAuthenticateButton = function (show) {
  486. if (show) {
  487. $('#authentication').css({display: "inline"});
  488. }
  489. else {
  490. $('#authentication').css({display: "none"});
  491. }
  492. };
  493. // Shows or hides the 'recording' button.
  494. my.showRecordingButton = function (show) {
  495. if (!config.enableRecording) {
  496. return;
  497. }
  498. if (show) {
  499. $('#recording').css({display: "inline"});
  500. }
  501. else {
  502. $('#recording').css({display: "none"});
  503. }
  504. };
  505. // Sets the state of the recording button
  506. my.setRecordingButtonState = function (isRecording) {
  507. var selector = $('#recordButton');
  508. if (isRecording) {
  509. selector.removeClass("icon-recEnable");
  510. selector.addClass("icon-recEnable active");
  511. } else {
  512. selector.removeClass("icon-recEnable active");
  513. selector.addClass("icon-recEnable");
  514. }
  515. };
  516. // Shows or hides SIP calls button
  517. my.showSipCallButton = function (show) {
  518. if (APP.xmpp.isSipGatewayEnabled() && show) {
  519. $('#sipCallButton').css({display: "inline-block"});
  520. } else {
  521. $('#sipCallButton').css({display: "none"});
  522. }
  523. };
  524. /**
  525. * Displays user authenticated identity name(login).
  526. * @param authIdentity identity name to be displayed.
  527. */
  528. my.setAuthenticatedIdentity = function (authIdentity) {
  529. if (authIdentity) {
  530. var selector = $('#toolbar_auth_identity');
  531. selector.css({display: "list-item"});
  532. selector.text(authIdentity);
  533. } else {
  534. $('#toolbar_auth_identity').css({display: "none"});
  535. }
  536. };
  537. /**
  538. * Shows/hides login button.
  539. * @param show <tt>true</tt> to show
  540. */
  541. my.showLoginButton = function (show) {
  542. if (show) {
  543. $('#toolbar_button_login').css({display: "list-item"});
  544. } else {
  545. $('#toolbar_button_login').css({display: "none"});
  546. }
  547. };
  548. /**
  549. * Shows/hides logout button.
  550. * @param show <tt>true</tt> to show
  551. */
  552. my.showLogoutButton = function (show) {
  553. if (show) {
  554. $('#toolbar_button_logout').css({display: "list-item"});
  555. } else {
  556. $('#toolbar_button_logout').css({display: "none"});
  557. }
  558. };
  559. /**
  560. * Sets the state of the button. The button has blue glow if desktop
  561. * streaming is active.
  562. * @param active the state of the desktop streaming.
  563. */
  564. my.changeDesktopSharingButtonState = function (active) {
  565. var button = $("#desktopsharing > a");
  566. if (active)
  567. {
  568. button.addClass("glow");
  569. }
  570. else
  571. {
  572. button.removeClass("glow");
  573. }
  574. };
  575. return my;
  576. }(Toolbar || {}));
  577. module.exports = Toolbar;