Files
sysPass/lib/SP/DataModel/TrackData.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

223 lines
3.9 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\DataModel;
use SP\Core\Exceptions\InvalidArgumentException;
use SP\Http\Address;
/**
* Class TrackData
*
* @package SP\DataModel
*/
class TrackData extends DataModelBase
{
/**
* @var int
*/
public $id;
/**
* @var int
*/
public $userId;
/**
* @var string
*/
public $source;
/**
* @var int
*/
public $time = 0;
/**
* @var int
*/
public $timeUnlock = 0;
/**
* @var string
*/
public $ipv4;
/**
* @var string
*/
public $ipv6;
/**
* @return int
*/
public function getId()
{
return (int)$this->id;
}
/**
* @param int $id
*/
public function setId($id)
{
$this->id = (int)$id;
}
/**
* @return int
*/
public function getUserId()
{
return (int)$this->userId;
}
/**
* @param int $userId
*/
public function setUserId($userId)
{
$this->userId = (int)$userId;
}
/**
* @return string
*/
public function getSource()
{
return $this->source;
}
/**
* @param string $source
*/
public function setSource($source)
{
$this->source = $source;
}
/**
* @return int
*/
public function getTime()
{
return (int)$this->time;
}
/**
* @param int $time
*/
public function setTime($time)
{
$this->time = (int)$time;
}
/**
* @return string|null
* @throws InvalidArgumentException
*/
public function getIpv4()
{
if (!empty($this->ipv4)) {
return Address::fromBinary($this->ipv4);
}
return null;
}
/**
* @param string $ipv4
*
* @throws InvalidArgumentException
*/
public function setIpv4($ipv4)
{
$this->ipv4 = Address::toBinary($ipv4);
}
/**
* @param string $track_ip
*
* @throws InvalidArgumentException
*/
public function setTrackIp($track_ip)
{
$ip = Address::toBinary($track_ip);
if (strlen($ip) === 4) {
$this->ipv4 = $ip;
} elseif (strlen($ip) > 4) {
$this->ipv6 = $ip;
}
}
/**
* @return string
*/
public function getTrackIpv4Bin()
{
return $this->ipv4;
}
/**
* @return string|null
* @throws InvalidArgumentException
*/
public function getIpv6()
{
if (!empty($this->ipv6)) {
return Address::fromBinary($this->ipv6);
}
return null;
}
/**
* @param string $ipv6
*
* @throws InvalidArgumentException
*/
public function setIpv6($ipv6)
{
$this->ipv6 = Address::toBinary($ipv6);
}
/**
* @return string
*/
public function getTrackIpv6Bin()
{
return $this->ipv6;
}
/**
* @return int
*/
public function getTimeUnlock(): int
{
return $this->timeUnlock;
}
/**
* @param int $timeUnlock
*/
public function setTimeUnlock(int $timeUnlock)
{
$this->timeUnlock = $timeUnlock;
}
}