Files
sysPass/lib/SP/Services/UserPassRecover/UserPassRecoverService.php
Rubén D e4e6e04c57 * [MOD] Updated copyright
Signed-off-by: Rubén D <nuxsmin@syspass.org>
2020-12-07 19:42:41 +01:00

176 lines
5.0 KiB
PHP

<?php
/*
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2020, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
* sysPass is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* sysPass 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
*/
namespace SP\Services\UserPassRecover;
use Defuse\Crypto\Exception\EnvironmentIsBrokenException;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
use SP\Bootstrap;
use SP\Core\Exceptions\ConstraintException;
use SP\Core\Exceptions\QueryException;
use SP\Core\Exceptions\SPException;
use SP\Core\Messages\MailMessage;
use SP\Html\Html;
use SP\Repositories\User\UserPassRecoverRepository;
use SP\Services\Service;
use SP\Services\ServiceException;
use SP\Util\PasswordUtil;
/**
* Class UserPassRecoverService
*
* @package SP\Services\UserPassRecover
*/
final class UserPassRecoverService extends Service
{
/**
* Tiempo máximo para recuperar la clave
*/
const MAX_PASS_RECOVER_TIME = 3600;
/**
* Número de intentos máximos para recuperar la clave
*/
const MAX_PASS_RECOVER_LIMIT = 3;
const USER_LOGIN_EXIST = 1;
const USER_MAIL_EXIST = 2;
/**
* @var UserPassRecoverRepository
*/
protected $userPassRecoverRepository;
/**
* @param $hash
*
* @return MailMessage
*/
public static function getMailMessage($hash)
{
$mailMessage = new MailMessage();
$mailMessage->setTitle(__('Password Change'));
$mailMessage->addDescription(__('A request for changing your user password has been done.'));
$mailMessage->addDescriptionLine();
$mailMessage->addDescription(__('In order to complete the process, please go to this URL:'));
$mailMessage->addDescriptionLine();
$mailMessage->addDescription(Html::anchorText(Bootstrap::$WEBURI . '/index.php?r=userPassReset/reset/' . $hash));
$mailMessage->addDescriptionLine();
$mailMessage->addDescription(__('If you have not requested this action, please dismiss this message.'));
return $mailMessage;
}
/**
* @param $hash
*
* @return void
* @throws ServiceException
* @throws SPException
*/
public function toggleUsedByHash($hash)
{
if ($this->userPassRecoverRepository->toggleUsedByHash($hash, time() - self::MAX_PASS_RECOVER_TIME) === 0) {
throw new ServiceException(__u('Wrong hash or expired'), ServiceException::INFO);
}
}
/**
* @param int $id
*
* @return string
* @throws ConstraintException
* @throws QueryException
* @throws ServiceException
* @throws EnvironmentIsBrokenException
*/
public function requestForUserId($id)
{
if ($this->checkAttemptsByUserId($id)) {
throw new ServiceException(__u('Attempts exceeded'), ServiceException::WARNING);
}
$hash = PasswordUtil::generateRandomBytes(16);
$this->add($id, $hash);
return $hash;
}
/**
* Comprobar el límite de recuperaciones de clave.
*
* @param int $userId
*
* @return bool
* @throws ConstraintException
* @throws QueryException
*/
public function checkAttemptsByUserId($userId)
{
return $this->userPassRecoverRepository->getAttemptsByUserId($userId, time() - self::MAX_PASS_RECOVER_TIME) >= self::MAX_PASS_RECOVER_LIMIT;
}
/**
* @param $userId
* @param $hash
*
* @return bool
* @throws ConstraintException
* @throws QueryException
*/
public function add($userId, $hash)
{
return $this->userPassRecoverRepository->add($userId, $hash);
}
/**
* Comprobar el hash de recuperación de clave.
*
* @param string $hash
*
* @return int
* @throws ServiceException
* @throws ConstraintException
* @throws QueryException
*/
public function getUserIdForHash($hash)
{
$result = $this->userPassRecoverRepository->getUserIdForHash($hash, time() - self::MAX_PASS_RECOVER_TIME);
if ($result->getNumRows() === 0) {
throw new ServiceException(__u('Wrong hash or expired'), ServiceException::INFO);
}
return (int)$result->getData()->userId;
}
/**
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
protected function initialize()
{
$this->userPassRecoverRepository = $this->dic->get(UserPassRecoverRepository::class);
}
}