PHP 8.2.30
Preview: ImageValidator.php Size: 5.64 KB
/opt/cloudlinux/alt-php55/root/usr/share/pear/Symfony/Component/Validator/Constraints/ImageValidator.php

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Validator\Constraints;

use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\Exception\ConstraintDefinitionException;

/**
 * Validates whether a value is a valid image file and is valid
 * against minWidth, maxWidth, minHeight and maxHeight constraints
 *
 * @author Benjamin Dulau <benjamin.dulau@gmail.com>
 */
class ImageValidator extends FileValidator
{
    /**
     * {@inheritDoc}
     */
    public function validate($value, Constraint $constraint)
    {
        $violations = count($this->context->getViolations());

        parent::validate($value, $constraint);

        $failed = count($this->context->getViolations()) !== $violations;

        if ($failed || null === $value || '' === $value) {
            return;
        }

        if (null === $constraint->minWidth && null === $constraint->maxWidth
            && null === $constraint->minHeight && null === $constraint->maxHeight
            && null === $constraint->minRatio && null === $constraint->maxRatio
            && $constraint->allowSquare && $constraint->allowLandscape && $constraint->allowPortrait) {
            return;
        }

        $size = @getimagesize($value);
        if (empty($size) || ($size[0] === 0) || ($size[1] === 0)) {
            $this->context->addViolation($constraint->sizeNotDetectedMessage);

            return;
        }

        $width  = $size[0];
        $height = $size[1];

        if ($constraint->minWidth) {
            if (!ctype_digit((string) $constraint->minWidth)) {
                throw new ConstraintDefinitionException(sprintf('"%s" is not a valid minimum width', $constraint->minWidth));
            }

            if ($width < $constraint->minWidth) {
                $this->context->addViolation($constraint->minWidthMessage, array(
                    '{{ width }}'    => $width,
                    '{{ min_width }}' => $constraint->minWidth
                ));

                return;
            }
        }

        if ($constraint->maxWidth) {
            if (!ctype_digit((string) $constraint->maxWidth)) {
                throw new ConstraintDefinitionException(sprintf('"%s" is not a valid maximum width', $constraint->maxWidth));
            }

            if ($width > $constraint->maxWidth) {
                $this->context->addViolation($constraint->maxWidthMessage, array(
                    '{{ width }}'    => $width,
                    '{{ max_width }}' => $constraint->maxWidth
                ));

                return;
            }
        }

        if ($constraint->minHeight) {
            if (!ctype_digit((string) $constraint->minHeight)) {
                throw new ConstraintDefinitionException(sprintf('"%s" is not a valid minimum height', $constraint->minHeight));
            }

            if ($height < $constraint->minHeight) {
                $this->context->addViolation($constraint->minHeightMessage, array(
                    '{{ height }}'    => $height,
                    '{{ min_height }}' => $constraint->minHeight
                ));

                return;
            }
        }

        if ($constraint->maxHeight) {
            if (!ctype_digit((string) $constraint->maxHeight)) {
                throw new ConstraintDefinitionException(sprintf('"%s" is not a valid maximum height', $constraint->maxHeight));
            }

            if ($height > $constraint->maxHeight) {
                $this->context->addViolation($constraint->maxHeightMessage, array(
                    '{{ height }}'    => $height,
                    '{{ max_height }}' => $constraint->maxHeight
                ));
            }
        }

        $ratio = $width / $height;

        if (null !== $constraint->minRatio) {
            if (!is_numeric((string) $constraint->minRatio)) {
                throw new ConstraintDefinitionException(sprintf('"%s" is not a valid minimum ratio', $constraint->minRatio));
            }

            if ($ratio < $constraint->minRatio) {
                $this->context->addViolation($constraint->minRatioMessage, array(
                    '{{ ratio }}' => $ratio,
                    '{{ min_ratio }}' => $constraint->minRatio
                ));
            }
        }

        if (null !== $constraint->maxRatio) {
            if (!is_numeric((string) $constraint->maxRatio)) {
                throw new ConstraintDefinitionException(sprintf('"%s" is not a valid maximum ratio', $constraint->maxRatio));
            }

            if ($ratio > $constraint->maxRatio) {
                $this->context->addViolation($constraint->maxRatioMessage, array(
                    '{{ ratio }}' => $ratio,
                    '{{ max_ratio }}' => $constraint->maxRatio
                ));
            }
        }

        if (!$constraint->allowSquare && $width == $height) {
            $this->context->addViolation($constraint->allowSquareMessage, array(
                '{{ width }}' => $width,
                '{{ height }}' => $height
            ));
        }

        if (!$constraint->allowLandscape && $width > $height) {
            $this->context->addViolation($constraint->allowLandscapeMessage, array(
                '{{ width }}' => $width,
                '{{ height }}' => $height
            ));
        }

        if (!$constraint->allowPortrait && $width < $height) {
            $this->context->addViolation($constraint->allowPortraitMessage, array(
                '{{ width }}' => $width,
                '{{ height }}' => $height
            ));
        }

    }
}

Directory Contents

Dirs: 1 × Files: 90

Name Size Perms Modified Actions
- drwxr-xr-x 2024-03-03 22:54:39
Edit Download
1.09 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.22 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.52 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.14 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
511 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
775 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.61 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.42 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
699 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
3.97 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.08 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.87 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.73 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.14 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.48 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
520 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.25 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.82 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
522 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.25 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
514 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
522 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
510 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.25 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
584 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.98 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
489 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
588 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
559 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.07 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.45 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
511 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
797 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.53 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
6.11 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
497 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
516 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
631 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
610 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
630 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
399 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
479 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.92 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
523 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
598 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.91 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
5.64 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.99 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.64 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.29 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.86 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
578 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.80 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
522 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.25 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.54 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.21 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
491 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
510 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
625 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
604 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
518 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.24 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
476 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.90 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
518 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
766 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
496 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
597 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
530 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
604 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
516 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
728 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
509 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
929 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
404 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.06 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.38 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.39 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.24 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
404 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
514 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.21 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
509 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
821 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
774 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.39 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
560 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
3.59 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
907 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).