search query

This commit is contained in:
pauder 2014-01-30 15:25:25 +01:00
parent 19f806acd5
commit 4a63fed224
1 changed files with 32 additions and 5 deletions

View File

@ -6,11 +6,13 @@
* @name Pinterest Bridge * @name Pinterest Bridge
* @description Returns the newest images on a board * @description Returns the newest images on a board
* @use1(u="username",b="board") * @use1(u="username",b="board")
* @use2(q="keyword")
*/ */
class PinterestBridge extends BridgeAbstract{ class PinterestBridge extends BridgeAbstract{
private $username; private $username;
private $board; private $board;
private $query;
public function collectData(array $param){ public function collectData(array $param){
$html = ''; $html = '';
@ -18,12 +20,16 @@ class PinterestBridge extends BridgeAbstract{
$this->username = $param['u']; $this->username = $param['u'];
$this->board = $param['b']; $this->board = $param['b'];
$html = file_get_html($this->getURI().'/'.urlencode($this->username).'/'.urlencode($this->board)) or $this->returnError('Could not request Pinterest.', 404); $html = file_get_html($this->getURI().'/'.urlencode($this->username).'/'.urlencode($this->board)) or $this->returnError('Could not request Pinterest.', 404);
} else if (isset($param['q']))
{
$this->query = $param['q'];
$html = file_get_html($this->getURI().'/search/?q='.urlencode($this->query)) or $this->returnError('Could not request Pinterest.', 404);
} }
else { else {
$this->returnError('You must specify a Pinterest username and a board name (?u=...&b=...).', 400); $this->returnError('You must specify a Pinterest username and a board name (?u=...&b=...).', 400);
} }
$innertext = null;
foreach($html->find('div.pinWrapper') as $div) foreach($html->find('div.pinWrapper') as $div)
{ {
@ -35,9 +41,24 @@ class PinterestBridge extends BridgeAbstract{
$item->uri = $this->getURI().$a->getAttribute('href'); $item->uri = $this->getURI().$a->getAttribute('href');
$item->content = '<img src="' . htmlentities($img->getAttribute('src')) . '" alt="" />'; $item->content = '<img src="' . htmlentities($img->getAttribute('src')) . '" alt="" />';
$credit = $div->find('a.creditItem',0);
if (isset($this->query))
{
$avatar = $div->find('img.creditImg', 0);
$username = $div->find('span.creditName', 0);
$board = $div->find('span.creditTitle', 0);
$item->username =$username->innertext;
$item->fullname = $board->innertext;
$item->avatar = $avatar->getAttribute('src');
$item->content .= '<br /><img align="left" style="margin: 2px 4px;" src="'.htmlentities($item->avatar).'" /> <strong>'.$item->username.'</strong>';
$item->content .= '<br />'.$item->fullname;
} else {
$credit = $div->find('a.creditItem',0);
$item->content .= '<br />'.$credit->innertext; $item->content .= '<br />'.$credit->innertext;
}
$item->title = basename($img->getAttribute('alt')); $item->title = basename($img->getAttribute('alt'));
@ -48,7 +69,13 @@ class PinterestBridge extends BridgeAbstract{
} }
public function getName(){ public function getName(){
return $this->username .' - '. $this->board;
if (isset($this->query))
{
return $this->query .' - Pinterest';
} else {
return $this->username .' - '. $this->board.' - Pinterest';
}
} }
public function getURI(){ public function getURI(){