2016-02-20 14:56:17 +01:00
|
|
|
<?php
|
|
|
|
class GBAtempBridge extends BridgeAbstract {
|
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
const MAINTAINER = 'ORelio';
|
|
|
|
const NAME = 'GBAtemp';
|
|
|
|
const URI = 'http://gbatemp.net/';
|
|
|
|
const DESCRIPTION = 'GBAtemp is a user friendly underground video game community.';
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
const PARAMETERS = array( array(
|
|
|
|
'type' => array(
|
|
|
|
'name' => 'Type',
|
|
|
|
'type' => 'list',
|
|
|
|
'required' => true,
|
|
|
|
'values' => array(
|
|
|
|
'News' => 'N',
|
|
|
|
'Reviews' => 'R',
|
|
|
|
'Tutorials' => 'T',
|
|
|
|
'Forum' => 'F'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
));
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
private function extractFromDelimiters($string, $start, $end){
|
|
|
|
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;
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
private function stripWithDelimiters($string, $start, $end){
|
|
|
|
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);
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
return $string;
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
private function buildItem($uri, $title, $author, $timestamp, $content){
|
|
|
|
$item = array();
|
|
|
|
$item['uri'] = $uri;
|
|
|
|
$item['title'] = $title;
|
|
|
|
$item['author'] = $author;
|
|
|
|
$item['timestamp'] = $timestamp;
|
|
|
|
$item['content'] = $content;
|
|
|
|
return $item;
|
|
|
|
}
|
2016-08-28 20:30:37 +02:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
private function cleanupPostContent($content, $site_url){
|
|
|
|
$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
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
private function fetchPostContent($uri, $site_url){
|
|
|
|
$html = getSimpleHTMLDOM($uri);
|
|
|
|
if(!$html){
|
|
|
|
return 'Could not request GBAtemp ' . $uri;
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
$content = $html->find('div.messageContent', 0)->innertext;
|
|
|
|
return $this->cleanupPostContent($content, $site_url);
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
public function collectData(){
|
2016-02-20 14:56:17 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
$html = getSimpleHTMLDOM(self::URI)
|
|
|
|
or returnServerError('Could not request GBAtemp.');
|
2016-12-17 17:03:09 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
switch($this->getInput('type')){
|
|
|
|
case 'N':
|
|
|
|
foreach($html->find('li[class=news_item full]') as $newsItem){
|
|
|
|
$url = self::URI . $newsItem->find('a', 0)->href;
|
|
|
|
$time = intval(
|
|
|
|
$this->extractFromDelimiters(
|
|
|
|
$newsItem->find('abbr.DateTime', 0)->outertext,
|
|
|
|
'data-time="',
|
|
|
|
'"'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$author = $newsItem->find('a.username', 0)->plaintext;
|
|
|
|
$title = $newsItem->find('a', 1)->plaintext;
|
|
|
|
$content = $this->fetchPostContent($url, self::URI);
|
|
|
|
$this->items[] = $this->buildItem($url, $title, $author, $time, $content);
|
|
|
|
}
|
|
|
|
case 'R':
|
|
|
|
foreach($html->find('li.portal_review') as $reviewItem){
|
|
|
|
$url = self::URI . $reviewItem->find('a', 0)->href;
|
|
|
|
$title = $reviewItem->find('span.review_title', 0)->plaintext;
|
|
|
|
$content = getSimpleHTMLDOM($url)
|
|
|
|
or returnServerError('Could not request GBAtemp: ' . $uri);
|
|
|
|
$author = $content->find('a.username', 0)->plaintext;
|
|
|
|
$time = intval(
|
|
|
|
$this->extractFromDelimiters(
|
|
|
|
$content->find('abbr.DateTime', 0)->outertext,
|
|
|
|
'data-time="',
|
|
|
|
'"'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$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;
|
|
|
|
$content = $this->cleanupPostContent($intro . $review . $subheader . $procons . $scores, self::URI);
|
|
|
|
$this->items[] = $this->buildItem($url, $title, $author, $time, $content);
|
|
|
|
}
|
|
|
|
case 'T':
|
|
|
|
foreach($html->find('li.portal-tutorial') as $tutorialItem){
|
|
|
|
$url = self::URI . $tutorialItem->find('a', 0)->href;
|
|
|
|
$title = $tutorialItem->find('a', 0)->plaintext;
|
|
|
|
$time = intval(
|
|
|
|
$this->extractFromDelimiters(
|
|
|
|
$tutorialItem->find('abbr.DateTime', 0)->outertext,
|
|
|
|
'data-time="',
|
|
|
|
'"'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$author = $tutorialItem->find('a.username', 0)->plaintext;
|
|
|
|
$content = $this->fetchPostContent($url, self::URI);
|
|
|
|
$this->items[] = $this->buildItem($url, $title, $author, $time, $content);
|
|
|
|
}
|
|
|
|
case 'F':
|
|
|
|
foreach($html->find('li.rc_item') as $postItem){
|
|
|
|
$url = self::URI . $postItem->find('a', 1)->href;
|
|
|
|
$title = $postItem->find('a', 1)->plaintext;
|
|
|
|
$time = intval(
|
|
|
|
$this->extractFromDelimiters(
|
|
|
|
$postItem->find('abbr.DateTime', 0)->outertext,
|
|
|
|
'data-time="',
|
|
|
|
'"'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$author = $postItem->find('a.username', 0)->plaintext;
|
|
|
|
$content = $this->fetchPostContent($url, self::URI);
|
|
|
|
$this->items[] = $this->buildItem($url, $title, $author, $time, $content);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName() {
|
|
|
|
if(!is_null($this->getInput('type'))){
|
|
|
|
$type = array_search(
|
|
|
|
$this->getInput('type'),
|
|
|
|
self::PARAMETERS[$this->queriedContext]['type']['values']
|
|
|
|
);
|
|
|
|
return 'GBAtemp ' . $type . ' Bridge';
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getName();
|
|
|
|
}
|
2016-02-20 14:56:17 +01:00
|
|
|
}
|