vendor/sulu/sulu/src/Sulu/Bundle/PageBundle/Controller/WebspaceController.php line 31

Open in your IDE?
  1. <?php
  2. /*
  3. * This file is part of Sulu.
  4. *
  5. * (c) Sulu GmbH
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. namespace Sulu\Bundle\PageBundle\Controller;
  11. use FOS\RestBundle\Context\Context;
  12. use FOS\RestBundle\View\ViewHandlerInterface;
  13. use HandcraftedInTheAlps\RestRoutingBundle\Routing\ClassResourceInterface;
  14. use Sulu\Bundle\AdminBundle\Controller\AdminController;
  15. use Sulu\Bundle\PageBundle\Admin\PageAdmin;
  16. use Sulu\Component\Rest\AbstractRestController;
  17. use Sulu\Component\Rest\ListBuilder\CollectionRepresentation;
  18. use Sulu\Component\Rest\RequestParametersTrait;
  19. use Sulu\Component\Security\Authorization\PermissionTypes;
  20. use Sulu\Component\Security\Authorization\SecurityCheckerInterface;
  21. use Sulu\Component\Security\Authorization\SecurityCondition;
  22. use Sulu\Component\Security\SecuredControllerInterface;
  23. use Sulu\Component\Webspace\Manager\WebspaceManagerInterface;
  24. use Symfony\Component\HttpFoundation\Request;
  25. use Symfony\Component\HttpFoundation\RequestStack;
  26. use Symfony\Component\HttpFoundation\Response;
  27. @trigger_deprecation(
  28. 'sulu/sulu',
  29. '2.0',
  30. 'The "%s" class is deprecated, use data from "%s" instead.',
  31. WebspaceController::class,
  32. AdminController::class
  33. );
  34. /**
  35. * @deprecated Deprecated since Sulu 2.0, use data from Sulu\Bundle\AdminBundle\Controller\AdminController::configAction
  36. * Remember deleting the resource configuration from Sulu\Bundle\AdminBundle\DependencyInjection\SuluAdminExtension.
  37. */
  38. class WebspaceController extends AbstractRestController implements ClassResourceInterface, SecuredControllerInterface
  39. {
  40. use RequestParametersTrait;
  41. /**
  42. * @var WebspaceManagerInterface
  43. */
  44. private $webspaceManager;
  45. /**
  46. * @var SecurityCheckerInterface
  47. */
  48. private $securityChecker;
  49. /**
  50. * @var RequestStack
  51. */
  52. private $requestStack;
  53. public function __construct(
  54. ViewHandlerInterface $viewHandler,
  55. WebspaceManagerInterface $webspaceManager,
  56. SecurityCheckerInterface $securityChecker,
  57. RequestStack $requestStack
  58. ) {
  59. parent::__construct($viewHandler);
  60. $this->webspaceManager = $webspaceManager;
  61. $this->securityChecker = $securityChecker;
  62. $this->requestStack = $requestStack;
  63. }
  64. /**
  65. * Returns webspaces.
  66. *
  67. * @return Response
  68. */
  69. public function cgetAction(Request $request)
  70. {
  71. $checkForPermissions = $request->get('checkForPermissions', true);
  72. $locale = $this->getRequestParameter($request, 'locale', true);
  73. $webspaces = [];
  74. foreach ($this->webspaceManager->getWebspaceCollection() as $webspace) {
  75. if ($checkForPermissions) {
  76. $securityContext = $this->getSecurityContextByWebspace($webspace->getKey());
  77. $condition = new SecurityCondition($securityContext);
  78. if (!$this->securityChecker->hasPermission($condition, PermissionTypes::VIEW)) {
  79. continue;
  80. }
  81. }
  82. $webspaces[] = $webspace;
  83. }
  84. $context = new Context();
  85. $context->setAttribute('locale', $locale);
  86. $view = $this->view(new CollectionRepresentation($webspaces, 'webspaces'));
  87. $view->setContext($context);
  88. return $this->handleView($view);
  89. }
  90. /**
  91. * Returns webspace config by key.
  92. *
  93. * @param string $webspaceKey
  94. *
  95. * @return Response
  96. */
  97. public function getAction($webspaceKey)
  98. {
  99. return $this->handleView(
  100. $this->view($this->webspaceManager->findWebspaceByKey($webspaceKey))
  101. );
  102. }
  103. public function getSecurityContext()
  104. {
  105. $request = $this->requestStack->getCurrentRequest();
  106. $webspaceKey = $request ? $request->get('webspaceKey') : null;
  107. if (null !== $webspaceKey) {
  108. return $this->getSecurityContextByWebspace($webspaceKey);
  109. }
  110. return null;
  111. }
  112. /**
  113. * Returns security-context by webspace.
  114. *
  115. * @param string $webspaceKey
  116. *
  117. * @return string
  118. */
  119. private function getSecurityContextByWebspace($webspaceKey)
  120. {
  121. return PageAdmin::SECURITY_CONTEXT_PREFIX . $webspaceKey;
  122. }
  123. }