Merge pull request #822 from tobiasd/20190311-lng
[friendica-addons.git/.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\Config;
10 use Friendica\Core\Hook;
11 use Friendica\Core\L10n;
12 use Friendica\Core\Renderer;
13 use Friendica\Util\Strings;
14
15 function webrtc_install() {
16         Hook::register('app_menu', 'addon/webrtc/webrtc.php', 'webrtc_app_menu');
17 }
18
19 function webrtc_uninstall() {
20         Hook::unregister('app_menu', 'addon/webrtc/webrtc.php', 'webrtc_app_menu');
21
22 }
23
24 function webrtc_app_menu($a,&$b) {
25         $b['app_menu'][] = '<div class="app-title"><a href="webrtc">' . L10n::t('WebRTC Videochat') . '</a></div>';
26 }
27
28 function webrtc_addon_admin (&$a, &$o) {
29         $t = Renderer::getMarkupTemplate( "admin.tpl", "addon/webrtc/" );
30         $o = Renderer::replaceMacros( $t, [
31             '$submit' => L10n::t('Save Settings'),
32             '$webrtcurl' => ['webrtcurl', L10n::t('WebRTC Base URL'), Config::get('webrtc','webrtcurl' ), L10n::t('Page your users will create a WebRTC chat room on. For example you could use https://live.mayfirst.org .')],
33         ]);
34 }
35 function webrtc_addon_admin_post (&$a) {
36         $url = (!empty($_POST['webrtcurl']) ? Strings::escapeTags(trim($_POST['webrtcurl'])) : '');
37             Config::set('webrtc', 'webrtcurl', $url);
38             info(L10n::t('Settings updated.'). EOL);
39 }
40
41 function webrtc_module() {
42         return;
43 }
44
45 function webrtc_content(&$a) {
46         $o = '';
47
48         /* landingpage to create chatrooms */
49         $webrtcurl = Config::get('webrtc','webrtcurl');
50
51         /* embedd the landing page in an iframe */
52         $o .= '<h2>'.L10n::t('Video Chat').'</h2>';
53         $o .= '<p>'.L10n::t('WebRTC is a video and audio conferencing tool that works with Firefox (version 21 and above) and Chrome/Chromium (version 25 and above). Just create a new chat room and send the link to someone you want to chat with.').'</p>';
54         if ($webrtcurl == '') {
55             $o .= '<p>'.L10n::t('Please contact your friendica admin and send a reminder to configure the WebRTC addon.').'</p>';
56         } else {
57             $o .= '<iframe src="'.$webrtcurl.'" width="600px" height="600px"></iframe>';
58         }
59
60
61         return $o;
62 }
63 ?>