From e3880a1c86acaa3bbd05786ad2f5c586e6511a58 Mon Sep 17 00:00:00 2001 From: Yaco Date: Tue, 19 Oct 2021 20:24:11 -0300 Subject: updates Maps to 7.13.0 --- .../Maps/src/DataAccess/JsonFileParser.php | 79 ---------------------- 1 file changed, 79 deletions(-) delete mode 100644 www/wiki/extensions/Maps/src/DataAccess/JsonFileParser.php (limited to 'www/wiki/extensions/Maps/src/DataAccess/JsonFileParser.php') diff --git a/www/wiki/extensions/Maps/src/DataAccess/JsonFileParser.php b/www/wiki/extensions/Maps/src/DataAccess/JsonFileParser.php deleted file mode 100644 index 81d6cfa0..00000000 --- a/www/wiki/extensions/Maps/src/DataAccess/JsonFileParser.php +++ /dev/null @@ -1,79 +0,0 @@ - - */ -class JsonFileParser implements ValueParser { - - private $fileFetcher; - private $pageContentFetcher; - private $defaultNamespace; - - public function __construct( $fileFetcher = null, PageContentFetcher $pageContentFetcher = null ) { - $this->fileFetcher = $fileFetcher instanceof FileFetcher - ? $fileFetcher : MapsFactory::newDefault()->getGeoJsonFileFetcher(); - - $this->pageContentFetcher = $pageContentFetcher instanceof PageContentFetcher - ? $pageContentFetcher : MapsFactory::newDefault()->getPageContentFetcher(); - - $this->defaultNamespace = NS_GEO_JSON; - } - - /** - * @param string $fileLocation - * - * @return array - * @throws ParseException - */ - public function parse( $fileLocation ) { - $jsonString = $this->getJsonString( $fileLocation ); - - if ( $jsonString === null ) { - return []; - } - - $json = json_decode( $jsonString, true ); - - if ( $json === null ) { - return []; - } - - return $json; - } - - private function getJsonString( string $fileLocation ): ?string { - $content = $this->pageContentFetcher->getPageContent( $fileLocation, $this->defaultNamespace ); - - if ( $content instanceof \JsonContent ) { - return $content->getNativeData(); - } - - // Prevent reading JSON files on the server - if( !filter_var( $fileLocation, FILTER_VALIDATE_URL) ) { - return null; - } - - try { - return $this->fileFetcher->fetchFile( $fileLocation ); - } - catch ( FileFetchingException $ex ) { - return null; - } - } - - -} -- cgit v1.2.1