]> git.mxchange.org Git - friendica.git/blob - mod/oembed.php
Merge pull request #2151 from annando/1512-misconfigured-friendica
[friendica.git] / mod / oembed.php
1 <?php
2 require_once("include/oembed.php");
3
4 function oembed_content(&$a){
5         // logger('mod_oembed ' . $a->query_string, LOGGER_ALL);
6
7         if ($a->argv[1]=='b2h'){
8                 $url = array( "", trim(hex2bin($_REQUEST['url'])));
9                 echo oembed_replacecb($url);
10                 killme();
11         }
12
13         if ($a->argv[1]=='h2b'){
14                 $text = trim(hex2bin($_REQUEST['text']));
15                 echo oembed_html2bbcode($text);
16                 killme();
17         }
18
19         if ($a->argc == 2){
20                 echo "<html><body>";
21                 $url = base64url_decode($a->argv[1]);
22                 $j = oembed_fetch_url($url);
23
24                 echo $j->html;
25 //              logger('mod-oembed ' . $j->html, LOGGER_ALL);
26                 echo "</body></html>";
27         }
28         killme();
29 }