2014-08-27 17:37:38 +02:00
|
|
|
<?php
|
|
|
|
class ProjectMGameBridge extends BridgeAbstract{
|
2014-08-27 18:23:43 +02:00
|
|
|
|
2015-11-04 10:47:21 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "corenting";
|
|
|
|
$this->name = "Project M Game Bridge";
|
|
|
|
$this->uri = "http://projectmgame.com/en/";
|
|
|
|
$this->description = "Returns the newest articles.";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-27 17:37:38 +02:00
|
|
|
public function collectData(array $param){
|
|
|
|
$html = '';
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM('http://projectmgame.com/en/') or $this->returnServerError('Error while downloading the Project M homepage');
|
2014-08-27 17:37:38 +02:00
|
|
|
|
|
|
|
foreach($html->find('article') as $article) {
|
|
|
|
$item = new \Item();
|
|
|
|
$item->uri = 'http://projectmgame.com/en/'.$article->find('section div.info_block a',0)->href;
|
|
|
|
$item->title = $article->find('h1 p',0)->innertext;
|
|
|
|
|
|
|
|
$p_list = $article->find('section p');
|
|
|
|
$content = '';
|
2014-08-27 18:23:43 +02:00
|
|
|
foreach($p_list as $p) $content .= $p->innertext;
|
2014-08-27 17:37:38 +02:00
|
|
|
$item->content = $content;
|
|
|
|
|
|
|
|
// get publication date
|
|
|
|
$str_date = $article->find('section div.info_block a',0)->innertext;
|
2014-08-27 18:23:43 +02:00
|
|
|
$item->timestamp = strtotime($str_date);
|
2014-08-27 17:37:38 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
2014-08-27 18:23:43 +02:00
|
|
|
return 10800; //3 hours
|
2014-08-27 17:37:38 +02:00
|
|
|
}
|
|
|
|
}
|