123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Integration\Block\Adminhtml\Integration\Edit\Tab;
- use Magento\Integration\Controller\Adminhtml\Integration as IntegrationController;
- use Magento\Integration\Model\Integration as IntegrationModel;
- /**
- * Class for handling API section within integration.
- *
- * @api
- * @since 100.0.2
- */
- class Webapi extends \Magento\Backend\Block\Widget\Form\Generic implements
- \Magento\Backend\Block\Widget\Tab\TabInterface
- {
- /**
- * Root ACL Resource
- *
- * @var \Magento\Framework\Acl\RootResource
- */
- protected $rootResource;
- /**
- * Acl resource provider
- *
- * @var \Magento\Framework\Acl\AclResource\ProviderInterface
- */
- protected $aclResourceProvider;
- /**
- * @var \Magento\Integration\Helper\Data
- */
- protected $integrationData;
- /**
- * @var \Magento\Integration\Api\IntegrationServiceInterface
- */
- protected $integrationService;
- /**
- * Initialize dependencies.
- *
- * @param \Magento\Backend\Block\Template\Context $context
- * @param \Magento\Framework\Registry $registry
- * @param \Magento\Framework\Data\FormFactory $formFactory
- * @param \Magento\Framework\Acl\RootResource $rootResource
- * @param \Magento\Framework\Acl\AclResource\ProviderInterface $aclResourceProvider
- * @param \Magento\Integration\Helper\Data $integrationData
- * @param \Magento\Integration\Api\IntegrationServiceInterface $integrationService
- * @param array $data
- *
- * @SuppressWarnings(PHPMD.ExcessiveParameterList)
- */
- public function __construct(
- \Magento\Backend\Block\Template\Context $context,
- \Magento\Framework\Registry $registry,
- \Magento\Framework\Data\FormFactory $formFactory,
- \Magento\Framework\Acl\RootResource $rootResource,
- \Magento\Framework\Acl\AclResource\ProviderInterface $aclResourceProvider,
- \Magento\Integration\Helper\Data $integrationData,
- \Magento\Integration\Api\IntegrationServiceInterface $integrationService,
- array $data = []
- ) {
- $this->rootResource = $rootResource;
- $this->aclResourceProvider = $aclResourceProvider;
- $this->integrationData = $integrationData;
- $this->integrationService = $integrationService;
- parent::__construct($context, $registry, $formFactory, $data);
- }
- /**
- * Get tab label
- *
- * @return \Magento\Framework\Phrase
- * @codeCoverageIgnore
- */
- public function getTabLabel()
- {
- return __('API');
- }
- /**
- * Get tab title
- *
- * @return string
- * @codeCoverageIgnore
- */
- public function getTabTitle()
- {
- return $this->getTabLabel();
- }
- /**
- * Whether tab is available
- *
- * @return bool
- */
- public function canShowTab()
- {
- $integrationData = $this->_coreRegistry->registry(IntegrationController::REGISTRY_KEY_CURRENT_INTEGRATION);
- return !isset(
- $integrationData[Info::DATA_SETUP_TYPE]
- ) || $integrationData[Info::DATA_SETUP_TYPE] != IntegrationModel::TYPE_CONFIG;
- }
- /**
- * Whether tab is visible
- *
- * @return bool
- * @codeCoverageIgnore
- */
- public function isHidden()
- {
- return false;
- }
- /**
- * Class constructor
- *
- * @return void
- */
- protected function _construct()
- {
- parent::_construct();
- $savedFromData = $this->retrieveFormResources();
- if (false !== $savedFromData) {
- $this->setSelectedResources($savedFromData);
- return;
- }
- $integrationData = $this->_coreRegistry->registry(IntegrationController::REGISTRY_KEY_CURRENT_INTEGRATION);
- if (is_array($integrationData)
- && isset($integrationData['integration_id'])
- && $integrationData['integration_id']
- ) {
- $this->setSelectedResources(
- $this->integrationService->getSelectedResources($integrationData['integration_id'])
- );
- } else {
- $this->setSelectedResources([]);
- }
- }
- /**
- * Retrieve saved resource
- *
- * @return array|bool
- * @since 100.1.0
- */
- protected function retrieveFormResources()
- {
- $savedData = $this->_coreRegistry->registry(
- \Magento\Integration\Controller\Adminhtml\Integration::REGISTRY_KEY_CURRENT_RESOURCE
- );
- if (is_array($savedData)) {
- if ($savedData['all_resources']) {
- return [$this->rootResource->getId()];
- }
- return $savedData['resource'];
- }
- return false;
- }
- /**
- * Check if everything is allowed
- *
- * @return bool
- */
- public function isEverythingAllowed()
- {
- return in_array($this->rootResource->getId(), $this->getSelectedResources());
- }
- /**
- * Get Json Representation of Resource Tree
- *
- * @return array
- */
- public function getTree()
- {
- return $this->integrationData->mapResources($this->getAclResources());
- }
- /**
- * Get lit of all ACL resources declared in the system.
- *
- * @return array
- */
- private function getAclResources()
- {
- $resources = $this->aclResourceProvider->getAclResources();
- $configResource = array_filter(
- $resources,
- function ($node) {
- return isset($node['id'])
- && $node['id'] == 'Magento_Backend::admin';
- }
- );
- $configResource = reset($configResource);
- return isset($configResource['children']) ? $configResource['children'] : [];
- }
- }
|