X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FTemplateParser.php;h=3de70fa2a21b34c197a9d0a7e03a04bb18b5cd64;hb=59ebff658ce912c1b0e7ef8d8f9bfec5a4e17b39;hp=559ffb9ba28aad81d0a2b39a5660d2b3f9cb4561;hpb=198f85b1d9a68f172d1b5fccbd44ad59050304af;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/TemplateParser.php b/includes/TemplateParser.php index 559ffb9ba2..d6b101b26d 100644 --- a/includes/TemplateParser.php +++ b/includes/TemplateParser.php @@ -49,9 +49,9 @@ class TemplateParser { * Constructs the location of the the source Mustache template * @param string $templateName The name of the template * @return string - * @throws Exception Disallows upwards directory traversal via $templateName + * @throws UnexpectedValueException Disallows upwards directory traversal via $templateName */ - public function getTemplateFilename( $templateName ) { + protected function getTemplateFilename( $templateName ) { // Prevent upwards directory traversal using same methods as Title::secureAndSplit if ( strpos( $templateName, '.' ) !== false && @@ -65,7 +65,7 @@ class TemplateParser { substr( $templateName, -3 ) === '/..' ) ) { - throw new Exception( "Malformed \$templateName: $templateName" ); + throw new UnexpectedValueException( "Malformed \$templateName: $templateName" ); } return "{$this->templateDir}/{$templateName}.mustache"; @@ -74,19 +74,19 @@ class TemplateParser { /** * Returns a given template function if found, otherwise throws an exception. * @param string $templateName The name of the template (without file suffix) - * @return Function - * @throws Exception + * @return callable + * @throws RuntimeException */ - public function getTemplate( $templateName ) { + protected function getTemplate( $templateName ) { // If a renderer has already been defined for this template, reuse it - if ( isset( $this->renderers[$templateName] ) ) { + if ( isset( $this->renderers[$templateName] ) && is_callable( $this->renderers[$templateName] ) ) { return $this->renderers[$templateName]; } $filename = $this->getTemplateFilename( $templateName ); if ( !file_exists( $filename ) ) { - throw new Exception( "Could not locate template: {$filename}" ); + throw new RuntimeException( "Could not locate template: {$filename}" ); } // Read the template file @@ -99,67 +99,83 @@ class TemplateParser { $config = ConfigFactory::getDefaultInstance()->makeConfig( 'main' ); $secretKey = $config->get( 'SecretKey' ); - // See if the compiled PHP code is stored in cache. - // CACHE_ACCEL throws an exception if no suitable object cache is present, so fall - // back to CACHE_ANYTHING. - try { - $cache = wfGetCache( CACHE_ACCEL ); - } catch ( Exception $e ) { - $cache = wfGetCache( CACHE_ANYTHING ); - } - $key = wfMemcKey( 'template', $templateName, $fastHash ); - $code = $this->forceRecompile ? null : $cache->get( $key ); - - if ( !$code ) { - // Compile the template into PHP code - $code = self::compile( $fileContents ); + if ( $secretKey ) { + // See if the compiled PHP code is stored in cache. + // CACHE_ACCEL throws an exception if no suitable object cache is present, so fall + // back to CACHE_ANYTHING. + $cache = ObjectCache::newAccelerator( CACHE_ANYTHING ); + $key = wfMemcKey( 'template', $templateName, $fastHash ); + $code = $this->forceRecompile ? null : $cache->get( $key ); if ( !$code ) { - throw new Exception( "Could not compile template: {$filename}" ); - } + $code = $this->compileForEval( $fileContents, $filename ); - // Strip the "set( $key, hash_hmac( 'sha256', $code, $secretKey ) . $code ); + } else { + // Verify the integrity of the cached PHP code + $keyedHash = substr( $code, 0, 64 ); + $code = substr( $code, 64 ); + if ( $keyedHash !== hash_hmac( 'sha256', $code, $secretKey ) ) { + // Generate a notice if integrity check fails + trigger_error( "Template failed integrity check: {$filename}" ); + } } + // If there is no secret key available, don't use cache + } else { + $code = $this->compileForEval( $fileContents, $filename ); + } - $renderer = eval( $code ); + $renderer = eval( $code ); + if ( !is_callable( $renderer ) ) { + throw new RuntimeException( "Requested template, {$templateName}, is not callable" ); + } + $this->renderers[$templateName] = $renderer; + return $renderer; + } - // Prefix the code with a keyed hash (64 hex chars) as an integrity check - $code = hash_hmac( 'sha256', $code, $secretKey ) . $code; + /** + * Wrapper for compile() function that verifies successful compilation and strips + * out the 'compile( $fileContents ); - // Cache the compiled PHP code - $cache->set( $key, $code ); - } else { - // Verify the integrity of the cached PHP code - $keyedHash = substr( $code, 0, 64 ); - $code = substr( $code, 64 ); - if ( $keyedHash === hash_hmac( 'sha256', $code, $secretKey ) ) { - $renderer = eval( $code ); - } else { - throw new Exception( "Template failed integrity check: {$filename}" ); - } + if ( !$code ) { + throw new RuntimeException( "Could not compile template: {$filename}" ); + } + + // Strip the "renderers[$templateName] = $renderer; + return $code; } /** * Compile the Mustache code into PHP code using LightnCandy * @param string $code Mustache code - * @return string PHP code - * @throws Exception + * @return string PHP code (with ' LightnCandy::FLAG_ERROR_EXCEPTION + 'flags' => LightnCandy::FLAG_ERROR_EXCEPTION, + 'basedir' => $this->templateDir, + 'fileext' => '.mustache', ) ); }