![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-admin-analytics/ViewModel/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\AdminAnalytics\ViewModel; use Magento\Config\Model\Config\Backend\Admin\Custom; use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\App\ProductMetadataInterface; use Magento\Backend\Model\Auth\Session; use Magento\Framework\App\State; use Magento\Framework\View\Element\Block\ArgumentInterface; use Magento\Store\Model\Information; /** * Gets user version and mode */ class Metadata implements ArgumentInterface { /** * @var State */ private $appState; /** * @var Session */ private $authSession; /** * @var ProductMetadataInterface */ private $productMetadata; /** * @var ScopeConfigInterface */ private $config; /** * @param ProductMetadataInterface $productMetadata * @param Session $authSession * @param State $appState * @param ScopeConfigInterface $config */ public function __construct( ProductMetadataInterface $productMetadata, Session $authSession, State $appState, ScopeConfigInterface $config ) { $this->productMetadata = $productMetadata; $this->authSession = $authSession; $this->appState = $appState; $this->config = $config; } /** * Get product version * * @return string */ public function getMagentoVersion() :string { return $this->productMetadata->getVersion(); } /** * Get product edition * * @return string */ public function getProductEdition(): string { return $this->productMetadata->getEdition(); } /** * Get current user id (hash generated from email) * * @return string */ public function getCurrentUser() :string { return hash('sha256', 'ADMIN_USER' . $this->authSession->getUser()->getEmail()); } /** * Get Magento mode that the user is using * * @return string */ public function getMode() :string { return $this->appState->getMode(); } /** * Get created date for current user * * @return string */ public function getCurrentUserCreatedDate(): string { return $this->authSession->getUser()->getCreated(); } /** * Get log date for current user * * @return string|null */ public function getCurrentUserLogDate(): ?string { return $this->authSession->getUser()->getLogdate(); } /** * Get secure base URL * * @param string $scope * @param string|null $scopeCode * @return string|null */ public function getSecureBaseUrlForScope( string $scope = ScopeConfigInterface::SCOPE_TYPE_DEFAULT, ?string $scopeCode = null ): ?string { return $this->config->getValue(Custom::XML_PATH_SECURE_BASE_URL, $scope, $scopeCode); } /** * Get store name * * @param string $scope * @param string|null $scopeCode * @return string|null */ public function getStoreNameForScope( string $scope = ScopeConfigInterface::SCOPE_TYPE_DEFAULT, ?string $scopeCode = null ): ?string { return $this->config->getValue(Information::XML_PATH_STORE_INFO_NAME, $scope, $scopeCode); } /** * Get current user role name * * @return string */ public function getCurrentUserRoleName(): string { return $this->authSession->getUser()->getRole()->getRoleName(); } }