oembed plugin - New: dotsub.com video service. podomatic podcast

service
This commit is contained in:
Grischa Brockhaus 2012-02-18 21:45:59 +01:00
parent 644c566091
commit e2930ee2dd
4 changed files with 117 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Version 1.07 (brockhaus)
-----------------------
* New: dotsub.com video service. podomatic podcast service
Version 1.06 (brockhaus)
-----------------------
* New AudioBoo resolver supporting the 3 different players of AudioBoo (configurable wich).

View file

@ -0,0 +1,101 @@
<?php
/**
* This is a kind of example class how to do a oembed provider for a service, that doesn't support oembed.
* This provider parses the podomatic URL and creates an iframe player for this.
*
* Converting is done in the getEmbed function. This is the main code.
* Everything else is only type converting that should be nearly the same in any custom provider
*
* All *.class.php files found in the customs directory will be included automatically
*
* After implementing the provider you have to add it to the providers.xml like this:
* <provider>
* <name>Podomatic Minicasts</name>
* <url>http://minicasts.podomatic.com/play/*</url>
* <class>PodomaticProvider</class>
* </provider>
*
* @author Grischa Brockhaus
*
*/
class PodomaticProvider extends EmbedProvider {
/**
* This is the main function calling the Posterous postly API and converting it into a OEmbed object
* @param string $url post.ly url
* @return OEmbed the embed object
*/
public function getEmbed($url){
// http://minicasts.podomatic.com/play/1620677/2976197
if(preg_match("/minicasts\.podomatic\.com\/play\/(\d+)\/(\d+)/",$url,$matches)){
$boo_id=$matches[2];
}
if (empty($boo_id)) return null;
$width = 440;
$height = 205;
$player = "<iframe height='$height' width='$width' frameborder='0' marginheight='0' marginwidth='0' scrolling='no' src='http://minicasts.podomatic.com/embed/frame/posting/$boo_id?json_url=http%3A%2F%2Fminicasts.podomatic.com%2Fentry%2Fembed_params%2F$boo_id%3Fcolor%3Dadadad%26autoPlay%3Dfalse%26width%3D$width%26height%3D$height%26objembed%3D0' allowfullscreen></iframe>";
$oembed = new RichEmbed();
$oembed->type='rich';
$oembed->html = $player;
$oembed->width="$width";
$oembed->height="$height";
$oembed->url=$url;
$oembed->version='1.0';
$oembed->provider_name="Podomatic Minicast";
$oembed->provider_url="http://www.podomatic.com";
$oembed->title = 'Podomatic Minicast';
return $oembed;
}
// === here comes the regular stuff for providers, what is very similar in any custom provider =========
private function provideXML($url){
$string="";
$oembed = $this->getEmbed($url);
if (isset($oembed)) {
foreach($this->getEmbed($url) as $key=>$value){
if(isset($value)&& $value!="") $string.=" <".$key.">".$value."</".$key.">\n";
}
$string="<oembed>\n".$string."</oembed>";
}
return $string;
}
private function provideObject($url){
return $this->getEmbed($url);
}
private function provideJSON($url){
$oembed = $this->getEmbed($url);
if (isset($oembed)) return json_encode($this->getEmbed($url));
else return null;
}
private function provideSerialized($url){
$oembed = $this->getEmbed($url);
if (isset($oembed)) return serialize($this->getEmbed($url));
else return null;
}
public function provide($url,$format="json"){
if($format=="xml"){
return $this->provideXML($url);
} else if ($format=="object"){
return $this->provideObject($url);
} else if ($format=="serialized"){
return $this->provideSerialized($url);
} else {
return $this->provideJSON($url);;
}
}
public function match($url) {
return preg_match("/minicasts\.podomatic\.com\/play\/(\d+)\/(\d+)/",$url);
}
/**
* Constructor
* Enter description here ...
* @param simplexml $config holds the entry in the providers.xml for this Provider. You can add more parameters parsed here
*/
public function __construct($config){
parent::__construct("http://minicasts.podomatic.com/play","");
}
}

View file

@ -34,6 +34,11 @@
<url>http://*.photobucket.com/(albums|groups)/*</url>
<endpoint>http://photobucket.com/oembed</endpoint>
</provider>
<provider>
<name>DotSub.com</name>
<url>http://dotsub.com/view//*</url>
<endpoint>http://dotsub.com/services/oembed/</endpoint>
</provider>
<provider>
<name>Official.fm (tracks and playlist)</name>
@ -131,6 +136,11 @@
<url>http://(audio)?boo.fm/boos/*</url>
<class>AudioBooProvider</class>
</provider>
<provider>
<name>Podomatic Minicasts</name>
<url>http://minicasts.podomatic.com/play/*</url>
<class>PodomaticProvider</class>
</provider>
<!-- noembed providers =========================================== -->

View file

@ -30,7 +30,7 @@ class serendipity_event_oembed extends serendipity_event
$propbag->add('description', PLUGIN_EVENT_OEMBED_DESC);
$propbag->add('stackable', false);
$propbag->add('author', 'Grischa Brockhaus');
$propbag->add('version', '1.06');
$propbag->add('version', '1.07');
$propbag->add('requirements', array(
'serendipity' => '0.8',
'smarty' => '2.6.7',
@ -199,6 +199,7 @@ class serendipity_event_oembed extends serendipity_event
catch (ErrorException $e) {
// Timeout in most cases
//return $e;
//print_r($e);
}
}
return $obj;