Просмотр файла system/src/Validator/Rules/ModelExists.php

Размер файла: 1.39Kb
<?php

/**
 * This file is part of JohnCMS Content Management System.
 *
 * @copyright JohnCMS Community
 * @license   https://opensource.org/licenses/GPL-3.0 GPL-3.0
 * @link      https://johncms.com JohnCMS Project
 */

namespace Johncms\Validator\Rules;

use Illuminate\Database\Eloquent\ModelNotFoundException;
use Laminas\Validator\AbstractValidator;

class ModelExists extends AbstractValidator
{
    public const NOT_FOUND = 'modelNotFound';

    protected $messageTemplates = [
        self::NOT_FOUND => "No record matching the input was found",
    ];

    private $model;

    private $field;

    public function isValid($value): bool
    {
        $this->setValue($value);
        $isValid = true;

        try {
            $model = (new $this->model());
            $model->where($this->field, $value)->firstOrFail();
        } catch (ModelNotFoundException $exception) {
            $this->error(self::NOT_FOUND);
            $isValid = false;
        }

        return $isValid;
    }

    /**
     * Set model parameter
     *
     * @param $value
     * @return $this
     */
    public function setModel($value): ModelExists
    {
        $this->model = $value;
        return $this;
    }

    /**
     * Set field parameter
     *
     * @param $value
     * @return $this
     */
    public function setField($value): ModelExists
    {
        $this->field = $value;
        return $this;
    }
}