aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-10-25 14:59:31 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2011-10-25 14:59:31 +0200
commitafce790e56ba7cd4c5c049e7c3a9aac20846981e (patch)
tree648414c3420009049bdd2f5ebc22777a57adc199 /include
parentae12074337c6f5465c8abab8b3205daeb8797a0b (diff)
downloadvolse-hubzilla-afce790e56ba7cd4c5c049e7c3a9aac20846981e.tar.gz
volse-hubzilla-afce790e56ba7cd4c5c049e7c3a9aac20846981e.tar.bz2
volse-hubzilla-afce790e56ba7cd4c5c049e7c3a9aac20846981e.zip
oembed: wrap in iframe only html from remote service
Diffstat (limited to 'include')
-rw-r--r--include/bbcode.php2
-rw-r--r--include/oembed.php12
2 files changed, 7 insertions, 7 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index e20b2478d..d7b64c0cf 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -19,7 +19,7 @@ function tryoembed($match){
if ($o->type=="error") return $match[0];
$html = oembed_format_object($o);
- return oembed_iframe($html,$o->width,$o->height);
+ return $html; //oembed_iframe($html,$o->width,$o->height);
}
diff --git a/include/oembed.php b/include/oembed.php
index 71b62b839..3e86627e4 100644
--- a/include/oembed.php
+++ b/include/oembed.php
@@ -4,7 +4,7 @@ function oembed_replacecb($matches){
$embedurl=$matches[1];
$j = oembed_fetch_url($embedurl);
$s = oembed_format_object($j);
- return oembed_iframe($s,$j->width,$j->height);
+ return $s;//oembed_iframe($s,$j->width,$j->height);
}
@@ -56,6 +56,7 @@ function oembed_fetch_url($embedurl){
function oembed_format_object($j){
$embedurl = $j->embedurl;
+ $jhtml = oembed_iframe($j->html,$j->width,$j->height );
$ret="<span class='oembed ".$j->type."'>";
switch ($j->type) {
case "video": {
@@ -68,14 +69,14 @@ function oembed_format_object($j){
$tpl=get_markup_template('oembed_video.tpl');
$ret.=replace_macros($tpl, array(
'$embedurl'=>$embedurl,
- '$escapedhtml'=>urlencode($j->html),
+ '$escapedhtml'=>base64_encode($jhtml),
'$tw'=>$tw,
'$th'=>$th,
'$turl'=>$j->thumbnail_url,
));
} else {
- $ret=$j->html;
+ $ret=$jhtml;
}
$ret.="<br>";
}; break;
@@ -88,12 +89,12 @@ function oembed_format_object($j){
}; break;
case "rich": {
// not so safe..
- $ret.= $j->html;
+ $ret.= $jhtml;
}; break;
}
// add link to source if not present in "rich" type
- if ( $j->type!='rich' || !strpos($ret,$embedurl) ){
+ if ( $j->type!='rich' || !strpos($j->html,$embedurl) ){
$embedlink = (isset($j->title))?$j->title:$embedurl;
$ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
if (isset($j->author_name)) $ret.=" by ".$j->author_name;
@@ -107,7 +108,6 @@ function oembed_format_object($j){
}
function oembed_iframe($src,$width,$height) {
-
if(! $width || strstr($width,'%'))
$width = '640';
if(! $height || strstr($height,'%'))