2014-09-08 17:33:27 +02:00
|
|
|
<?php
|
|
|
|
class NasaApodBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-04 10:47:21 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "corenting";
|
|
|
|
$this->name = "NASA APOD Bridge";
|
|
|
|
$this->uri = "http://apod.nasa.gov/apod/astropix.html";
|
|
|
|
$this->description = "Returns the 3 latest NASA APOD pictures and explanations";
|
|
|
|
$this->update = "2014-08-27";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-09-08 17:33:27 +02:00
|
|
|
public function collectData(array $param) {
|
|
|
|
|
2016-06-25 23:17:42 +02:00
|
|
|
$html = $this->file_get_html('http://apod.nasa.gov/apod/archivepix.html') or $this->returnError('Error while downloading the website content', 404);
|
2014-09-08 17:33:27 +02:00
|
|
|
$list = explode("<br>", $html->find('b', 0)->innertext);
|
|
|
|
|
|
|
|
for($i = 0; $i < 3;$i++)
|
|
|
|
{
|
|
|
|
$line = $list[$i];
|
|
|
|
$item = new \Item();
|
|
|
|
|
|
|
|
$uri_page = $html->find('a',$i + 3)->href;
|
|
|
|
$uri = 'http://apod.nasa.gov/apod/'.$uri_page;
|
|
|
|
$item->uri = $uri;
|
|
|
|
|
2016-06-25 23:17:42 +02:00
|
|
|
$picture_html = $this->file_get_html($uri);
|
2014-09-08 17:33:27 +02:00
|
|
|
$picture_html_string = $picture_html->innertext;
|
|
|
|
|
|
|
|
//Extract image and explanation
|
|
|
|
$media = $picture_html->find('p',1)->innertext;
|
|
|
|
$media = strstr($media, '<br>');
|
|
|
|
$media = preg_replace('/<br>/', '', $media, 1);
|
|
|
|
$explanation = $picture_html->find('p',2)->innertext;
|
|
|
|
|
|
|
|
//Extract date from the picture page
|
|
|
|
$date = explode(" ", $picture_html->find('p',1)->innertext);
|
|
|
|
$item->timestamp = strtotime($date[4].$date[3].$date[2]);
|
|
|
|
|
|
|
|
//Other informations
|
|
|
|
$item->content = $media.'<br />'.$explanation;
|
|
|
|
$item->title = $picture_html->find('b',0)->innertext;
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return 'NASA APOD';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
|
|
|
return 'http://apod.nasa.gov/apod/astropix.html';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 3600*12; // 12 hours
|
|
|
|
}
|
|
|
|
}
|