mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-02-03 10:35:32 +00:00
fix info hash validation, remove external dependencies
This commit is contained in:
parent
8447b70c4b
commit
521a8eade8
@ -695,9 +695,19 @@ class Valid
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($value as $version => $xt)
|
foreach ($value as $xt)
|
||||||
{
|
{
|
||||||
if (!(is_int($version) || is_float($version)))
|
if (empty($xt->version))
|
||||||
|
{
|
||||||
|
array_push(
|
||||||
|
$error,
|
||||||
|
_('Magnet info hash version required')
|
||||||
|
);
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!(is_int($xt->version) || is_float($xt->version)))
|
||||||
{
|
{
|
||||||
array_push(
|
array_push(
|
||||||
$error,
|
$error,
|
||||||
@ -707,7 +717,17 @@ class Valid
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!is_string($xt))
|
if (empty($xt->value))
|
||||||
|
{
|
||||||
|
array_push(
|
||||||
|
$error,
|
||||||
|
_('Magnet info hash value required')
|
||||||
|
);
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!is_string($xt->value))
|
||||||
{
|
{
|
||||||
array_push(
|
array_push(
|
||||||
$error,
|
$error,
|
||||||
@ -717,11 +737,11 @@ class Valid
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch ($version->version)
|
switch ($xt->version)
|
||||||
{
|
{
|
||||||
case 1:
|
case 1:
|
||||||
|
|
||||||
if (!Yggverse\Parser\Magnet::isXTv1($xt))
|
if (!preg_match('/^([A-z0-9]{40})$/i', $xt->value))
|
||||||
{
|
{
|
||||||
array_push(
|
array_push(
|
||||||
$error,
|
$error,
|
||||||
@ -735,7 +755,7 @@ class Valid
|
|||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
|
|
||||||
if (!Yggverse\Parser\Magnet::isXTv2($xt))
|
if (!preg_match('/^([A-z0-9]{64})$/i', $xt->value))
|
||||||
{
|
{
|
||||||
array_push(
|
array_push(
|
||||||
$error,
|
$error,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user