Refactor PeerDatabaseRecord and SessionManager to handle ReservedUsernames and improve date handling

This commit is contained in:
netkas 2025-03-19 15:06:59 -04:00
parent 6a1aa6b353
commit a92391445a
Signed by: netkas
GPG key ID: 4D8629441B76E4CC
3 changed files with 35 additions and 14 deletions

View file

@ -6,6 +6,7 @@
use InvalidArgumentException;
use Socialbox\Classes\Configuration;
use Socialbox\Enums\Flags\PeerFlags;
use Socialbox\Enums\ReservedUsernames;
use Socialbox\Interfaces\SerializableInterface;
use Socialbox\Objects\Standard\InformationFieldState;
use Socialbox\Objects\Standard\Peer;
@ -32,7 +33,15 @@
{
$this->uuid = $data['uuid'];
$this->username = $data['username'];
$this->server = $data['server'];
if($data['server'] === ReservedUsernames::HOST->value)
{
$this->server = Configuration::getInstanceConfiguration()->getDomain();
}
else
{
$this->server = $data['server'];
}
if($data['flags'])
{
@ -55,7 +64,14 @@
}
elseif(is_string($data['created']))
{
$this->created = new DateTime($data['created']);
try
{
$this->created = new DateTime($data['created']);
}
catch (\DateMalformedStringException $e)
{
throw new InvalidArgumentException($e->getMessage(), $e->getCode(), $e);
}
}
else
{
@ -72,7 +88,14 @@
}
elseif(is_string($data['updated']))
{
$this->updated = new DateTime($data['updated']);
try
{
$this->updated = new DateTime($data['updated']);
}
catch (\DateMalformedStringException $e)
{
throw new InvalidArgumentException($e->getMessage(), $e->getCode(), $e);
}
}
else
{
@ -192,7 +215,7 @@
*/
public function isExternal(): bool
{
return $this->username === 'host' || $this->server !== Configuration::getInstanceConfiguration()->getDomain();
return $this->username === ReservedUsernames::HOST->value || $this->server !== Configuration::getInstanceConfiguration()->getDomain();
}
/**