aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Oembed.php
blob: aee5ea0796fee850b3b56b65337ee69d8e95d22c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
namespace Zotlabs\Module;
require_once("include/oembed.php");


class Oembed extends \Zotlabs\Web\Controller {

	function init(){
		// logger('mod_oembed ' . \App::$query_string, LOGGER_ALL);
	
		if(argc() > 1) {
			if (argv(1) == 'b2h'){
				$url = array( "", trim(hex2bin($_REQUEST['url'])));
				echo oembed_replacecb($url);
				killme();
			}
		
			elseif (argv(1) == 'h2b'){
				$text = trim(hex2bin($_REQUEST['text']));
				echo oembed_html2bbcode($text);
				killme();
			}
		
			else {
				echo "<html><head><base target=\"_blank\" rel=\"nofollow noopener\" /></head><body>";
				$src = base64url_decode(argv(1));
				$j = oembed_fetch_url($src);
				echo $j['html'];
	//		    logger('mod-oembed ' . $h, LOGGER_ALL);
				echo "</body></html>";
			}
		}
		killme();
	}
	
}