TYPO3 CMS  TYPO3_8-7
FrontendRequestHandler.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
21 {
26 
30  protected $extensionService;
31 
35  protected $cacheHashEnforcer;
36 
41  {
42  $this->configurationManager = $configurationManager;
43  }
44 
48  public function injectExtensionService(\TYPO3\CMS\Extbase\Service\ExtensionService $extensionService)
49  {
50  $this->extensionService = $extensionService;
51  }
52 
56  public function injectCacheHashEnforcer(\TYPO3\CMS\Extbase\Mvc\Web\CacheHashEnforcer $cacheHashEnforcer)
57  {
58  $this->cacheHashEnforcer = $cacheHashEnforcer;
59  }
60 
66  public function handleRequest()
67  {
68  $request = $this->requestBuilder->build();
69  if ($this->extensionService->isActionCacheable(null, null, $request->getControllerName(), $request->getControllerActionName())) {
70  $request->setIsCached(true);
71  } else {
72  $contentObject = $this->configurationManager->getContentObject();
73  if ($contentObject->getUserObjectType() === \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::OBJECTTYPE_USER) {
74  $contentObject->convertToUserIntObject();
75  // \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::convertToUserIntObject() will recreate the object, so we have to stop the request here
76  return null;
77  }
78  $request->setIsCached(false);
79  }
80 
81  if ($this->configurationManager->isFeatureEnabled('requireCHashArgumentForActionArguments')) {
82  $pluginNamespace = $this->extensionService->getPluginNamespace(
83  $request->getControllerExtensionName(),
84  $request->getPluginName()
85  );
86  $this->cacheHashEnforcer->enforceForRequest($request, $pluginNamespace);
87  }
88 
90  $response = $this->objectManager->get(\TYPO3\CMS\Extbase\Mvc\Web\Response::class);
91  $this->dispatcher->dispatch($request, $response);
92  return $response;
93  }
94 
100  public function canHandleRequest()
101  {
102  return $this->environmentService->isEnvironmentInFrontendMode();
103  }
104 }
injectCacheHashEnforcer(\TYPO3\CMS\Extbase\Mvc\Web\CacheHashEnforcer $cacheHashEnforcer)
injectExtensionService(\TYPO3\CMS\Extbase\Service\ExtensionService $extensionService)
injectConfigurationManager(\TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface $configurationManager)