2022-12-24 22:10:40 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2024-01-31 22:15:08 +08:00
|
|
|
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
|
|
|
|
* SPDX-License-Identifier: MIT
|
2022-12-24 22:10:40 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Respect\Validation\Rules;
|
|
|
|
|
2024-01-31 22:15:08 +08:00
|
|
|
use Psr\Http\Message\UploadedFileInterface;
|
2022-12-24 22:10:40 +08:00
|
|
|
use SplFileInfo;
|
|
|
|
|
|
|
|
use function is_scalar;
|
|
|
|
use function is_uploaded_file;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validates if the given data is a file that was uploaded via HTTP POST.
|
|
|
|
*
|
|
|
|
* @author Henrique Moody <henriquemoody@gmail.com>
|
|
|
|
* @author Paul Karikari <paulkarikari1@gmail.com>
|
|
|
|
*/
|
|
|
|
final class Uploaded extends AbstractRule
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function validate($input): bool
|
|
|
|
{
|
|
|
|
if ($input instanceof SplFileInfo) {
|
|
|
|
return $this->validate($input->getPathname());
|
|
|
|
}
|
|
|
|
|
2024-01-31 22:15:08 +08:00
|
|
|
if ($input instanceof UploadedFileInterface) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-12-24 22:10:40 +08:00
|
|
|
if (!is_scalar($input)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return is_uploaded_file((string) $input);
|
|
|
|
}
|
|
|
|
}
|