2013-10-29 09:26:48 +01:00
|
|
|
<?php
|
|
|
|
class InstagramBridge extends BridgeAbstract{
|
2015-11-05 16:50:18 +01:00
|
|
|
|
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "pauder";
|
|
|
|
$this->name = "Instagram Bridge";
|
|
|
|
$this->uri = "http://instagram.com/";
|
|
|
|
$this->description = "Returns the newest images";
|
|
|
|
|
2016-08-22 01:25:56 +02:00
|
|
|
$this->parameters[] = array(
|
2016-08-27 14:54:10 +02:00
|
|
|
'u'=>array(
|
|
|
|
'name'=>'username',
|
|
|
|
'required'=>true
|
|
|
|
)
|
2016-08-22 01:25:56 +02:00
|
|
|
);
|
2015-11-05 16:50:18 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2016-08-27 14:57:43 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($this->getURI())
|
|
|
|
or $this->returnServerError('Could not request Instagram.');
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2013-10-29 15:59:22 +01:00
|
|
|
$innertext = null;
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2013-10-29 15:59:22 +01:00
|
|
|
foreach($html->find('script') as $script)
|
|
|
|
{
|
|
|
|
if ('' === $script->innertext) {
|
|
|
|
continue;
|
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2014-01-30 11:55:39 +01:00
|
|
|
$pos = strpos(trim($script->innertext), 'window._sharedData');
|
|
|
|
if (0 !== $pos)
|
2013-10-29 15:59:22 +01:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2013-10-29 15:59:22 +01:00
|
|
|
$innertext = $script->innertext;
|
|
|
|
break;
|
|
|
|
}
|
2015-06-29 11:47:54 +02:00
|
|
|
|
2014-01-30 11:55:39 +01:00
|
|
|
$json = trim(substr($innertext, $pos+18), ' =;');
|
2013-10-29 15:59:22 +01:00
|
|
|
$data = json_decode($json);
|
2016-07-08 19:06:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-29 11:47:54 +02:00
|
|
|
$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
|
|
|
{
|
2014-01-30 11:55:39 +01:00
|
|
|
|
2016-08-22 18:55:59 +02: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
|
|
|
{
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['title'] = $media->caption;
|
2013-10-29 15:59:22 +01:00
|
|
|
} else {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['title'] = basename($media->display_src);
|
2013-10-29 09:26:48 +01:00
|
|
|
}
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['timestamp'] = $media->date;
|
2013-10-29 15:59:22 +01:00
|
|
|
$this->items[] = $item;
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2013-10-29 09:26:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
2016-08-27 14:57:43 +02:00
|
|
|
$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
|
|
|
}
|
|
|
|
}
|
2016-08-27 14:57:43 +02:00
|
|
|
|