mirror of
https://gh.wpcy.net/https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2026-05-01 11:50:23 +08:00
337 lines
7.9 KiB
PHP
337 lines
7.9 KiB
PHP
<?php
|
|
/**
|
|
* SuiteCRM is a customer relationship management program developed by SuiteCRM Ltd.
|
|
* Copyright (C) 2021 SuiteCRM Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU Affero General Public License version 3 as published by the
|
|
* Free Software Foundation with the addition of the following permission added
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUITECRM, SUITECRM DISCLAIMS THE
|
|
* WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License
|
|
* version 3, these Appropriate Legal Notices must retain the display of the
|
|
* "Supercharged by SuiteCRM" logo. If the display of the logos is not reasonably
|
|
* feasible for technical reasons, the Appropriate Legal Notices must display
|
|
* the words "Supercharged by SuiteCRM".
|
|
*/
|
|
|
|
namespace App\Authentication\LegacyHandler;
|
|
|
|
use App\Engine\LegacyHandler\LegacyHandler;
|
|
use App\Engine\LegacyHandler\LegacyScopeState;
|
|
use App\Install\Service\InstallationUtilsTrait;
|
|
use AuthenticationController;
|
|
use Symfony\Component\HttpFoundation\RequestStack;
|
|
use Symfony\Component\Security\Core\User\UserInterface;
|
|
|
|
/**
|
|
* Class Authentication
|
|
*/
|
|
class Authentication extends LegacyHandler
|
|
{
|
|
use InstallationUtilsTrait;
|
|
|
|
public const HANDLER_KEY = 'authentication';
|
|
protected $config;
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $systemSettings;
|
|
|
|
/**
|
|
* @var UserHandler
|
|
*/
|
|
private $userHandler;
|
|
|
|
/**
|
|
* LegacyHandler constructor.
|
|
* @param string $projectDir
|
|
* @param string $legacyDir
|
|
* @param string $legacySessionName
|
|
* @param string $defaultSessionName
|
|
* @param LegacyScopeState $legacyScopeState
|
|
* @param RequestStack $session
|
|
* @param array $systemSettings
|
|
* @param UserHandler $userHandler
|
|
*/
|
|
public function __construct(
|
|
string $projectDir,
|
|
string $legacyDir,
|
|
string $legacySessionName,
|
|
string $defaultSessionName,
|
|
LegacyScopeState $legacyScopeState,
|
|
RequestStack $session,
|
|
array $systemSettings,
|
|
UserHandler $userHandler
|
|
) {
|
|
parent::__construct(
|
|
$projectDir,
|
|
$legacyDir,
|
|
$legacySessionName,
|
|
$defaultSessionName,
|
|
$legacyScopeState,
|
|
$session
|
|
);
|
|
$this->systemSettings = $systemSettings;
|
|
$this->userHandler = $userHandler;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getHandlerKey(): string
|
|
{
|
|
return self::HANDLER_KEY;
|
|
}
|
|
|
|
/**
|
|
* Set the config
|
|
*
|
|
* @param $config
|
|
* @return $this
|
|
*/
|
|
public function setConfig($config): self
|
|
{
|
|
$this->config = $config;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Is current user admin
|
|
*
|
|
* @param UserInterface $user
|
|
* @return array
|
|
*/
|
|
public function needsRedirect(UserInterface $user): array
|
|
{
|
|
$this->init();
|
|
|
|
/** @var \User $current_user */
|
|
global $current_user;
|
|
|
|
$timezone = $current_user->getPreference('timezone');
|
|
$ut = $current_user->getPreference('ut');
|
|
|
|
if (empty($ut) || empty($timezone)) {
|
|
$this->close();
|
|
return $this->systemSettings['setup_wizard_route'] ?? ['route' => 'users/wizard'];
|
|
}
|
|
|
|
/* @noinspection PhpIncludeInspection */
|
|
require_once 'modules/Users/password_utils.php';
|
|
|
|
if (hasPasswordExpired($user->getUsername())) {
|
|
$this->close();
|
|
|
|
return [
|
|
'route' => 'users/ChangePassword',
|
|
'queryParams' => ['record' => $current_user->id]
|
|
];
|
|
}
|
|
|
|
$this->close();
|
|
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* Check if user completed login wizard
|
|
* @return bool
|
|
*/
|
|
public function getLoginWizardCompletedStatus(): bool
|
|
{
|
|
|
|
$this->init();
|
|
|
|
$user = $this->userHandler->getCurrentUser();
|
|
|
|
$ut = $user->getPreference('ut') ?? '';
|
|
|
|
$this->close();
|
|
|
|
if (empty($ut)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
/**
|
|
* Init legacy user session
|
|
*
|
|
* @param $username
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function initLegacyUserSession($username): bool
|
|
{
|
|
$this->init();
|
|
|
|
$language = $this->userHandler->getSessionLanguage();
|
|
if (empty($language)) {
|
|
$language = $this->userHandler->getSystemLanguage();
|
|
}
|
|
|
|
global $mod_strings;
|
|
|
|
$authController = $this->getAuthenticationController();
|
|
|
|
$result = $authController->initUserSession($username);
|
|
|
|
$userPrefLanguage = $this->userHandler->getUserPreferencesLanguage();
|
|
|
|
if (!empty($userPrefLanguage)){
|
|
$language = $userPrefLanguage;
|
|
}
|
|
|
|
$mod_strings = return_module_language($language, 'Users');
|
|
|
|
$this->close();
|
|
|
|
$this->userHandler->setSessionLanguage($language);
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Get auth controller
|
|
* @return AuthenticationController
|
|
*/
|
|
protected function getAuthenticationController(): AuthenticationController
|
|
{
|
|
return new AuthenticationController();
|
|
}
|
|
|
|
/**
|
|
* Legacy logout
|
|
*/
|
|
public function logout(): void
|
|
{
|
|
$this->init();
|
|
|
|
$authController = $this->getAuthenticationController();
|
|
|
|
$authController->logout(false, false, false);
|
|
|
|
$this->close();
|
|
}
|
|
|
|
/**
|
|
* Init new legacy session cookie
|
|
* @return void
|
|
*/
|
|
public function initLegacySystemSession(): void
|
|
{
|
|
$this->init();
|
|
$this->loadSystemUser();
|
|
$this->close();
|
|
}
|
|
|
|
/**
|
|
* Check if legacy suite session is active
|
|
* @return bool
|
|
*/
|
|
public function checkSession(): bool
|
|
{
|
|
$this->init();
|
|
|
|
$authController = $this->getAuthenticationController();
|
|
|
|
$result = $authController->checkSession();
|
|
|
|
$this->close();
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Check if user is active
|
|
* @return bool
|
|
*/
|
|
public function isUserActive(): bool
|
|
{
|
|
$this->init();
|
|
|
|
$authController = $this->getAuthenticationController();
|
|
|
|
$result = $authController->isUserActive();
|
|
|
|
$this->close();
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Check if suite app is installed
|
|
* @return bool
|
|
*/
|
|
public function getAppInstallStatus(): bool
|
|
{
|
|
$this->init();
|
|
|
|
$result = $this->isAppInstalled($this->legacyDir);
|
|
|
|
$this->close();
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Check if suite app is installed but locked
|
|
* @return bool
|
|
*/
|
|
public function getAppInstallerLockStatus(): bool
|
|
{
|
|
$this->init();
|
|
|
|
$result = $this->isAppInstallerLocked($this->legacyDir);
|
|
|
|
$this->close();
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* @param string $module
|
|
* @param string $key
|
|
* @return void
|
|
*/
|
|
public function callLegacyHooks(string $module, string $key): void
|
|
{
|
|
$this->init();
|
|
$this->startLegacyApp();
|
|
|
|
\LogicHook::initialize()->call_custom_logic($module, $key);
|
|
|
|
$this->close();
|
|
}
|
|
|
|
/**
|
|
* @param string $key
|
|
* @return void
|
|
*/
|
|
public function callLegacyUserHooks(string $key): void
|
|
{
|
|
$this->init();
|
|
$this->startLegacyApp();
|
|
|
|
//call business logic hook
|
|
if (isset($GLOBALS['current_user'])) {
|
|
$GLOBALS['current_user']->call_custom_logic($key);
|
|
}
|
|
|
|
$this->close();
|
|
}
|
|
}
|