This commit is contained in:
logmanoriginal 2016-09-17 20:13:31 +02:00
commit e0407326c3

View file

@ -1,5 +1,5 @@
<?php <?php
class PinterestBridge extends BridgeAbstract{ class PinterestBridge extends BridgeAbstract {
const MAINTAINER = "pauder"; const MAINTAINER = "pauder";
const NAME = "Pinterest Bridge"; const NAME = "Pinterest Bridge";
@ -8,26 +8,25 @@ class PinterestBridge extends BridgeAbstract{
const PARAMETERS = array( const PARAMETERS = array(
'By username and board' => array( 'By username and board' => array(
'u'=>array( 'u' => array(
'name'=>'username', 'name' => 'username',
'required'=>true 'required' => true
), ),
'b'=>array( 'b' => array(
'name'=>'board', 'name' => 'board',
'required'=>true 'required' => true
) )
), ),
'From search' => array( 'From search' => array(
'q'=>array( 'q' => array(
'name'=>'Keyword', 'name' => 'Keyword',
'required'=>true 'required' => true
) )
) )
); );
public function collectData(){ public function collectData(){
$html = $this->getSimpleHTMLDOM($this->getURI()) ; $html = $this->getSimpleHTMLDOM($this->getURI());
if(!$html){ if(!$html){
switch($this->queriedContext){ switch($this->queriedContext){
case 'By username and board': case 'By username and board':
@ -37,65 +36,86 @@ class PinterestBridge extends BridgeAbstract{
} }
} }
foreach($html->find('div.pinWrapper') as $div) if($this->queriedContext === 'From search'){
{ foreach($html->find('div.pinWrapper') as $div){
$a = $div->find('a.pinImageWrapper',0); $item = array();
$a = $div->find('a.pinImageWrapper', 0);
$img = $a->find('img', 0); $img = $a->find('img', 0);
$item = array(); $item['uri'] = $this->getURI() . $a->getAttribute('href');
$item['uri'] = $this->getURI().$a->getAttribute('href'); $item['content'] = '<img src="'
$item['content'] = '<img src="' . htmlentities(str_replace('/236x/', '/736x/', $img->getAttribute('src'))) . '" alt="" />'; . htmlentities(str_replace('/236x/', '/736x/', $img->getAttribute('src')))
. '" alt="" />';
if ($this->queriedContext==='From search')
{
$avatar = $div->find('div.creditImg', 0)->find('img', 0); $avatar = $div->find('div.creditImg', 0)->find('img', 0);
$avatar = $avatar->getAttribute('data-src'); $avatar = $avatar->getAttribute('data-src');
$avatar = str_replace("\\", "", $avatar); $avatar = str_replace("\\", "", $avatar);
$username = $div->find('div.creditName', 0); $username = $div->find('div.creditName', 0);
$board = $div->find('div.creditTitle', 0); $board = $div->find('div.creditTitle', 0);
$item['username'] =$username->innertext; $item['username'] = $username->innertext;
$item['fullname'] = $board->innertext; $item['fullname'] = $board->innertext;
$item['avatar'] = $avatar; $item['avatar'] = $avatar;
$item['content'] .= '<br /><img align="left" style="margin: 2px 4px;" src="'.htmlentities($item['avatar']).'" /> <strong>'.$item['username'].'</strong>'; $item['content'] .= '<br /><img align="left" style="margin: 2px 4px;" src="'
$item['content'] .= '<br />'.$item['fullname']; . htmlentities($item['avatar'])
} . '" /> <strong>'
. $item['username']
. '</strong>'
. '<br />'
. $item['fullname'];
$item['title'] = $img->getAttribute('alt'); $item['title'] = $img->getAttribute('alt');
//$item['timestamp'] = $media->created_time;
$this->items[] = $item; $this->items[] = $item;
}
} elseif($this->queriedContext === 'By username and board'){
$container = $html->find('SCRIPT[type="application/ld+json"]', 0)
or $this->returnServerError('Unable to find data container!');
$json = json_decode($container->innertext, true);
foreach($json['itemListElement'] as $element){
$item = array();
$item['uri'] = $element['item']['sharedContent']['author']['url'];
$item['title'] = $element['item']['name'];
$item['author'] = $element['item']['user']['name'];
$item['timestamp'] = strtotime($element['item']['datePublished']);
$item['content'] = <<<EOD
<a href="{$item['uri']}">
<img src="{$element['item']['image']}">
</a>
<p>{$element['item']['text']}</p>
EOD;
$this->items[] = $item;
}
} }
} }
public function getURI(){ public function getURI(){
switch($this->queriedContext){ switch($this->queriedContext){
case 'By username and board': case 'By username and board':
$uri = self::URI.urlencode($this->getInput('u')).'/'.urlencode($this->getInput('b')); $uri = self::URI . urlencode($this->getInput('u')) . '/' . urlencode($this->getInput('b'));
break; break;
case 'From search': case 'From search':
$uri = self::URI.'search/?q='.urlencode($this->getInput('q')); $uri = self::URI . 'search/?q=' . urlencode($this->getInput('q'));
break; break;
} }
return $uri; return $uri;
} }
public function getName(){ public function getName(){
switch($this->queriedContext){ switch($this->queriedContext){
case 'By username and board': case 'By username and board':
$specific = $this->getInput('u').'-'.$this->getInput('b'); $specific = $this->getInput('u') . '-' . $this->getInput('b');
break; break;
case 'From search': case 'From search':
$specific = $this->getInput('q'); $specific = $this->getInput('q');
break; break;
} }
return $specific .' - '.self::NAME; return $specific . ' - ' . self::NAME;
} }
} }