Rss-Bridge/bridges/InstagramBridge.php

78 lines
1.9 KiB
PHP
Raw Normal View History

2013-10-29 09:26:48 +01:00
<?php
class InstagramBridge extends BridgeAbstract{
public function loadMetadatas() {
$this->maintainer = "pauder";
$this->name = "Instagram Bridge";
$this->uri = "http://instagram.com/";
$this->description = "Returns the newest images";
$this->parameters[] = array(
'u'=>array(
'name'=>'username',
'required'=>true
)
);
}
public function collectData(){
$html = $this->getSimpleHTMLDOM($this->getURI())
or $this->returnServerError('Could not request Instagram.');
2013-10-29 15:59:22 +01:00
$innertext = null;
2013-10-29 15:59:22 +01:00
foreach($html->find('script') as $script)
{
if ('' === $script->innertext) {
continue;
}
$pos = strpos(trim($script->innertext), 'window._sharedData');
if (0 !== $pos)
2013-10-29 15:59:22 +01:00
{
continue;
}
2013-10-29 15:59:22 +01:00
$innertext = $script->innertext;
break;
}
$json = trim(substr($innertext, $pos+18), ' =;');
2013-10-29 15:59:22 +01:00
$data = json_decode($json);
$userMedia = $data->entry_data->ProfilePage[0]->user->media->nodes;
2013-10-29 15:59:22 +01:00
foreach($userMedia as $media)
2013-10-29 09:26:48 +01:00
{
$item = array();
$item['uri'] = "https://instagram.com/p/".$media->code."/";
$item['content'] = '<img src="' . htmlentities($media->display_src) . '" />';
2013-10-29 15:59:22 +01:00
if (isset($media->caption))
2013-10-29 09:26:48 +01:00
{
$item['title'] = $media->caption;
2013-10-29 15:59:22 +01:00
} else {
$item['title'] = basename($media->display_src);
2013-10-29 09:26:48 +01:00
}
$item['timestamp'] = $media->date;
2013-10-29 15:59:22 +01:00
$this->items[] = $item;
2013-10-29 09:26:48 +01:00
}
}
public function getName(){
$param=$this->parameters[$this->queriedContext];
return $this->param['u']['value'] .' - Instagram Bridge';
}
public function getURI(){
$param=$this->parameters[$this->queriedContext];
return $this->uri.urlencode($param['u']['value']);
2013-10-29 09:26:48 +01:00
}
}