mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-30 11:35:48 +08:00
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Respect\Validation\Rules;
|
|
|
|
use Psr\Http\Message\UploadedFileInterface;
|
|
use SplFileInfo;
|
|
|
|
use function function_exists;
|
|
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
|
|
{
|
|
/**
|
|
* @deprecated Calling `validate()` directly from rules is deprecated. Please use {@see \Respect\Validation\Validator::isValid()} instead.
|
|
*/
|
|
public function validate($input): bool
|
|
{
|
|
if ($input instanceof SplFileInfo) {
|
|
return $this->validate($input->getPathname());
|
|
}
|
|
|
|
if ($input instanceof UploadedFileInterface) {
|
|
return true;
|
|
}
|
|
|
|
if (!is_scalar($input)) {
|
|
return false;
|
|
}
|
|
|
|
if (function_exists('mock_is_uploaded_file')) {
|
|
return mock_is_uploaded_file((string) $input);
|
|
}
|
|
|
|
return is_uploaded_file((string) $input);
|
|
}
|
|
}
|