webrtc is no longer launched as an iFrame, but as a browser window.

With the iFrame solution there could be problems activating the microphone settings. Therefore, a separate browser window is now opened.
This commit is contained in:
loma-one 2023-12-10 17:23:45 +01:00
parent 5a3dc93c0d
commit e86b7ada2f
1 changed files with 9 additions and 4 deletions

View File

@ -2,9 +2,10 @@
/*
* Name: WebRTC Application
* Description: add a webrtc instance for video/audio
* Version: 1.0
* Version: 1.1
* Author: Stephen Mahood <https://friends.mayfirst.org/profile/marxistvegan>
* Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
* Author: Matthias Ebers <https://loma.ml/profile/feb>
*/
use Friendica\App;
@ -54,13 +55,17 @@ function webrtc_content(): string
/* landingpage to create chatrooms */
$webrtcurl = DI::config()->get('webrtc','webrtcurl');
/* embedd the landing page in an iframe */
/* open the landing page in a new browser window without controls */
$o .= '<script>
window.open("' . $webrtcurl . '", "_blank", "toolbar=no,scrollbars=no,resizable=no,top=100,left=100,width=740,height=740");
</script>';
$o .= '<h2>'.DI::l10n()->t('Video Chat').'</h2>';
$o .= '<p>'.DI::l10n()->t('WebRTC is a video and audio conferencing tool that works in all modern browsers. Just create a new chat room and send the link to someone you want to chat with.').'</p>';
if ($webrtcurl == '') {
$o .= '<p>'.DI::l10n()->t('Please contact your friendica admin and send a reminder to configure the WebRTC addon.').'</p>';
} else {
$o .= '<iframe src="'.$webrtcurl.'" width="600px" height="600px"></iframe>';
}
return $o;