mirror of
https://github.com/shlinkio/shlink.git
synced 2025-01-09 13:27:31 +03:00
61 lines
1.7 KiB
PHP
61 lines
1.7 KiB
PHP
<?php
|
|
namespace Acelaya\UrlShortener\Service;
|
|
|
|
use Acelaya\UrlShortener\Entity\ShortUrl;
|
|
use Acelaya\UrlShortener\Entity\Visit;
|
|
use Acelaya\ZsmAnnotatedServices\Annotation\Inject;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
|
|
class VisitsTracker implements VisitsTrackerInterface
|
|
{
|
|
/**
|
|
* @var EntityManagerInterface
|
|
*/
|
|
private $em;
|
|
|
|
/**
|
|
* VisitsTracker constructor.
|
|
* @param EntityManagerInterface $em
|
|
*
|
|
* @Inject({"em"})
|
|
*/
|
|
public function __construct(EntityManagerInterface $em)
|
|
{
|
|
$this->em = $em;
|
|
}
|
|
|
|
/**
|
|
* Tracks a new visit to provided short code, using an array of data to look up information
|
|
*
|
|
* @param string $shortCode
|
|
* @param array $visitorData Defaults to global $_SERVER
|
|
*/
|
|
public function track($shortCode, array $visitorData = null)
|
|
{
|
|
$visitorData = $visitorData ?: $_SERVER;
|
|
|
|
/** @var ShortUrl $shortUrl */
|
|
$shortUrl = $this->em->getRepository(ShortUrl::class)->findOneBy([
|
|
'shortCode' => $shortCode,
|
|
]);
|
|
|
|
$visit = new Visit();
|
|
$visit->setShortUrl($shortUrl)
|
|
->setUserAgent($this->getArrayValue($visitorData, 'HTTP_USER_AGENT'))
|
|
->setReferer($this->getArrayValue($visitorData, 'REFERER'))
|
|
->setRemoteAddr($this->getArrayValue($visitorData, 'REMOTE_ADDR'));
|
|
$this->em->persist($visit);
|
|
$this->em->flush();
|
|
}
|
|
|
|
/**
|
|
* @param array $array
|
|
* @param $key
|
|
* @param null $default
|
|
* @return mixed|null
|
|
*/
|
|
protected function getArrayValue(array $array, $key, $default = null)
|
|
{
|
|
return isset($array[$key]) ? $array[$key] : $default;
|
|
}
|
|
}
|