]> git.mxchange.org Git - friendica-addons.git/blob - webrtc/webrtc.php
Changed:
[friendica-addons.git] / webrtc / webrtc.php
1 <?php
2 /*
3  * Name: WebRTC Application
4  * Description: add a webrtc instance for video/audio
5  * Version: 1.0
6  * Author: Stephen Mahood <https://friends.mayfirst.org/profile/marxistvegan>
7  * Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
8  */
9 use Friendica\Core\Hook;
10 use Friendica\Core\Renderer;
11 use Friendica\DI;
12
13 function webrtc_install() {
14         Hook::register('app_menu', 'addon/webrtc/webrtc.php', 'webrtc_app_menu');
15 }
16
17 function webrtc_app_menu($a,&$b) {
18         $b['app_menu'][] = '<div class="app-title"><a href="webrtc">' . DI::l10n()->t('WebRTC Videochat') . '</a></div>';
19 }
20
21 function webrtc_addon_admin (&$a, &$o) {
22         $t = Renderer::getMarkupTemplate( "admin.tpl", "addon/webrtc/" );
23         $o = Renderer::replaceMacros( $t, [
24             '$submit' => DI::l10n()->t('Save Settings'),
25             '$webrtcurl' => ['webrtcurl', DI::l10n()->t('WebRTC Base URL'), DI::config()->get('webrtc','webrtcurl' ), DI::l10n()->t('Page your users will create a WebRTC chat room on. For example you could use https://live.mayfirst.org .')],
26         ]);
27 }
28 function webrtc_addon_admin_post (&$a) {
29         $url = trim($_POST['webrtcurl'] ?? '');
30             DI::config()->set('webrtc', 'webrtcurl', $url);
31 }
32
33 function webrtc_module() {
34         return;
35 }
36
37 function webrtc_content(&$a) {
38         $o = '';
39
40         /* landingpage to create chatrooms */
41         $webrtcurl = DI::config()->get('webrtc','webrtcurl');
42
43         /* embedd the landing page in an iframe */
44         $o .= '<h2>'.DI::l10n()->t('Video Chat').'</h2>';
45         $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>';
46         if ($webrtcurl == '') {
47             $o .= '<p>'.DI::l10n()->t('Please contact your friendica admin and send a reminder to configure the WebRTC addon.').'</p>';
48         } else {
49             $o .= '<iframe src="'.$webrtcurl.'" width="600px" height="600px"></iframe>';
50         }
51
52
53         return $o;
54 }