forked from blallo/rss-bridge
614d425da4
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
77 lines
1.9 KiB
PHP
77 lines
1.9 KiB
PHP
<?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.');
|
|
|
|
$innertext = null;
|
|
|
|
foreach($html->find('script') as $script)
|
|
{
|
|
if ('' === $script->innertext) {
|
|
continue;
|
|
}
|
|
|
|
$pos = strpos(trim($script->innertext), 'window._sharedData');
|
|
if (0 !== $pos)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
$innertext = $script->innertext;
|
|
break;
|
|
}
|
|
|
|
$json = trim(substr($innertext, $pos+18), ' =;');
|
|
$data = json_decode($json);
|
|
|
|
|
|
|
|
$userMedia = $data->entry_data->ProfilePage[0]->user->media->nodes;
|
|
|
|
foreach($userMedia as $media)
|
|
{
|
|
|
|
$item = array();
|
|
$item['uri'] = "https://instagram.com/p/".$media->code."/";
|
|
$item['content'] = '<img src="' . htmlentities($media->display_src) . '" />';
|
|
if (isset($media->caption))
|
|
{
|
|
$item['title'] = $media->caption;
|
|
} else {
|
|
$item['title'] = basename($media->display_src);
|
|
}
|
|
$item['timestamp'] = $media->date;
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
}
|
|
|
|
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']);
|
|
}
|
|
}
|
|
|