File: /home/accemeff/vendor/craftcms/cms/src/validators/ElementUriValidator.php
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\validators;
use Craft;
use craft\base\Element;
use craft\errors\OperationAbortedException;
use craft\helpers\ElementHelper;
use yii\base\InvalidConfigException;
/**
* Class ElementUriValidator.
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0
*/
class ElementUriValidator extends UriValidator
{
// Public Methods
// =========================================================================
/**
* @inheritdoc
*/
public function init()
{
parent::init();
$this->skipOnEmpty = false;
}
/**
* @inheritdoc
* @throws InvalidConfigException if $attribute is not 'uri'
*/
public function validateAttribute($model, $attribute)
{
if ($attribute !== 'uri') {
throw new InvalidConfigException('Invalid use of ElementUriValidator');
}
try {
/** @var Element $model */
ElementHelper::setUniqueUri($model);
} catch (OperationAbortedException $e) {
$this->addError($model, $attribute, Craft::t('app', 'Could not generate a unique URI based on the URI format.'));
return;
}
if (!$this->isEmpty($model->uri)) {
parent::validateAttribute($model, $attribute);
}
}
}