mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-23 23:16:53 +00:00
Merge 9da81ee290
into ede0046d4f
This commit is contained in:
commit
f856aa7fd7
57
bridges/DeveloppezDotComBridge.php
Normal file
57
bridges/DeveloppezDotComBridge.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/**
|
||||
* RssBridgeDeveloppezDotCom
|
||||
* Returns the 15 newest posts from http://www.developpez.com (full text)
|
||||
* 2014-07-14
|
||||
*
|
||||
* @name Developpez.com Actus (FR)
|
||||
* @homepage http://www.developpez.com/
|
||||
* @description Returns the 15 newest posts from DeveloppezDotCom (full text).
|
||||
* @maintainer polopollo
|
||||
*/
|
||||
class DeveloppezDotComBridge extends BridgeAbstract{
|
||||
|
||||
public function collectData(array $param){
|
||||
|
||||
function DeveloppezDotComStripCDATA($string) {
|
||||
$string = str_replace('<![CDATA[', '', $string);
|
||||
$string = str_replace(']]>', '', $string);
|
||||
return $string;
|
||||
}
|
||||
|
||||
function DeveloppezDotComExtractContent($url) {
|
||||
$articleHTMLContent = file_get_html($url);
|
||||
$text = $text.$articleHTMLContent->find('div.content', 0)->innertext;
|
||||
$text = strip_tags($text, '<p><b><a><blockquote><img><em><br/><br><ul><li>');
|
||||
return $text;
|
||||
}
|
||||
|
||||
$rssFeed = file_get_html('http://www.developpez.com/index/rss') or $this->returnError('Could not request http://www.developpez.com/index/rss', 404);
|
||||
$limit = 0;
|
||||
|
||||
foreach($rssFeed->find('item') as $element) {
|
||||
if($limit < 15) {
|
||||
$item = new \Item();
|
||||
$item->title = DeveloppezDotComStripCDATA($element->find('title', 0)->innertext);
|
||||
$item->uri = DeveloppezDotComStripCDATA($element->find('guid', 0)->plaintext);
|
||||
$item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
|
||||
$item->content = DeveloppezDotComExtractContent($item->uri);
|
||||
$this->items[] = $item;
|
||||
$limit++;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public function getName(){
|
||||
return 'DeveloppezDotCom';
|
||||
}
|
||||
|
||||
public function getURI(){
|
||||
return 'http://www.developpez.com/';
|
||||
}
|
||||
|
||||
public function getCacheDuration(){
|
||||
return 1800; // 30min
|
||||
}
|
||||
}
|
57
bridges/GizmodoFRBridge.php
Normal file
57
bridges/GizmodoFRBridge.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/**
|
||||
* RssBridgeGizmodoFR
|
||||
* Returns the 15 newest posts from http://www.gizmodo.fr (full text)
|
||||
* 2014-07-14
|
||||
*
|
||||
* @name GizmodoFR
|
||||
* @homepage http://www.gizmodo.fr/
|
||||
* @description Returns the 15 newest posts from GizmodoFR (full text).
|
||||
* @maintainer polopollo
|
||||
*/
|
||||
class GizmodoFRBridge extends BridgeAbstract{
|
||||
|
||||
public function collectData(array $param){
|
||||
|
||||
function GizmodoFRExtractContent($url) {
|
||||
$articleHTMLContent = file_get_html($url);
|
||||
$text = $articleHTMLContent->find('div.entry-thumbnail', 0)->innertext;
|
||||
$text = $text.$articleHTMLContent->find('div.entry-excerpt', 0)->innertext;
|
||||
$text = $text.$articleHTMLContent->find('div.entry-content', 0)->innertext;
|
||||
foreach($articleHTMLContent->find('pagespeed_iframe') as $element) {
|
||||
$text = $text.'<p>link to a iframe (could be a video): <a href="'.$element->src.'">'.$element->src.'</a></p>';
|
||||
}
|
||||
|
||||
$text = strip_tags($text, '<p><b><a><blockquote><img><em>');
|
||||
return $text;
|
||||
}
|
||||
|
||||
$rssFeed = file_get_html('http://www.gizmodo.fr/feed') or $this->returnError('Could not request http://www.gizmodo.fr/feed', 404);
|
||||
$limit = 0;
|
||||
|
||||
foreach($rssFeed->find('item') as $element) {
|
||||
if($limit < 15) {
|
||||
$item = new \Item();
|
||||
$item->title = $element->find('title', 0)->innertext;
|
||||
$item->uri = $element->find('guid', 0)->plaintext;
|
||||
$item->timestamp = strtotime($element->find('pubDate', 0)->plaintext);
|
||||
$item->content = GizmodoFRExtractContent($item->uri);
|
||||
$this->items[] = $item;
|
||||
$limit++;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public function getName(){
|
||||
return 'GizmodoFR';
|
||||
}
|
||||
|
||||
public function getURI(){
|
||||
return 'http://www.gizmodo.fr/';
|
||||
}
|
||||
|
||||
public function getCacheDuration(){
|
||||
return 1800; // 30min
|
||||
}
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* RssBridgeNumerama
|
||||
* RssBridgeNumerama
|
||||
* Returns the 5 newest posts from http://www.numerama.com (full text)
|
||||
* 2014-05-25
|
||||
*
|
||||
@ -39,7 +39,7 @@ class NumeramaBridge extends BridgeAbstract{
|
||||
$limit++;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
public function getName(){
|
||||
|
@ -11,7 +11,7 @@
|
||||
* @update 2014-05-26
|
||||
* @use1(url="blog URL (required)", name="blog name")
|
||||
*/
|
||||
class WordpressBridge extends BridgeAbstract {
|
||||
class WordPressBridge extends BridgeAbstract {
|
||||
|
||||
private $url;
|
||||
private $name;
|
||||
|
Loading…
Reference in New Issue
Block a user