2016-02-20 14:56:17 +01:00
|
|
|
<?php
|
|
|
|
class GBAtempBridge extends BridgeAbstract {
|
|
|
|
|
|
|
|
private $filter = '';
|
|
|
|
|
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = 'ORelio';
|
|
|
|
$this->name = 'GBAtemp';
|
2016-08-09 20:01:21 +02:00
|
|
|
$this->uri = 'http://gbatemp.net/';
|
2016-02-20 14:56:17 +01:00
|
|
|
$this->description = 'GBAtemp is a user friendly underground video game community.';
|
2016-08-17 14:45:08 +02:00
|
|
|
$this->update = '2016-08-17';
|
2016-02-20 14:56:17 +01:00
|
|
|
|
|
|
|
$this->parameters[] =
|
|
|
|
'[
|
|
|
|
{
|
|
|
|
"name" : "Type",
|
|
|
|
"type" : "list",
|
|
|
|
"identifier" : "type",
|
|
|
|
"values" :
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name" : "News",
|
|
|
|
"value" : "N"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "Reviews",
|
|
|
|
"value" : "R"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "Tutorials",
|
|
|
|
"value" : "T"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "Forum",
|
|
|
|
"value" : "F"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]';
|
|
|
|
}
|
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function ExtractFromDelimiters($string, $start, $end) {
|
2016-08-02 16:20:43 +02:00
|
|
|
if (strpos($string, $start) !== false) {
|
|
|
|
$section_retrieved = substr($string, strpos($string, $start) + strlen($start));
|
|
|
|
$section_retrieved = substr($section_retrieved, 0, strpos($section_retrieved, $end));
|
|
|
|
return $section_retrieved;
|
|
|
|
} return false;
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function StripWithDelimiters($string, $start, $end) {
|
2016-08-02 16:20:43 +02:00
|
|
|
while (strpos($string, $start) !== false) {
|
|
|
|
$section_to_remove = substr($string, strpos($string, $start));
|
|
|
|
$section_to_remove = substr($section_to_remove, 0, strpos($section_to_remove, $end) + strlen($end));
|
|
|
|
$string = str_replace($section_to_remove, '', $string);
|
|
|
|
} return $string;
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2016-08-09 15:50:25 +02:00
|
|
|
private function build_item($uri, $title, $author, $timestamp, $content) {
|
2016-08-02 16:20:43 +02:00
|
|
|
$item = new \Item();
|
|
|
|
$item->uri = $uri;
|
|
|
|
$item->title = $title;
|
|
|
|
$item->author = $author;
|
|
|
|
$item->timestamp = $timestamp;
|
|
|
|
$item->content = $content;
|
|
|
|
return $item;
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function cleanup_post_content($content, $site_url) {
|
2016-08-02 16:20:43 +02:00
|
|
|
$content = str_replace(':arrow:', '➤', $content);
|
|
|
|
$content = str_replace('href="attachments/', 'href="'.$site_url.'attachments/', $content);
|
|
|
|
$content = $this->StripWithDelimiters($content, '<script', '</script>');
|
|
|
|
return $content;
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function fetch_post_content($uri, $site_url) {
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($uri) or $this->returnServerError('Could not request GBAtemp: '.$uri);
|
2016-08-02 16:20:43 +02:00
|
|
|
$content = $html->find('div.messageContent', 0)->innertext;
|
|
|
|
return $this->cleanup_post_content($content, $site_url);
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2016-08-02 16:20:43 +02:00
|
|
|
public function collectData(array $param) {
|
2016-02-20 14:56:17 +01:00
|
|
|
$typeFilter = '';
|
|
|
|
if (!empty($param['type'])) {
|
|
|
|
if ($param['type'] == 'N' || $param['type'] == 'R' || $param['type'] == 'T' || $param['type'] == 'F') {
|
|
|
|
$typeFilter = $param['type'];
|
|
|
|
if ($typeFilter == 'N') { $this->filter = 'News'; }
|
|
|
|
if ($typeFilter == 'R') { $this->filter = 'Review'; }
|
|
|
|
if ($typeFilter == 'T') { $this->filter = 'Tutorial'; }
|
|
|
|
if ($typeFilter == 'F') { $this->filter = 'Forum'; }
|
2016-08-17 14:45:08 +02:00
|
|
|
} else $this->returnClientError('The provided type filter is invalid. Expecting N, R, T, or F.');
|
|
|
|
} else $this->returnClientError('Please provide a type filter. Expecting N, R, T, or F.');
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($this->uri) or $this->returnServerError('Could not request GBAtemp.');
|
2016-02-20 14:56:17 +01:00
|
|
|
|
|
|
|
if ($typeFilter == 'N') {
|
|
|
|
foreach ($html->find('li[class=news_item full]') as $newsItem) {
|
2016-08-09 20:01:21 +02:00
|
|
|
$url = $this->uri.$newsItem->find('a', 0)->href;
|
2016-08-02 16:20:43 +02:00
|
|
|
$time = intval($this->ExtractFromDelimiters($newsItem->find('abbr.DateTime', 0)->outertext, 'data-time="', '"'));
|
2016-02-20 14:56:17 +01:00
|
|
|
$author = $newsItem->find('a.username', 0)->plaintext;
|
|
|
|
$title = $newsItem->find('a', 1)->plaintext;
|
2016-08-09 20:01:21 +02:00
|
|
|
$content = $this->fetch_post_content($url, $this->uri);
|
2016-08-09 15:50:25 +02:00
|
|
|
$this->items[] = $this->build_item($url, $title, $author, $time, $content);
|
2016-02-20 14:56:17 +01:00
|
|
|
}
|
|
|
|
} else if ($typeFilter == 'R') {
|
|
|
|
foreach ($html->find('li.portal_review') as $reviewItem) {
|
2016-08-09 20:01:21 +02:00
|
|
|
$url = $this->uri.$reviewItem->find('a', 0)->href;
|
2016-02-20 14:56:17 +01:00
|
|
|
$title = $reviewItem->find('span.review_title', 0)->plaintext;
|
2016-07-08 19:06:35 +02:00
|
|
|
$content = $this->getSimpleHTMLDOM($url) or $this->returnServerError('Could not request GBAtemp: '.$uri);
|
2016-02-20 14:56:17 +01:00
|
|
|
$author = $content->find('a.username', 0)->plaintext;
|
2016-08-02 16:20:43 +02:00
|
|
|
$time = intval($this->ExtractFromDelimiters($content->find('abbr.DateTime', 0)->outertext, 'data-time="', '"'));
|
2016-02-20 14:56:17 +01:00
|
|
|
$intro = '<p><b>'.($content->find('div#review_intro', 0)->plaintext).'</b></p>';
|
|
|
|
$review = $content->find('div#review_main', 0)->innertext;
|
|
|
|
$subheader = '<p><b>'.$content->find('div.review_subheader', 0)->plaintext.'</b></p>';
|
|
|
|
$procons = $content->find('table.review_procons', 0)->outertext;
|
|
|
|
$scores = $content->find('table.reviewscores', 0)->outertext;
|
2016-08-09 20:01:21 +02:00
|
|
|
$content = $this->cleanup_post_content($intro.$review.$subheader.$procons.$scores, $this->uri);
|
2016-08-09 15:50:25 +02:00
|
|
|
$this->items[] = $this->build_item($url, $title, $author, $time, $content);
|
2016-02-20 14:56:17 +01:00
|
|
|
}
|
|
|
|
} else if ($typeFilter == 'T') {
|
|
|
|
foreach ($html->find('li.portal-tutorial') as $tutorialItem) {
|
2016-08-09 20:01:21 +02:00
|
|
|
$url = $this->uri.$tutorialItem->find('a', 0)->href;
|
2016-02-20 14:56:17 +01:00
|
|
|
$title = $tutorialItem->find('a', 0)->plaintext;
|
2016-08-02 16:20:43 +02:00
|
|
|
$time = intval($this->ExtractFromDelimiters($tutorialItem->find('abbr.DateTime', 0)->outertext, 'data-time="', '"'));
|
2016-02-20 14:56:17 +01:00
|
|
|
$author = $tutorialItem->find('a.username', 0)->plaintext;
|
2016-08-09 20:01:21 +02:00
|
|
|
$content = $this->fetch_post_content($url, $this->uri);
|
2016-08-09 15:50:25 +02:00
|
|
|
$this->items[] = $this->build_item($url, $title, $author, $time, $content);
|
2016-02-20 14:56:17 +01:00
|
|
|
}
|
|
|
|
} else if ($typeFilter == 'F') {
|
|
|
|
foreach ($html->find('li.rc_item') as $postItem) {
|
2016-08-09 20:01:21 +02:00
|
|
|
$url = $this->uri.$postItem->find('a', 1)->href;
|
2016-02-20 14:56:17 +01:00
|
|
|
$title = $postItem->find('a', 1)->plaintext;
|
2016-08-02 16:20:43 +02:00
|
|
|
$time = intval($this->ExtractFromDelimiters($postItem->find('abbr.DateTime', 0)->outertext, 'data-time="', '"'));
|
2016-02-20 14:56:17 +01:00
|
|
|
$author = $postItem->find('a.username', 0)->plaintext;
|
2016-08-09 20:01:21 +02:00
|
|
|
$content = $this->fetch_post_content($url, $this->uri);
|
2016-08-09 15:50:25 +02:00
|
|
|
$this->items[] = $this->build_item($url, $title, $author, $time, $content);
|
2016-02-20 14:56:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName() {
|
|
|
|
return 'GBAtemp'.(empty($this->filter) ? '' : ' '.$this->filter).' Bridge';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration() {
|
|
|
|
return ($this->filter === 'Forum') ? 300 : 3600; // 5 minutes / 1 hour
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|