From 8a30480a457cf187132dac2f5c176c9b89bcd0c7 Mon Sep 17 00:00:00 2001 From: ORelio Date: Fri, 13 Aug 2021 05:52:57 +0200 Subject: [PATCH] [Releases3DSBridge] Remove requests to IGN (#2246) This part of the bridge was meant to find game info on IGN but rarely found useful results, and is harder to maintain than the rest of this bridge due to changes at IGN. --- bridges/Releases3DSBridge.php | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/bridges/Releases3DSBridge.php b/bridges/Releases3DSBridge.php index 686e7c5d..d5d0ee13 100644 --- a/bridges/Releases3DSBridge.php +++ b/bridges/Releases3DSBridge.php @@ -46,36 +46,6 @@ class Releases3DSBridge extends BridgeAbstract { $type = extractFromDelimiters($element, '', ''); $card = extractFromDelimiters($element, '', ''); - //Retrieve cover art and short desc from IGN? - $ignResult = false; - $ignDescription = ''; - $ignLink = ''; - $ignDate = time(); - $ignCoverArt = ''; - - $ignSearchUrl = 'https://www.ign.com/search?q=' . urlencode($name); - if($ignResult = getSimpleHTMLDOMCached($ignSearchUrl)) { - $ignCoverArt = $ignResult->find('div.search-item-media', 0); - $ignDesc = $ignResult->find('div.search-item-description', 0); - $ignLink = $ignResult->find('div.search-item-sub-title', 0); - $ignDate = $ignResult->find('span.publish-date', 0); - if (is_object($ignCoverArt)) - $ignCoverArt = $ignCoverArt->find('img', 0); - if (is_object($ignLink)) - $ignLink = $ignLink->find('a', 1); - if (is_object($ignDate)) - $ignDate = strtotime(trim($ignDate->plaintext)); - if (is_object($ignCoverArt) && is_object($ignDesc) && is_object($ignLink)) { - $ignDescription = '
' - . $ignDesc->plaintext - . ' More at IGN
'; - } - } - //Main section : Release description from 3DS database $releaseDescription = '

Release Details

Release ID: ' . $id . '
Game Name: ' . $name