allowAnyAccess = $allowAnyAccess; $this->applicationUser = $applicationUser; $this->applicationState = $applicationState; $this->config = $config; $this->metadata = $metadata; $this->entityManager = $entityManagerProxy; $this->authLoginFactory = $authLoginFactory; $this->auth2FAFactory = $auth2FAFactory; $this->authTokenManager = $authTokenManager; $this->log = $log; } protected function getDefaultAuthenticationMethod() { return $this->config->get('authenticationMethod', 'Espo'); } protected function setPortal(Portal $portal) { $this->portal = $portal; } protected function isPortal() : bool { return (bool) $this->portal || $this->applicationState->isPortal(); } protected function getPortal() : Portal { if ($this->portal) { return $this->portal; } return $this->applicationState->getPortal(); } /** * Process logging in. */ public function login( ?string $username, ?string $password, Request $request, ?string $authenticationMethod = null ) : Result { $isByTokenOnly = false; if ($authenticationMethod) { if (!$this->metadata->get(['authenticationMethods', $authenticationMethod, 'api'])) { $this->log->warning( "AUTH: Trying to use not allowed authentication method '{$authenticationMethod}'." ); return Result::fail('Not allowed authentication method'); } } if (!$authenticationMethod) { if ($request->getHeader('Espo-Authorization-By-Token') === 'true') { $isByTokenOnly = true; } } if (!$isByTokenOnly) { $this->checkFailedAttemptsLimit($request); } $authToken = null; $authTokenIsFound = false; if (!$authenticationMethod) { $authToken = $this->authTokenManager->get($password); if ($authToken && $authToken->getSecret()) { $sentSecret = $request->getCookieParam('auth-token-secret'); if ($sentSecret !== $authToken->getSecret()) { $authToken = null; } } } if ($authToken) { $authTokenIsFound = true; } if ($authToken && $authToken->isActive()) { if (!$this->allowAnyAccess) { if ($this->isPortal() && $authToken->getPortalId() !== $this->getPortal()->id) { $this->log->info( "AUTH: Trying to login to portal with a token not related to portal." ); return Result::fail('Denied'); } if (!$this->isPortal() && $authToken->getPortalId()) { $this->log->info( "AUTH: Trying to login to crm with a token related to portal." ); return Result::fail('Denied'); } } if ($this->allowAnyAccess) { if ($authToken->getPortalId() && !$this->isPortal()) { $portal = $this->entityManager->getEntity('Portal', $authToken->getPortalId()); if ($portal) { $this->setPortal($portal); } } } } else { $authToken = null; } if ($isByTokenOnly && !$authToken) { if ($username) { $this->log->info( "AUTH: Trying to login as user '{$username}' by token but token is not found." ); } return Result::fail('Token not found'); } if (!$authenticationMethod) { $authenticationMethod = $this->getDefaultAuthenticationMethod(); } $login = $this->authLoginFactory->create($authenticationMethod, $this->isPortal()); $result = $login->login($username, $password, $authToken, $request); $user = $result->getUser(); $authLogRecord = null; if (!$authTokenIsFound) { $authLogRecord = $this->createAuthLogRecord($username, $user, $request, $authenticationMethod); } if ($result->isFail()) { return $result; } if (!$user) { return Result::fail(); } if (!$user->isAdmin() && $this->config->get('maintenanceMode')) { throw new ServiceUnavailable("Application is in maintenance mode."); } if (!$this->processUserCheck($user, $authLogRecord)) { return Result::fail('Denied'); } if ($this->isPortal()) { $user->set('portalId', $this->getPortal()->id); } if (!$this->isPortal()) { $user->loadLinkMultipleField('teams'); } $user->set('ipAddress', $request->getServerParam('REMOTE_ADDR') ?? null); $this->applicationUser->setUser($user); if (!$result->isSecondStepRequired() && !$authToken && $this->config->get('auth2FA')) { $result = $this->processTwoFactor($result, $request); if ($result->isFail()) { return $result; } } if (!$result->isSecondStepRequired() && $request->getHeader('Espo-Authorization')) { if (!$authToken) { $authToken = $this->createAuthToken($user, $request); } else { $this->authTokenManager->renew($authToken); } $user->set('token', $authToken->getToken()); $user->set('authTokenId', $authToken->id ?? null); if ($authLogRecord) { $authLogRecord->set('authTokenId', $authToken->id ?? null); } } if ($authLogRecord) { $this->entityManager->saveEntity($authLogRecord); } if ($authToken && !$authLogRecord && isset($authToken->id)) { $authLogRecord = $this->entityManager ->getRepository('AuthLogRecord') ->select(['id']) ->where([ 'authTokenId' => $authToken->id ]) ->order('requestTime', true) ->findOne(); } if ($authLogRecord) { $user->set('authLogRecordId', $authLogRecord->id); } return $result; } protected function processUserCheck(User $user, ?AuthLogRecord $authLogRecord) : bool { if (!$user->isActive()) { $this->log->info( "AUTH: Trying to login as user '".$user->get('userName')."' which is not active." ); $this->logDenied($authLogRecord, 'INACTIVE_USER'); return false; } if (!$user->isAdmin() && !$this->isPortal() && $user->isPortal()) { $this->log->info( "AUTH: Trying to login to crm as a portal user '".$user->get('userName')."'." ); $this->logDenied($authLogRecord, 'IS_PORTAL_USER'); return false; } if ($this->isPortal() && !$user->isPortal()) { $this->log->info( "AUTH: Trying to login to portal as user '".$user->get('userName')."' which is not portal user." ); $this->logDenied($authLogRecord, 'IS_NOT_PORTAL_USER'); return false; } if ($this->isPortal()) { $isPortalRelatedToUser = $this->entityManager ->getRepository('Portal') ->isRelated($this->getPortal(), 'users', $user); if (!$isPortalRelatedToUser) { $this->log->info( "AUTH: Trying to login to portal as user '".$user->get('userName')."' ". "which is portal user but does not belongs to portal." ); $this->logDenied($authLogRecord, 'USER_IS_NOT_IN_PORTAL'); return false; } } return true; } protected function processTwoFactor(Result $result, Request $request) : Result { $loggedUser = $result->getLoggedUser(); $method = $this->getUser2FAMethod($loggedUser); if (!$method) { return $result; } $impl = $this->auth2FAFactory->create($method); $code = $request->getHeader('Espo-Authorization-Code'); if ($code) { if (!$impl->verifyCode($loggedUser, $code)) { return Result::fail('Code not verified'); } return $result; } return Result::secondStepRequired($result->getUser(), $impl->getLoginData($loggedUser)); } protected function getUser2FAMethod(User $user) : ?string { $userData = $this->entityManager->getRepository('UserData')->getByUserId($user->id); if (!$userData) { return null; } if (!$userData->get('auth2FA')) { return null; } $method = $userData->get('auth2FAMethod'); if (!$method) { return null; } if ( !in_array( $method, $this->config->get('auth2FAMethodList', []) ) ) { return null; } return $method; } protected function checkFailedAttemptsLimit(Request $request) { $failedAttemptsPeriod = $this->config->get('authFailedAttemptsPeriod', self::FAILED_ATTEMPTS_PERIOD); $maxFailedAttempts = $this->config->get('authMaxFailedAttemptNumber', self::MAX_FAILED_ATTEMPT_NUMBER); $requestTime = intval($request->getServerParam('REQUEST_TIME_FLOAT')); $requestTimeFrom = (new DateTime('@' . $requestTime))->modify('-' . $failedAttemptsPeriod); $failAttemptCount = 0; $ip = $request->getServerParam('REMOTE_ADDR'); $where = [ 'requestTime>' => $requestTimeFrom->format('U'), 'ipAddress' => $ip, 'isDenied' => true, ]; $wasFailed = (bool) $this->entityManager ->getRepository('AuthLogRecord') ->select(['id']) ->where($where) ->findOne(); if ($wasFailed) { $failAttemptCount = $this->entityManager ->getRepository('AuthLogRecord') ->where($where) ->count(); } if ($failAttemptCount > $maxFailedAttempts) { $this->log->warning( "AUTH: Max failed login attempts exceeded for IP '{$ip}'." ); throw new Forbidden("Max failed login attempts exceeded."); } } protected function createAuthToken(User $user, Request $request) : AuthToken { $createSecret = $request->getHeader('Espo-Authorization-Create-Token-Secret') === 'true'; if ($createSecret) { if ($this->config->get('authTokenSecretDisabled')) { $createSecret = false; } } $arrayData = [ 'hash' => $user->get('password'), 'ipAddress' => $request->getServerParam('REMOTE_ADDR'), 'userId' => $user->id, 'portalId' => $this->isPortal() ? $this->getPortal()->id : null, 'createSecret' => $createSecret, ]; $authToken = $this->authTokenManager->create( AuthTokenData::create($arrayData) ); if ($createSecret) { $this->setSecretInCookie($authToken->getSecret()); } if ($this->config->get('authTokenPreventConcurrent')) { $concurrentAuthTokenList = $this->entityManager ->getRepository('AuthToken') ->select(['id']) ->where([ 'userId' => $user->id, 'isActive' => true, ]) ->find(); foreach ($concurrentAuthTokenList as $concurrentAuthToken) { $concurrentAuthToken->set('isActive', false); $this->entityManager->saveEntity($concurrentAuthToken); } } return $authToken; } public function destroyAuthToken(string $token, Request $request) { $authToken = $this->authTokenManager->get($token); if (!$authToken) { return false; } $this->authTokenManager->inactivate($authToken); if ($authToken->getSecret()) { $sentSecret = $request->getCookieParam('auth-token-secret'); if ($sentSecret === $authToken->getSecret()) { $this->setSecretInCookie(null); } } return true; } protected function createAuthLogRecord( ?string $username, ?User $user, Request $request, ?string $authenticationMethod = null ) : ?AuthLogRecord { if ($username === '**logout') { return null; } $authLogRecord = $this->entityManager->getEntity('AuthLogRecord'); $requestUrl = $request->getUri()->getScheme() . '://' . $request->getUri()->getHost() . $request->getUri()->getPath(); if (!$username && $user) { $username = $user->get('userName'); } $authLogRecord->set([ 'username' => $username, 'ipAddress' => $request->getServerParam('REMOTE_ADDR'), 'requestTime' => $request->getServerParam('REQUEST_TIME_FLOAT'), 'requestMethod' => $request->getMethod(), 'requestUrl' => $requestUrl, 'authenticationMethod' => $authenticationMethod, ]); if ($this->isPortal()) { $authLogRecord->set('portalId', $this->getPortal()->id); } if ($user) { $authLogRecord->set('userId', $user->id); } else { $authLogRecord->set('isDenied', true); $authLogRecord->set('denialReason', 'CREDENTIALS'); $this->entityManager->saveEntity($authLogRecord); } return $authLogRecord; } protected function logDenied(?AuthLogRecord $authLogRecord, string $denialReason) { if (!$authLogRecord) { return; } $authLogRecord->set('denialReason', $denialReason); $this->entityManager->saveEntity($authLogRecord); } protected function setSecretInCookie(?string $secret) { if (!$secret) { $time = -1; } else { $time = strtotime('+1000 days'); } if (version_compare(\PHP_VERSION, '7.3.0') < 0) { setcookie('auth-token-secret', $secret, $time, '/', '', false, true); return; } setcookie('auth-token-secret', $secret, [ 'expires' => $time, 'path' => '/', 'httponly' => true, 'samesite' => 'Lax', ]); } }