2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
2016-08-10 11:00:40 +02:00
|
|
|
class TwitterBridge extends BridgeAbstract{
|
2016-08-30 11:23:55 +02:00
|
|
|
const NAME='Twitter Bridge';
|
|
|
|
const URI='https://twitter.com/';
|
2016-09-25 17:04:28 +02:00
|
|
|
const CACHE_TIMEOUT = 300; // 5min
|
2016-08-30 11:23:55 +02:00
|
|
|
const DESCRIPTION='returns tweets';
|
|
|
|
const PARAMETERS=array(
|
2016-08-27 21:03:26 +02:00
|
|
|
'global'=>array(
|
|
|
|
'nopic'=>array(
|
|
|
|
'name'=>'Hide profile pictures',
|
|
|
|
'type'=>'checkbox',
|
|
|
|
'title'=>'Activate to hide profile pictures in content'
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'By keyword or hashtag' => array(
|
|
|
|
'q'=>array(
|
|
|
|
'name'=>'Keyword or #hashtag',
|
|
|
|
'required'=>true,
|
|
|
|
'exampleValue'=>'rss-bridge, #rss-bridge',
|
|
|
|
'title'=>'Insert a keyword or hashtag'
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'By username' => array(
|
|
|
|
'u'=>array(
|
|
|
|
'name'=>'username',
|
|
|
|
'required'=>true,
|
|
|
|
'exampleValue'=>'sebsauvage',
|
|
|
|
'title'=>'Insert a user name'
|
|
|
|
),
|
|
|
|
'norep'=>array(
|
|
|
|
'name'=>'Without replies',
|
|
|
|
'type'=>'checkbox',
|
|
|
|
'title'=>'Only return initial tweets'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-25 01:49:30 +02:00
|
|
|
public function getName(){
|
|
|
|
switch($this->queriedContext){
|
|
|
|
case 'By keyword or hashtag':
|
|
|
|
$specific='search ';
|
|
|
|
$param='q';
|
|
|
|
break;
|
|
|
|
case 'By username':
|
|
|
|
$specific='@';
|
|
|
|
$param='u';
|
|
|
|
break;
|
|
|
|
}
|
2016-08-28 01:25:33 +02:00
|
|
|
return 'Twitter '.$specific.$this->getInput($param);
|
2016-08-25 01:49:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
|
|
|
switch($this->queriedContext){
|
|
|
|
case 'By keyword or hashtag':
|
2016-08-30 11:23:55 +02:00
|
|
|
return self::URI.'search?q='.urlencode($this->getInput('q')).'&f=tweets';
|
2016-08-25 01:49:30 +02:00
|
|
|
case 'By username':
|
2016-08-30 11:23:55 +02:00
|
|
|
return self::URI.urlencode($this->getInput('u')).
|
2016-08-28 01:25:33 +02:00
|
|
|
($this->getInput('norep')?'':'/with_replies');
|
2016-08-25 01:49:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = '';
|
2016-08-28 00:01:42 +02:00
|
|
|
|
2016-09-25 23:22:33 +02:00
|
|
|
$html = getSimpleHTMLDOM($this->getURI());
|
2016-08-28 00:01:42 +02:00
|
|
|
if(!$html){
|
|
|
|
switch($this->queriedContext){
|
|
|
|
case 'By keyword or hashtag':
|
2016-09-25 23:22:33 +02:00
|
|
|
returnServerError('No results for this query.');
|
2016-08-28 00:01:42 +02:00
|
|
|
case 'By username':
|
2016-09-25 23:22:33 +02:00
|
|
|
returnServerError('Requested username can\'t be found.');
|
2016-08-28 00:01:42 +02:00
|
|
|
}
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
|
|
|
|
2016-08-28 01:25:33 +02:00
|
|
|
$hidePictures = $this->getInput('nopic');
|
2016-08-10 10:44:23 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
foreach($html->find('div.js-stream-tweet') as $tweet) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
2014-05-26 00:30:46 +02:00
|
|
|
// extract username and sanitize
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['username'] = $tweet->getAttribute('data-screen-name');
|
2014-05-26 00:30:46 +02:00
|
|
|
// extract fullname (pseudonym)
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['fullname'] = $tweet->getAttribute('data-name');
|
2016-08-10 10:26:29 +02:00
|
|
|
// get author
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['author'] = $item['fullname'] . ' (@' . $item['username'] . ')';
|
2014-05-26 00:30:46 +02:00
|
|
|
// get avatar link
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['avatar'] = $tweet->find('img', 0)->src;
|
2014-05-26 00:30:46 +02:00
|
|
|
// get TweetID
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['id'] = $tweet->getAttribute('data-tweet-id');
|
2016-07-08 19:06:35 +02:00
|
|
|
// get tweet link
|
2016-08-30 11:23:55 +02:00
|
|
|
$item['uri'] = self::URI.$tweet->find('a.js-permalink', 0)->getAttribute('href');
|
2014-05-26 00:30:46 +02:00
|
|
|
// extract tweet timestamp
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['timestamp'] = $tweet->find('span.js-short-timestamp', 0)->getAttribute('data-time');
|
2016-08-10 10:26:29 +02:00
|
|
|
// generate the title
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['title'] = strip_tags(html_entity_decode($tweet->find('p.js-tweet-text', 0)->innertext,ENT_QUOTES,'UTF-8'));
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
// processing content links
|
|
|
|
foreach($tweet->find('a') as $link) {
|
|
|
|
if($link->hasAttribute('data-expanded-url') ) {
|
|
|
|
$link->href = $link->getAttribute('data-expanded-url');
|
|
|
|
}
|
|
|
|
$link->removeAttribute('data-expanded-url');
|
|
|
|
$link->removeAttribute('data-query-source');
|
|
|
|
$link->removeAttribute('rel');
|
|
|
|
$link->removeAttribute('class');
|
|
|
|
$link->removeAttribute('target');
|
|
|
|
$link->removeAttribute('title');
|
|
|
|
}
|
|
|
|
|
2016-08-09 21:59:55 +02:00
|
|
|
// process emojis (reduce size)
|
|
|
|
foreach($tweet->find('img.Emoji') as $img){
|
|
|
|
$img->style .= ' height: 1em;';
|
|
|
|
}
|
2016-08-09 21:47:29 +02:00
|
|
|
|
2016-08-09 21:59:55 +02:00
|
|
|
// get tweet text
|
2016-08-30 11:23:55 +02:00
|
|
|
$cleanedTweet = str_replace('href="/', 'href="'.self::URI, $tweet->find('p.js-tweet-text', 0)->innertext);
|
2016-08-09 21:47:29 +02:00
|
|
|
|
2016-08-10 10:44:23 +02:00
|
|
|
// Add picture to content
|
|
|
|
$picture_html = '';
|
|
|
|
if(!$hidePictures){
|
|
|
|
$picture_html = <<<EOD
|
2016-08-22 18:55:59 +02:00
|
|
|
<a href="https://twitter.com/{$item['username']}"><img style="align: top; width:75 px; border: 1px solid black;" alt="{$item['username']}" src="{$item['avatar']}" title="{$item['fullname']}" /></a>
|
2016-08-10 10:44:23 +02:00
|
|
|
EOD;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add content
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content'] = <<<EOD
|
2016-08-09 22:05:42 +02:00
|
|
|
<div style="display: inline-block; vertical-align: top;">
|
2016-08-10 10:44:23 +02:00
|
|
|
{$picture_html}
|
2016-08-09 22:05:42 +02:00
|
|
|
</div>
|
|
|
|
<div style="display: inline-block; vertical-align: top;">
|
|
|
|
<blockquote>{$cleanedTweet}</blockquote>
|
|
|
|
</div>
|
2016-08-09 21:47:29 +02:00
|
|
|
EOD;
|
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
// put out
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|