[PinterestBridge] add getURI() + code simplification
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
5f0b843453
commit
75f312ea7b
1 changed files with 45 additions and 42 deletions
|
@ -1,53 +1,41 @@
|
||||||
<?php
|
<?php
|
||||||
class PinterestBridge extends BridgeAbstract{
|
class PinterestBridge extends BridgeAbstract{
|
||||||
|
|
||||||
private $username;
|
|
||||||
private $board;
|
|
||||||
private $query;
|
|
||||||
|
|
||||||
public $maintainer = "pauder";
|
public $maintainer = "pauder";
|
||||||
public $name = "Pinterest Bridge";
|
public $name = "Pinterest Bridge";
|
||||||
public $uri = "http://www.pinterest.com";
|
public $uri = "http://www.pinterest.com/";
|
||||||
public $description = "Returns the newest images on a board";
|
public $description = "Returns the newest images on a board";
|
||||||
|
|
||||||
public $parameters = array(
|
public $parameters = array(
|
||||||
'By username and board' => array(
|
'By username and board' => array(
|
||||||
'u'=>array('name'=>'username'),
|
'u'=>array(
|
||||||
'b'=>array('name'=>'board')
|
'name'=>'username',
|
||||||
|
'required'=>true
|
||||||
|
),
|
||||||
|
'b'=>array(
|
||||||
|
'name'=>'board',
|
||||||
|
'required'=>true
|
||||||
|
)
|
||||||
),
|
),
|
||||||
'From search' => array(
|
'From search' => array(
|
||||||
'q'=>array('name'=>'Keyword')
|
'q'=>array(
|
||||||
|
'name'=>'Keyword',
|
||||||
|
'required'=>true
|
||||||
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
$html = '';
|
$html = $this->getSimpleHTMLDOM($this->getURI()) ;
|
||||||
if ($this->getInput('u') || $this->getInput('b')) {
|
if(!$html){
|
||||||
|
switch($this->queriedContext){
|
||||||
if (empty($this->getInput('u')))
|
case 'By username and board':
|
||||||
{
|
$this->returnServerError('Username and/or board not found');
|
||||||
$this->returnClientError('You must specify a Pinterest username (?u=...).');
|
case 'From search':
|
||||||
}
|
$this->returnServerError('Could not request Pinterest.');
|
||||||
|
|
||||||
if (empty($this->getInput('b')))
|
|
||||||
{
|
|
||||||
$this->returnClientError('You must specify a Pinterest board for this username (?b=...).');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->username = $this->getInput('u');
|
|
||||||
$this->board = $this->getInput('b');
|
|
||||||
$html = $this->getSimpleHTMLDOM($this->getURI().'/'.urlencode($this->username).'/'.urlencode($this->board)) or $this->returnServerError('Username and/or board not found');
|
|
||||||
|
|
||||||
} else if ($this->getInput('q'))
|
|
||||||
{
|
|
||||||
$this->query = $this->getInput('q');
|
|
||||||
$html = $this->getSimpleHTMLDOM($this->getURI().'/search/?q='.urlencode($this->query)) or $this->returnServerError('Could not request Pinterest.');
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else {
|
|
||||||
$this->returnClientError('You must specify a Pinterest username and a board name (?u=...&b=...).');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
foreach($html->find('div.pinWrapper') as $div)
|
foreach($html->find('div.pinWrapper') as $div)
|
||||||
{
|
{
|
||||||
|
@ -60,7 +48,7 @@ class PinterestBridge extends BridgeAbstract{
|
||||||
$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 (isset($this->query))
|
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');
|
||||||
|
@ -86,13 +74,28 @@ class PinterestBridge extends BridgeAbstract{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getName(){
|
public function getURI(){
|
||||||
|
switch($this->queriedContext){
|
||||||
|
case 'By username and board':
|
||||||
|
$uri = $this->uri.urlencode($this->getInput('u')).'/'.urlencode($this->getInput('b'));
|
||||||
|
break;
|
||||||
|
case 'From search':
|
||||||
|
$uri = $this->uri.'search/?q='.urlencode($this->getInput('q'));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($this->query))
|
return $uri;
|
||||||
{
|
}
|
||||||
return $this->query .' - Pinterest';
|
|
||||||
} else {
|
public function getName(){
|
||||||
return $this->username .' - '. $this->board.' - Pinterest';
|
switch($this->queriedContext){
|
||||||
}
|
case 'By username and board':
|
||||||
|
$specific = $this->getInput('u').'-'.$this->getInput('b');
|
||||||
|
break;
|
||||||
|
case 'From search':
|
||||||
|
$specific = $this->getInput('q');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return $specific .' - '.$this->name;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue