mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-02-22 10:51:25 +01:00
128 lines
3.6 KiB
PHP
128 lines
3.6 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\Crypt;
|
|
|
|
use Exception;
|
|
use Psr\Container\ContainerExceptionInterface;
|
|
use Psr\Container\NotFoundExceptionInterface;
|
|
use SP\Core\Crypt\Hash;
|
|
use SP\Core\Exceptions\ConstraintException;
|
|
use SP\Core\Exceptions\QueryException;
|
|
use SP\Repositories\NoSuchItemException;
|
|
use SP\Services\Account\AccountCryptService;
|
|
use SP\Services\Config\ConfigService;
|
|
use SP\Services\CustomField\CustomFieldCryptService;
|
|
use SP\Services\Service;
|
|
use SP\Services\ServiceException;
|
|
|
|
/**
|
|
* Class MasterPassService
|
|
*
|
|
* @package SP\Services\Crypt
|
|
*/
|
|
final class MasterPassService extends Service
|
|
{
|
|
const PARAM_MASTER_PASS_TIME = 'lastupdatempass';
|
|
const PARAM_MASTER_PASS_HASH = 'masterPwd';
|
|
|
|
/**
|
|
* @var ConfigService
|
|
*/
|
|
protected $configService;
|
|
/**
|
|
* @var AccountCryptService
|
|
*/
|
|
protected $accountCryptService;
|
|
/**
|
|
* @var CustomFieldCryptService
|
|
*/
|
|
protected $customFieldCryptService;
|
|
|
|
/**
|
|
* @param int $userMPassTime
|
|
*
|
|
* @return bool
|
|
* @throws ServiceException
|
|
* @throws NoSuchItemException
|
|
*/
|
|
public function checkUserUpdateMPass($userMPassTime)
|
|
{
|
|
return $userMPassTime >= $this->configService->getByParam(self::PARAM_MASTER_PASS_TIME, 0);
|
|
|
|
}
|
|
|
|
/**
|
|
* @param string $masterPassword
|
|
*
|
|
* @return bool
|
|
* @throws ServiceException
|
|
* @throws NoSuchItemException
|
|
*/
|
|
public function checkMasterPassword($masterPassword)
|
|
{
|
|
return Hash::checkHashKey($masterPassword, $this->configService->getByParam(self::PARAM_MASTER_PASS_HASH));
|
|
}
|
|
|
|
/**
|
|
* @param UpdateMasterPassRequest $request
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function changeMasterPassword(UpdateMasterPassRequest $request)
|
|
{
|
|
$this->transactionAware(function () use ($request) {
|
|
$this->accountCryptService->updateMasterPassword($request);
|
|
|
|
$this->accountCryptService->updateHistoryMasterPassword($request);
|
|
|
|
$this->customFieldCryptService->updateMasterPassword($request);
|
|
|
|
$this->updateConfig($request->getHash());
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param $hash
|
|
*
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function updateConfig($hash)
|
|
{
|
|
$this->configService->save(self::PARAM_MASTER_PASS_HASH, $hash);
|
|
$this->configService->save(self::PARAM_MASTER_PASS_TIME, time());
|
|
}
|
|
|
|
/**
|
|
* @throws ContainerExceptionInterface
|
|
* @throws NotFoundExceptionInterface
|
|
*/
|
|
protected function initialize()
|
|
{
|
|
$this->configService = $this->dic->get(ConfigService::class);
|
|
$this->accountCryptService = $this->dic->get(AccountCryptService::class);
|
|
$this->customFieldCryptService = $this->dic->get(CustomFieldCryptService::class);
|
|
}
|
|
} |