2013-10-29 09:26:48 +01:00
|
|
|
<?php
|
2017-02-11 16:16:56 +01:00
|
|
|
class InstagramBridge extends BridgeAbstract {
|
|
|
|
|
|
|
|
const MAINTAINER = 'pauder';
|
|
|
|
const NAME = 'Instagram Bridge';
|
2017-03-21 21:27:12 +01:00
|
|
|
const URI = 'https://instagram.com/';
|
2017-02-11 16:16:56 +01:00
|
|
|
const DESCRIPTION = 'Returns the newest images';
|
|
|
|
|
|
|
|
const PARAMETERS = array( array(
|
|
|
|
'u' => array(
|
|
|
|
'name' => 'username',
|
|
|
|
'required' => true
|
2017-07-25 15:10:06 +02:00
|
|
|
),
|
|
|
|
'media_type' => array(
|
|
|
|
'name' => 'Media type',
|
|
|
|
'type' => 'list',
|
|
|
|
'required' => false,
|
|
|
|
'values' => array(
|
|
|
|
'Both' => 'all',
|
|
|
|
'Video' => 'video',
|
|
|
|
'Picture' => 'picture'
|
|
|
|
),
|
|
|
|
'defaultValue' => 'all'
|
2017-02-11 16:16:56 +01:00
|
|
|
)
|
|
|
|
));
|
|
|
|
|
|
|
|
public function collectData(){
|
|
|
|
$html = getSimpleHTMLDOM($this->getURI())
|
|
|
|
or returnServerError('Could not request Instagram.');
|
|
|
|
|
|
|
|
$innertext = null;
|
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
foreach($html->find('script') as $script) {
|
|
|
|
if('' === $script->innertext) {
|
2017-02-11 16:16:56 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$pos = strpos(trim($script->innertext), 'window._sharedData');
|
2017-07-29 19:28:00 +02:00
|
|
|
if(0 !== $pos) {
|
2017-02-11 16:16:56 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$innertext = $script->innertext;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$json = trim(substr($innertext, $pos + 18), ' =;');
|
|
|
|
$data = json_decode($json);
|
|
|
|
|
|
|
|
$userMedia = $data->entry_data->ProfilePage[0]->user->media->nodes;
|
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
foreach($userMedia as $media) {
|
2017-07-25 15:10:06 +02:00
|
|
|
// Check media type
|
2017-07-29 19:28:00 +02:00
|
|
|
switch($this->getInput('media_type')) {
|
2017-07-25 15:10:06 +02:00
|
|
|
case 'all': break;
|
|
|
|
case 'video':
|
|
|
|
if($media->is_video === false) continue 2;
|
|
|
|
break;
|
|
|
|
case 'picture':
|
|
|
|
if($media->is_video === true) continue 2;
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = self::URI . 'p/' . $media->code . '/';
|
|
|
|
$item['content'] = '<img src="' . htmlentities($media->display_src) . '" />';
|
2017-07-29 19:28:00 +02:00
|
|
|
if (isset($media->caption)) {
|
2017-02-11 16:16:56 +01:00
|
|
|
$item['title'] = $media->caption;
|
|
|
|
} else {
|
|
|
|
$item['title'] = basename($media->display_src);
|
|
|
|
}
|
|
|
|
$item['timestamp'] = $media->date;
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
2017-07-29 19:28:00 +02:00
|
|
|
if(!is_null($this->getInput('u'))) {
|
2017-02-14 22:20:55 +01:00
|
|
|
return $this->getInput('u') . ' - Instagram Bridge';
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getName();
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
2017-07-29 19:28:00 +02:00
|
|
|
if(!is_null($this->getInput('u'))) {
|
2017-02-14 22:36:33 +01:00
|
|
|
return self::URI . urlencode($this->getInput('u'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getURI();
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
2013-10-29 09:26:48 +01:00
|
|
|
}
|