2013-10-29 09:26:48 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* RssBridgeInstagram
|
|
|
|
* Returns the newest photos
|
|
|
|
*
|
|
|
|
* @name Instagram Bridge
|
|
|
|
* @description Returns the newest images
|
|
|
|
* @use1(u="username")
|
|
|
|
*/
|
|
|
|
class InstagramBridge extends BridgeAbstract{
|
|
|
|
|
|
|
|
private $request;
|
|
|
|
|
|
|
|
public function collectData(array $param){
|
|
|
|
$html = '';
|
|
|
|
if (isset($param['u'])) { /* user timeline mode */
|
|
|
|
$this->request = $param['u'];
|
2013-10-29 15:59:22 +01:00
|
|
|
$html = file_get_html('http://instagram.com/'.urlencode($this->request)) or $this->returnError('Could not request Instagram.', 404);
|
2013-10-29 09:26:48 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this->returnError('You must specify a Instagram username (?u=...).', 400);
|
|
|
|
}
|
|
|
|
|
2013-10-29 15:59:22 +01:00
|
|
|
$innertext = null;
|
|
|
|
|
|
|
|
foreach($html->find('script') as $script)
|
|
|
|
{
|
|
|
|
if ('' === $script->innertext) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$pos = strpos($script->innertext, 'window._jscalls');
|
|
|
|
if (false === $pos)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$innertext = $script->innertext;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$json = trim(substr($innertext, $pos+15), ' =;');
|
|
|
|
$pos = strpos($json, '}]],');
|
|
|
|
$json = substr($json, $pos+4, -4);
|
|
|
|
$data = json_decode($json);
|
2013-10-29 10:40:31 +01:00
|
|
|
|
2013-10-29 15:59:22 +01:00
|
|
|
$userMedia = $data[2][0]->props->userMedia;
|
2013-10-29 10:40:31 +01:00
|
|
|
|
2013-10-29 15:59:22 +01:00
|
|
|
|
|
|
|
foreach($userMedia as $media)
|
2013-10-29 09:26:48 +01:00
|
|
|
{
|
2013-10-29 15:59:22 +01:00
|
|
|
$image = $media->images->standard_resolution;
|
|
|
|
|
|
|
|
|
|
|
|
$item = new \Item();
|
|
|
|
$item->uri = $media->link;
|
|
|
|
$item->content = '<img src="' . htmlentities($image->url) . '" width="'.htmlentities($image->width).'" height="'.htmlentities($image->height).'" />';
|
|
|
|
if (isset($media->caption))
|
2013-10-29 09:26:48 +01:00
|
|
|
{
|
2013-10-29 15:59:22 +01:00
|
|
|
$item->title = $media->caption->text;
|
|
|
|
} else {
|
|
|
|
$item->title = basename($image->url);
|
2013-10-29 09:26:48 +01:00
|
|
|
}
|
2013-10-29 15:59:22 +01:00
|
|
|
$item->timestamp = $media->created_time;
|
|
|
|
$this->items[] = $item;
|
|
|
|
|
2013-10-29 09:26:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return (!empty($this->request) ? $this->request .' - ' : '') .'Instagram Bridge';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
|
|
|
return 'http://instagram.com/';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
2013-10-29 15:59:22 +01:00
|
|
|
return 0;
|
2013-10-29 09:26:48 +01:00
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
|
|
|
}
|