[Pinterest] Cleanup code

This commit is contained in:
logmanoriginal 2016-09-17 19:09:33 +02:00
parent 1819943451
commit c1cc4da8ef

View file

@ -25,7 +25,6 @@ class PinterestBridge extends BridgeAbstract{
)
);
public function collectData(){
$html = $this->getSimpleHTMLDOM($this->getURI());
if(!$html){
@ -37,24 +36,21 @@ class PinterestBridge extends BridgeAbstract{
}
}
foreach($html->find('div.pinWrapper') as $div)
{
foreach($html->find('div.pinWrapper') as $div){
$a = $div->find('a.pinImageWrapper', 0);
$img = $a->find('img', 0);
$item = array();
$item['uri'] = $this->getURI() . $a->getAttribute('href');
$item['content'] = '<img src="' . htmlentities(str_replace('/236x/', '/736x/', $img->getAttribute('src'))) . '" alt="" />';
$item['content'] = '<img src="'
. htmlentities(str_replace('/236x/', '/736x/', $img->getAttribute('src')))
. '" alt="" />';
if ($this->queriedContext==='From search')
{
if($this->queriedContext === 'From search'){
$avatar = $div->find('div.creditImg', 0)->find('img', 0);
$avatar = $avatar->getAttribute('data-src');
$avatar = str_replace("\\", "", $avatar);
$username = $div->find('div.creditName', 0);
$board = $div->find('div.creditTitle', 0);
@ -62,15 +58,18 @@ class PinterestBridge extends BridgeAbstract{
$item['fullname'] = $board->innertext;
$item['avatar'] = $avatar;
$item['content'] .= '<br /><img align="left" style="margin: 2px 4px;" src="'.htmlentities($item['avatar']).'" /> <strong>'.$item['username'].'</strong>';
$item['content'] .= '<br />'.$item['fullname'];
$item['content'] .= '<br /><img align="left" style="margin: 2px 4px;" src="'
. htmlentities($item['avatar'])
. '" /> <strong>'
. $item['username']
. '</strong>'
. '<br />'
. $item['fullname'];
}
$item['title'] = $img->getAttribute('alt');
//$item['timestamp'] = $media->created_time;
$this->items[] = $item;
}
}
@ -83,7 +82,6 @@ class PinterestBridge extends BridgeAbstract{
$uri = self::URI . 'search/?q=' . urlencode($this->getInput('q'));
break;
}
return $uri;
}