mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
6e589aac75
API Implement form schema "errors" handling
143 lines
3.5 KiB
PHP
143 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
use SilverStripe\Core\Object;
|
|
use SilverStripe\ORM\ValidationResult;
|
|
|
|
/**
|
|
* This validation class handles all form and custom form validation through the use of Required
|
|
* fields. It relies on javascript for client-side validation, and marking fields after server-side
|
|
* validation. It acts as a visitor to individual form fields.
|
|
*/
|
|
abstract class Validator extends Object
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->resetResult();
|
|
}
|
|
|
|
/**
|
|
* @var Form $form
|
|
*/
|
|
protected $form;
|
|
|
|
/**
|
|
* @var ValidationResult $result
|
|
*/
|
|
protected $result;
|
|
|
|
/**
|
|
* @param Form $form
|
|
* @return $this
|
|
*/
|
|
public function setForm($form)
|
|
{
|
|
$this->form = $form;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Returns any errors there may be.
|
|
*
|
|
* @return ValidationResult
|
|
*/
|
|
public function validate()
|
|
{
|
|
$this->resetResult();
|
|
$this->php($this->form->getData());
|
|
return $this->result;
|
|
}
|
|
|
|
/**
|
|
* Callback to register an error on a field (Called from implementations of
|
|
* {@link FormField::validate}). The optional error message type parameter is loaded into the
|
|
* HTML class attribute.
|
|
*
|
|
* See {@link getErrors()} for details.
|
|
*
|
|
* @param string $fieldName Field name for this error
|
|
* @param string $message The message string
|
|
* @param string $messageType The type of message: e.g. "bad", "warning", "good", or "required". Passed as a CSS
|
|
* class to the form, so other values can be used if desired.
|
|
* @param string|bool $cast Cast type; One of the CAST_ constant definitions.
|
|
* Bool values will be treated as plain text flag.
|
|
* @return $this
|
|
*/
|
|
public function validationError(
|
|
$fieldName,
|
|
$message,
|
|
$messageType = ValidationResult::TYPE_ERROR,
|
|
$cast = ValidationResult::CAST_TEXT
|
|
) {
|
|
$this->result->addFieldError($fieldName, $message, $messageType, null, $cast);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Returns all errors found by a previous call to {@link validate()}. The returned array has a
|
|
* structure resembling:
|
|
*
|
|
* <code>
|
|
* array(
|
|
* 'fieldName' => '[form field name]',
|
|
* 'message' => '[validation error message]',
|
|
* 'messageType' => '[bad|message|validation|required]',
|
|
* 'messageCast' => '[text|html]'
|
|
* )
|
|
* </code>
|
|
*
|
|
* @return null|array
|
|
*/
|
|
public function getErrors()
|
|
{
|
|
if ($this->result) {
|
|
return $this->result->getMessages();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Get last validation result
|
|
*
|
|
* @return ValidationResult
|
|
*/
|
|
public function getResult()
|
|
{
|
|
return $this->result;
|
|
}
|
|
|
|
/**
|
|
* Returns whether the field in question is required. This will usually display '*' next to the
|
|
* field. The base implementation always returns false.
|
|
*
|
|
* @param string $fieldName
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function fieldIsRequired($fieldName)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @param array $data
|
|
*
|
|
* @return mixed
|
|
*/
|
|
abstract public function php($data);
|
|
|
|
/**
|
|
* Clear current result
|
|
*
|
|
* @return $this
|
|
*/
|
|
protected function resetResult()
|
|
{
|
|
$this->result = ValidationResult::create();
|
|
return $this;
|
|
}
|
|
}
|