diff --git a/bridges/PinterestBridge.php b/bridges/PinterestBridge.php
index 8bb813a..8c24ecd 100644
--- a/bridges/PinterestBridge.php
+++ b/bridges/PinterestBridge.php
@@ -6,11 +6,13 @@
* @name Pinterest Bridge
* @description Returns the newest images on a board
* @use1(u="username",b="board")
+ * @use2(q="keyword")
*/
class PinterestBridge extends BridgeAbstract{
private $username;
private $board;
+ private $query;
public function collectData(array $param){
$html = '';
@@ -18,12 +20,16 @@ class PinterestBridge extends BridgeAbstract{
$this->username = $param['u'];
$this->board = $param['b'];
$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 {
$this->returnError('You must specify a Pinterest username and a board name (?u=...&b=...).', 400);
}
-
- $innertext = null;
+
foreach($html->find('div.pinWrapper') as $div)
{
@@ -35,9 +41,24 @@ class PinterestBridge extends BridgeAbstract{
$item->uri = $this->getURI().$a->getAttribute('href');
$item->content = '';
- $credit = $div->find('a.creditItem',0);
- $item->content .= '
'.$credit->innertext;
+ 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 .= '
'.$item->username.'';
+ $item->content .= '
'.$item->fullname;
+ } else {
+
+ $credit = $div->find('a.creditItem',0);
+ $item->content .= '
'.$credit->innertext;
+ }
$item->title = basename($img->getAttribute('alt'));
@@ -48,7 +69,13 @@ class PinterestBridge extends BridgeAbstract{
}
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(){