2015-10-22 14:55:11 +02:00
|
|
|
<?php
|
|
|
|
class Releases3DSBridge extends BridgeAbstract {
|
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
const MAINTAINER = 'ORelio';
|
|
|
|
const NAME = '3DS Scene Releases';
|
|
|
|
const URI = 'http://www.3dsdb.com/';
|
2016-09-25 17:04:28 +02:00
|
|
|
const CACHE_TIMEOUT = 10800; // 3h
|
2017-02-11 16:16:56 +01:00
|
|
|
const DESCRIPTION = 'Returns the newest scene releases.';
|
|
|
|
|
|
|
|
public function collectData(){
|
|
|
|
|
|
|
|
function extractFromDelimiters($string, $start, $end){
|
2017-07-29 19:28:00 +02:00
|
|
|
if(strpos($string, $start) !== false) {
|
2017-02-11 16:16:56 +01:00
|
|
|
$section_retrieved = substr($string, strpos($string, $start) + strlen($start));
|
|
|
|
$section_retrieved = substr($section_retrieved, 0, strpos($section_retrieved, $end));
|
|
|
|
return $section_retrieved;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function typeToString($type){
|
2017-07-29 19:28:00 +02:00
|
|
|
switch($type) {
|
2017-02-11 16:16:56 +01:00
|
|
|
case 1: return '3DS Game';
|
|
|
|
case 4: return 'eShop';
|
|
|
|
default: return '??? (' . $type . ')';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function cardToString($card){
|
2017-07-29 19:28:00 +02:00
|
|
|
switch($card) {
|
2017-02-11 16:16:56 +01:00
|
|
|
case 1: return 'Regular (CARD1)';
|
|
|
|
case 2: return 'NAND (CARD2)';
|
|
|
|
default: return '??? (' . $card . ')';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$dataUrl = self::URI . 'xml.php';
|
|
|
|
$xml = getContents($dataUrl)
|
|
|
|
or returnServerError('Could not request 3dsdb: ' . $dataUrl);
|
|
|
|
$limit = 0;
|
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
foreach(array_reverse(explode('<release>', $xml)) as $element) {
|
|
|
|
if($limit >= 5) {
|
2017-02-11 16:16:56 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
if(strpos($element, '</release>') === false) {
|
2017-02-11 16:16:56 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$releasename = extractFromDelimiters($element, '<releasename>', '</releasename>');
|
2017-07-29 19:28:00 +02:00
|
|
|
if(empty($releasename)) {
|
2017-02-11 16:16:56 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$id = extractFromDelimiters($element, '<id>', '</id>');
|
|
|
|
$name = extractFromDelimiters($element, '<name>', '</name>');
|
|
|
|
$publisher = extractFromDelimiters($element, '<publisher>', '</publisher>');
|
|
|
|
$region = extractFromDelimiters($element, '<region>', '</region>');
|
|
|
|
$group = extractFromDelimiters($element, '<group>', '</group>');
|
|
|
|
$imagesize = extractFromDelimiters($element, '<imagesize>', '</imagesize>');
|
|
|
|
$serial = extractFromDelimiters($element, '<serial>', '</serial>');
|
|
|
|
$titleid = extractFromDelimiters($element, '<titleid>', '</titleid>');
|
|
|
|
$imgcrc = extractFromDelimiters($element, '<imgcrc>', '</imgcrc>');
|
|
|
|
$filename = extractFromDelimiters($element, '<filename>', '</filename>');
|
|
|
|
$trimmedsize = extractFromDelimiters($element, '<trimmedsize>', '</trimmedsize>');
|
|
|
|
$firmware = extractFromDelimiters($element, '<firmware>', '</firmware>');
|
|
|
|
$type = extractFromDelimiters($element, '<type>', '</type>');
|
|
|
|
$card = extractFromDelimiters($element, '<card>', '</card>');
|
|
|
|
|
|
|
|
//Retrieve cover art and short desc from IGN?
|
|
|
|
$ignResult = false;
|
|
|
|
$ignDescription = '';
|
|
|
|
$ignLink = '';
|
|
|
|
$ignDate = time();
|
|
|
|
$ignCoverArt = '';
|
|
|
|
|
|
|
|
$ignSearchUrl = 'http://www.ign.com/search?q=' . urlencode($name);
|
2017-07-29 19:28:00 +02:00
|
|
|
if($ignResult = getSimpleHTMLDOM($ignSearchUrl)) {
|
2017-02-11 16:16:56 +01:00
|
|
|
$ignCoverArt = $ignResult->find('div.search-item-media', 0)->find('img', 0)->src;
|
|
|
|
$ignDesc = $ignResult->find('div.search-item-description', 0)->plaintext;
|
|
|
|
$ignLink = $ignResult->find('div.search-item-sub-title', 0)->find('a', 1)->href;
|
|
|
|
$ignDate = strtotime(trim($ignResult->find('span.publish-date', 0)->plaintext));
|
|
|
|
$ignDescription = '<div><img src="'
|
|
|
|
. $ignCoverArt
|
|
|
|
. '" /></div><div>'
|
|
|
|
. $ignDesc
|
|
|
|
. ' <a href="'
|
|
|
|
. $ignLink
|
|
|
|
. '">More at IGN</a></div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
//Main section : Release description from 3DS database
|
|
|
|
$releaseDescription = '<h3>Release Details</h3><b>Release ID: </b>' . $id
|
|
|
|
. '<br /><b>Game Name: </b>' . $name
|
|
|
|
. '<br /><b>Publisher: </b>' . $publisher
|
|
|
|
. '<br /><b>Region: </b>' . $region
|
|
|
|
. '<br /><b>Group: </b>' . $group
|
|
|
|
. '<br /><b>Image size: </b>' . (intval($imagesize) / 8)
|
|
|
|
. 'MB<br /><b>Serial: </b>' . $serial
|
|
|
|
. '<br /><b>Title ID: </b>' . $titleid
|
|
|
|
. '<br /><b>Image CRC: </b>' . $imgcrc
|
|
|
|
. '<br /><b>File Name: </b>' . $filename
|
|
|
|
. '<br /><b>Release Name: </b>' . $releasename
|
|
|
|
. '<br /><b>Trimmed size: </b>' . intval(intval($trimmedsize) / 1048576)
|
|
|
|
. 'MB<br /><b>Firmware: </b>' . $firmware
|
|
|
|
. '<br /><b>Type: </b>' . typeToString($type)
|
|
|
|
. '<br /><b>Card: </b>' . cardToString($card)
|
|
|
|
. '<br />';
|
|
|
|
|
|
|
|
//Build search links section to facilitate release search using search engines
|
|
|
|
$releaseNameEncoded = urlencode(str_replace(' ', '+', $releasename));
|
|
|
|
$searchLinkGoogle = 'https://google.com/?q=' . $releaseNameEncoded;
|
|
|
|
$searchLinkDuckDuckGo = 'https://duckduckgo.com/?q=' . $releaseNameEncoded;
|
|
|
|
$searchLinkQwant = 'https://lite.qwant.com/?q=' . $releaseNameEncoded . '&t=web';
|
|
|
|
$releaseSearchLinks = '<h3>Search this release</h3><ul><li><a href="'
|
|
|
|
. $searchLinkGoogle
|
|
|
|
. '">Search using Google</a></li><li><a href="'
|
|
|
|
. $searchLinkDuckDuckGo
|
|
|
|
. '">Search using DuckDuckGo</a></li><li><a href="'
|
|
|
|
. $searchLinkQwant
|
|
|
|
. '">Search using Qwant</a></li></ul>';
|
|
|
|
|
|
|
|
//Build and add final item with the above three sections
|
|
|
|
$item = array();
|
|
|
|
$item['title'] = $name;
|
|
|
|
$item['author'] = $publisher;
|
|
|
|
$item['timestamp'] = $ignDate;
|
|
|
|
$item['uri'] = empty($ignLink) ? $searchLinkDuckDuckGo : $ignLink;
|
|
|
|
$item['content'] = $ignDescription . $releaseDescription . $releaseSearchLinks;
|
|
|
|
$this->items[] = $item;
|
|
|
|
$limit++;
|
|
|
|
}
|
|
|
|
}
|
2015-10-22 14:55:11 +02:00
|
|
|
}
|