2016-03-22 22:51:55 +01:00
|
|
|
<?php
|
|
|
|
|
2016-08-28 20:07:56 +02:00
|
|
|
class LichessBridge extends HttpCachingBridgeAbstract
|
2016-03-22 22:51:55 +01:00
|
|
|
{
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = 'AmauryCarrade';
|
|
|
|
public $name = 'Lichess Blog';
|
2016-08-29 12:55:15 +02:00
|
|
|
public $uri = 'http://fr.lichess.org/blog';
|
2016-08-27 21:03:26 +02:00
|
|
|
public $description = 'Returns the 5 newest posts from the Lichess blog (full text)';
|
2016-03-22 22:51:55 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData()
|
2016-03-22 22:51:55 +01:00
|
|
|
{
|
2016-08-29 12:55:15 +02:00
|
|
|
$xml_feed = $this->getSimpleHTMLDOM($this->uri.'.atom')
|
|
|
|
or $this->returnServerError('Could not retrieve Lichess blog feed.');
|
2016-03-22 22:51:55 +01:00
|
|
|
|
|
|
|
$posts_loaded = 0;
|
|
|
|
foreach($xml_feed->find('entry') as $entry)
|
|
|
|
{
|
|
|
|
if ($posts_loaded < 5)
|
|
|
|
{
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
2016-03-22 22:51:55 +01:00
|
|
|
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['title'] = html_entity_decode($entry->find('title', 0)->innertext);
|
|
|
|
$item['author'] = $entry->find('author', 0)->find('name', 0)->innertext;
|
|
|
|
$item['uri'] = $entry->find('id', 0)->plaintext;
|
|
|
|
$item['timestamp'] = strtotime($entry->find('published', 0)->plaintext);
|
2016-03-22 22:51:55 +01:00
|
|
|
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content'] = $this->retrieve_lichess_post($item['uri']);
|
2016-03-22 22:51:55 +01:00
|
|
|
|
|
|
|
$this->items[] = $item;
|
|
|
|
$posts_loaded++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function retrieve_lichess_post($blog_post_uri)
|
|
|
|
{
|
2016-08-28 20:07:56 +02:00
|
|
|
if($this->get_cached_time($blog_post_uri) <= strtotime('-24 hours'))
|
|
|
|
$this->remove_from_cache($blog_post_uriuri);
|
|
|
|
|
|
|
|
$blog_post_html = $this->get_cached($blog_post_uri);
|
2016-03-22 22:51:55 +01:00
|
|
|
$blog_post_div = $blog_post_html->find('#lichess_blog', 0);
|
|
|
|
|
|
|
|
$post_chapo = $blog_post_div->find('.shortlede', 0)->innertext;
|
|
|
|
$post_content = $blog_post_div->find('.body', 0)->innertext;
|
|
|
|
|
|
|
|
$content = '<p><em>' . $post_chapo . '</em></p>';
|
|
|
|
$content .= '<div>' . $post_content . '</div>';
|
|
|
|
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
}
|