mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-03 07:04:07 +01:00
* [ADD] Mail provider. Work in progress * [MOD] Updated copyright * [MOD] Improved tracking module
178 lines
4.7 KiB
PHP
178 lines
4.7 KiB
PHP
<?php
|
|
/**
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2018, 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\Track;
|
|
|
|
use SP\Core\Events\Event;
|
|
use SP\Core\Events\EventMessage;
|
|
use SP\DataModel\TrackData;
|
|
use SP\Repositories\Track\TrackRepository;
|
|
use SP\Repositories\Track\TrackRequest;
|
|
use SP\Services\Service;
|
|
use SP\Util\HttpUtil;
|
|
|
|
/**
|
|
* Class TrackService
|
|
*
|
|
* @package SP\Services
|
|
*/
|
|
class TrackService extends Service
|
|
{
|
|
/**
|
|
* Tiempo para contador de intentos
|
|
*/
|
|
const TIME_TRACKING = 600;
|
|
const TIME_TRACKING_MAX_ATTEMPTS = 10;
|
|
const TIME_SLEEP = 0.5;
|
|
|
|
/**
|
|
* @var TrackRepository
|
|
*/
|
|
protected $trackRepository;
|
|
|
|
/**
|
|
* @param $source
|
|
* @return TrackRequest
|
|
* @throws \SP\Core\Exceptions\InvalidArgumentException
|
|
*/
|
|
public static function getTrackRequest($source)
|
|
{
|
|
$trackRequest = new TrackRequest();
|
|
$trackRequest->time = time() - self::TIME_TRACKING;
|
|
$trackRequest->setTrackIp(HttpUtil::getClientAddress());
|
|
$trackRequest->source = $source;
|
|
|
|
return $trackRequest;
|
|
}
|
|
|
|
/**
|
|
* @param $id int|array
|
|
* @return mixed
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
*/
|
|
public function delete($id)
|
|
{
|
|
return $this->trackRepository->delete($id);
|
|
}
|
|
|
|
/**
|
|
* @param TrackData $itemData
|
|
* @return bool
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
*/
|
|
public function update(TrackData $itemData)
|
|
{
|
|
return $this->trackRepository->update($itemData);
|
|
}
|
|
|
|
/**
|
|
* @param $id int
|
|
* @return TrackData
|
|
*/
|
|
public function getById($id)
|
|
{
|
|
return $this->trackRepository->getById($id);
|
|
}
|
|
|
|
/**
|
|
* @return TrackData[]
|
|
*/
|
|
public function getAll()
|
|
{
|
|
return $this->trackRepository->getAll();
|
|
}
|
|
|
|
/**
|
|
* @throws \Psr\Container\ContainerExceptionInterface
|
|
* @throws \Psr\Container\NotFoundExceptionInterface
|
|
*/
|
|
public function initialize()
|
|
{
|
|
$this->trackRepository = $this->dic->get(TrackRepository::class);
|
|
}
|
|
|
|
/**
|
|
* Comprobar los intentos de login
|
|
*
|
|
* @param TrackRequest $trackRequest
|
|
* @return bool True if delay is performed, false otherwise
|
|
* @throws \Exception
|
|
*/
|
|
public function checkTracking(TrackRequest $trackRequest)
|
|
{
|
|
try {
|
|
$attempts = count($this->getTracksForClientFromTime($trackRequest));
|
|
} catch (\Exception $e) {
|
|
processException($e);
|
|
|
|
throw $e;
|
|
}
|
|
|
|
if ($attempts >= self::TIME_TRACKING_MAX_ATTEMPTS) {
|
|
// $this->add($trackRequest);
|
|
|
|
$this->eventDispatcher->notifyEvent('track.delay',
|
|
new Event($this, EventMessage::factory()
|
|
->addDescription(sprintf(__('Intentos excedidos (%d/%d)'), $attempts, self::TIME_TRACKING_MAX_ATTEMPTS))
|
|
->addDetail(__u('Segundos'), self::TIME_SLEEP * $attempts))
|
|
);
|
|
|
|
debugLog('Tracking delay: ' . self::TIME_SLEEP * $attempts . 's');
|
|
|
|
sleep(self::TIME_SLEEP * $attempts);
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Devuelve los tracks de un cliente desde un tiempo y origen determinados
|
|
*
|
|
* @param TrackRequest $trackRequest
|
|
* @return array
|
|
*/
|
|
public function getTracksForClientFromTime(TrackRequest $trackRequest)
|
|
{
|
|
return $this->trackRepository->getTracksForClientFromTime($trackRequest);
|
|
}
|
|
|
|
/**
|
|
* @param TrackRequest $trackRequest
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
*/
|
|
public function add(TrackRequest $trackRequest)
|
|
{
|
|
$this->trackRepository->add($trackRequest);
|
|
|
|
$this->eventDispatcher->notifyEvent('track.add',
|
|
new Event($this, EventMessage::factory()
|
|
->addDescription(HttpUtil::getClientAddress(true)))
|
|
);
|
|
}
|
|
} |