2014-01-30 14:55:35 +01:00
|
|
|
<?php
|
2017-04-09 23:26:35 +02:00
|
|
|
class PinterestBridge extends FeedExpander {
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
const MAINTAINER = 'pauder';
|
|
|
|
const NAME = 'Pinterest Bridge';
|
2017-04-09 23:26:35 +02:00
|
|
|
const URI = 'https://www.pinterest.com';
|
2017-02-11 16:16:56 +01:00
|
|
|
const DESCRIPTION = 'Returns the newest images on a board';
|
2016-08-27 21:03:26 +02:00
|
|
|
|
2016-09-17 19:09:33 +02:00
|
|
|
const PARAMETERS = array(
|
|
|
|
'By username and board' => array(
|
|
|
|
'u' => array(
|
|
|
|
'name' => 'username',
|
|
|
|
'required' => true
|
|
|
|
),
|
|
|
|
'b' => array(
|
|
|
|
'name' => 'board',
|
|
|
|
'required' => true
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'From search' => array(
|
|
|
|
'q' => array(
|
|
|
|
'name' => 'Keyword',
|
|
|
|
'required' => true
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
public function collectData(){
|
2017-07-29 19:28:00 +02:00
|
|
|
switch($this->queriedContext) {
|
2016-09-17 19:09:33 +02:00
|
|
|
case 'By username and board':
|
2018-03-06 13:01:48 +01:00
|
|
|
$this->collectExpandableDatas($this->getURI() . '.rss');
|
|
|
|
$this->fixLowRes();
|
2017-04-09 23:26:35 +02:00
|
|
|
break;
|
2016-09-17 19:09:33 +02:00
|
|
|
case 'From search':
|
2017-04-09 23:26:35 +02:00
|
|
|
default:
|
|
|
|
$html = getSimpleHTMLDOMCached($this->getURI());
|
|
|
|
$this->getSearchResults($html);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-06 13:01:48 +01:00
|
|
|
private function fixLowRes() {
|
2017-04-09 23:26:35 +02:00
|
|
|
|
2018-03-06 13:01:48 +01:00
|
|
|
$newitems = [];
|
|
|
|
$pattern = '/https\:\/\/i\.pinimg\.com\/[a-zA-Z0-9]*x\//';
|
|
|
|
foreach($this->items as $item) {
|
2017-04-09 23:26:35 +02:00
|
|
|
|
2018-06-29 23:55:33 +02:00
|
|
|
$item['content'] = preg_replace($pattern, 'https://i.pinimg.com/originals/', $item['content']);
|
2018-03-06 13:01:48 +01:00
|
|
|
$newitems[] = $item;
|
2016-09-17 19:09:33 +02:00
|
|
|
}
|
2018-03-06 13:01:48 +01:00
|
|
|
$this->items = $newitems;
|
|
|
|
|
2017-04-09 23:26:35 +02:00
|
|
|
}
|
2016-09-17 19:09:33 +02:00
|
|
|
|
2017-04-09 23:26:35 +02:00
|
|
|
private function getSearchResults($html){
|
|
|
|
$json = json_decode($html->find('#jsInit1', 0)->innertext, true);
|
|
|
|
$results = $json['resourceDataCache'][0]['data']['results'];
|
2016-09-17 19:09:33 +02:00
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
foreach($results as $result) {
|
2017-04-09 23:26:35 +02:00
|
|
|
$item = array();
|
2016-09-17 19:14:05 +02:00
|
|
|
|
2017-04-09 23:26:35 +02:00
|
|
|
$item['uri'] = self::URI . $result['board']['url'];
|
2016-09-17 19:09:33 +02:00
|
|
|
|
2017-04-09 23:26:35 +02:00
|
|
|
// Some use regular titles, others provide 'advanced' infos, a few
|
|
|
|
// provide even less info. Thus we attempt multiple options.
|
|
|
|
$item['title'] = trim($result['title']);
|
2016-02-26 15:58:03 +01:00
|
|
|
|
2018-06-29 23:55:33 +02:00
|
|
|
if($item['title'] === '')
|
2017-04-09 23:26:35 +02:00
|
|
|
$item['title'] = trim($result['rich_summary']['display_name']);
|
2016-09-17 19:09:33 +02:00
|
|
|
|
2018-06-29 23:55:33 +02:00
|
|
|
if($item['title'] === '')
|
2017-04-09 23:26:35 +02:00
|
|
|
$item['title'] = trim($result['grid_description']);
|
2016-09-17 19:09:33 +02:00
|
|
|
|
2017-04-09 23:26:35 +02:00
|
|
|
$item['timestamp'] = strtotime($result['created_at']);
|
|
|
|
$item['username'] = $result['pinner']['username'];
|
|
|
|
$item['fullname'] = $result['pinner']['full_name'];
|
|
|
|
$item['avatar'] = $result['pinner']['image_small_url'];
|
|
|
|
$item['author'] = $item['username'] . ' (' . $item['fullname'] . ')';
|
|
|
|
$item['content'] = '<img align="left" style="margin: 2px 4px;" src="'
|
2016-09-17 19:09:33 +02:00
|
|
|
. htmlentities($item['avatar'])
|
2017-04-09 23:26:35 +02:00
|
|
|
. '" /><p><strong>'
|
2016-09-17 19:09:33 +02:00
|
|
|
. $item['username']
|
2017-04-09 23:26:35 +02:00
|
|
|
. '</strong><br>'
|
|
|
|
. $item['fullname']
|
|
|
|
. '</p><br><img src="'
|
|
|
|
. $result['images']['736x']['url']
|
|
|
|
. '" alt="" /><br><p>'
|
|
|
|
. $result['description']
|
|
|
|
. '</p>';
|
|
|
|
|
|
|
|
$item['enclosures'] = array($result['images']['orig']['url']);
|
|
|
|
|
|
|
|
$this->items[] = $item;
|
2016-09-17 19:09:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
2017-07-29 19:28:00 +02:00
|
|
|
switch($this->queriedContext) {
|
2016-09-17 19:09:33 +02:00
|
|
|
case 'By username and board':
|
2017-04-09 23:26:35 +02:00
|
|
|
$uri = self::URI . '/' . urlencode($this->getInput('u')) . '/' . urlencode($this->getInput('b'));// . '.rss';
|
2016-09-17 19:09:33 +02:00
|
|
|
break;
|
|
|
|
case 'From search':
|
2017-04-09 23:26:35 +02:00
|
|
|
$uri = self::URI . '/search/?q=' . urlencode($this->getInput('q'));
|
2016-09-17 19:09:33 +02:00
|
|
|
break;
|
2016-12-17 16:39:18 +01:00
|
|
|
default: return parent::getURI();
|
2016-09-17 19:09:33 +02:00
|
|
|
}
|
|
|
|
return $uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
2017-07-29 19:28:00 +02:00
|
|
|
switch($this->queriedContext) {
|
2016-09-17 19:09:33 +02:00
|
|
|
case 'By username and board':
|
2017-04-09 23:26:35 +02:00
|
|
|
$specific = $this->getInput('u') . ' - ' . $this->getInput('b');
|
2016-09-17 19:09:33 +02:00
|
|
|
break;
|
|
|
|
case 'From search':
|
|
|
|
$specific = $this->getInput('q');
|
|
|
|
break;
|
2016-12-17 16:39:18 +01:00
|
|
|
default: return parent::getName();
|
2016-09-17 19:09:33 +02:00
|
|
|
}
|
|
|
|
return $specific . ' - ' . self::NAME;
|
|
|
|
}
|
2014-01-30 14:55:35 +01:00
|
|
|
}
|