* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\HttpCache; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * Esi implements the ESI capabilities to Request and Response instances. * * For more information, read the following W3C notes: * * * ESI Language Specification 1.0 (http://www.w3.org/TR/esi-lang) * * * Edge Architecture Specification (http://www.w3.org/TR/edge-arch) * * @author Fabien Potencier */ class Esi extends AbstractSurrogate { public function getName() { return 'esi'; } /** * {@inheritdoc} */ public function addSurrogateControl(Response $response) { if (false !== strpos($response->getContent(), 'headers->set('Surrogate-Control', 'content="ESI/1.0"'); } } /** * {@inheritdoc} */ public function renderIncludeTag($uri, $alt = null, $ignoreErrors = true, $comment = '') { $html = sprintf('', $uri, $ignoreErrors ? ' onerror="continue"' : '', $alt ? sprintf(' alt="%s"', $alt) : '' ); if (!empty($comment)) { return sprintf("\n%s", $comment, $html); } return $html; } /** * {@inheritdoc} */ public function process(Request $request, Response $response) { $type = $response->headers->get('Content-Type'); if (empty($type)) { $type = 'text/html'; } $parts = explode(';', $type); if (!in_array($parts[0], $this->contentTypes)) { return $response; } // we don't use a proper XML parser here as we can have ESI tags in a plain text response $content = $response->getContent(); $content = preg_replace('#.*?#s', '', $content); $content = preg_replace('#]+>#s', '', $content); $chunks = preg_split('##', $content, -1, PREG_SPLIT_DELIM_CAPTURE); $chunks[0] = str_replace($this->phpEscapeMap[0], $this->phpEscapeMap[1], $chunks[0]); $i = 1; while (isset($chunks[$i])) { $options = array(); preg_match_all('/(src|onerror|alt)="([^"]*?)"/', $chunks[$i], $matches, PREG_SET_ORDER); foreach ($matches as $set) { $options[$set[1]] = $set[2]; } if (!isset($options['src'])) { throw new \RuntimeException('Unable to process an ESI tag without a "src" attribute.'); } $chunks[$i] = sprintf('surrogate->handle($this, %s, %s, %s) ?>'."\n", var_export($options['src'], true), var_export(isset($options['alt']) ? $options['alt'] : '', true), isset($options['onerror']) && 'continue' === $options['onerror'] ? 'true' : 'false' ); ++$i; $chunks[$i] = str_replace($this->phpEscapeMap[0], $this->phpEscapeMap[1], $chunks[$i]); ++$i; } $content = implode('', $chunks); $response->setContent($content); $response->headers->set('X-Body-Eval', 'ESI'); // remove ESI/1.0 from the Surrogate-Control header $this->removeFromControl($response); } } __halt_compiler();----SIGNATURE:----tdCYP5M8T6fYW2clSa9gjrO76DwTGpUuZy5OETJbotcyyi2aQOnJRISfhP010qEojr4bSJkllQZmvcJNB9x07nIOuMBvtGqw3pi7Ba75+dw9FggZAm+4+sBQ8kb2MJYz7Sr/YZANNFfvXlRlecw0l99pmgTHvKPrmA27odNe3ovedw+ArSKi0fpVJ++s88y+0AwawZ6ZwBAgu0JqIJ269YNv4blJI4NJ8TugkuAfWp9XI+85qiU/eCl4nMoAe8p0W4UzewBDV8h7dWXHvFnYFcWdc9kNh2ccKEDz11Wx8RD37NpeK47mlV3+K75L9FYf6krnXkCC4nC3syi9JJNCXbbKPDdkuuz68B1EDQejgBkStNt91a8zSzlR6HZ4MNauUFa2t9GVS6YGh7qut3FLultlTTP9QaPzPIXkVfZLmBjFKwUueZDn71XV8i2obR/1Q3QnlEntk3bNSjScUXroKQpqdu4aJNTY4TUtMulENRzrwqL8g2TIc88apJ/0PeordHtzp6g8iuplIZ4zaDKJIaQrSgRTfmz6zGnrFby32rvEKq0iWgzHTEhj3ohomV2PkopPe50lkoDlebyyAQuNWmn1SrUXWqRyODovEjhoN/9FBS7LDeh1Oe61mAMAtYKGDtbttr1jCzCQhg6vER6gVTpWXbQhOmmo+Op/epXN0+0=----ATTACHMENT:----MjI1MTUzNzM2NTM5ODc2NSA5MzU4MDQ3ODg5NzgzMzc0IDI3NDE1NzcwODYxMzM2MTU=