forked from blallo/rss-bridge
a4b9611e66
- Do not add spaces after opening or before closing parenthesis // Wrong if( !is_null($var) ) { ... } // Right if(!is_null($var)) { ... } - Add space after closing parenthesis // Wrong if(true){ ... } // Right if(true) { ... } - Add body into new line - Close body in new line // Wrong if(true) { ... } // Right if(true) { ... } Notice: Spaces after keywords are not detected: // Wrong (not detected) // -> space after 'if' and missing space after 'else' if (true) { ... } else{ ... } // Right if(true) { ... } else { ... }
93 lines
2.1 KiB
PHP
93 lines
2.1 KiB
PHP
<?php
|
|
class InstagramBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'pauder';
|
|
const NAME = 'Instagram Bridge';
|
|
const URI = 'https://instagram.com/';
|
|
const DESCRIPTION = 'Returns the newest images';
|
|
|
|
const PARAMETERS = array( array(
|
|
'u' => array(
|
|
'name' => 'username',
|
|
'required' => true
|
|
),
|
|
'media_type' => array(
|
|
'name' => 'Media type',
|
|
'type' => 'list',
|
|
'required' => false,
|
|
'values' => array(
|
|
'Both' => 'all',
|
|
'Video' => 'video',
|
|
'Picture' => 'picture'
|
|
),
|
|
'defaultValue' => 'all'
|
|
)
|
|
));
|
|
|
|
public function collectData(){
|
|
$html = getSimpleHTMLDOM($this->getURI())
|
|
or 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) {
|
|
// Check media type
|
|
switch($this->getInput('media_type')) {
|
|
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;
|
|
}
|
|
|
|
$item = array();
|
|
$item['uri'] = self::URI . '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(){
|
|
if(!is_null($this->getInput('u'))) {
|
|
return $this->getInput('u') . ' - Instagram Bridge';
|
|
}
|
|
|
|
return parent::getName();
|
|
}
|
|
|
|
public function getURI(){
|
|
if(!is_null($this->getInput('u'))) {
|
|
return self::URI . urlencode($this->getInput('u'));
|
|
}
|
|
|
|
return parent::getURI();
|
|
}
|
|
}
|