2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This validation class handles all form and custom form validation through
|
|
|
|
* the use of Required fields.
|
2008-03-06 03:06:47 +01:00
|
|
|
*
|
2007-07-19 12:40:28 +02:00
|
|
|
* Relies on javascript for client-side validation, and marking fields after serverside validation.
|
|
|
|
*
|
2008-03-06 03:06:47 +01:00
|
|
|
* Acts as a visitor to individual form fields.
|
|
|
|
*
|
2008-01-11 02:49:50 +01:00
|
|
|
* @todo Automatically mark fields after serverside validation and replace the form through
|
2007-07-19 12:40:28 +02:00
|
|
|
* FormResponse if the request was made by ajax.
|
|
|
|
*
|
2008-01-09 05:18:36 +01:00
|
|
|
* @package forms
|
|
|
|
* @subpackage validators
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
abstract class Validator extends Object {
|
|
|
|
protected $form;
|
|
|
|
protected $errors;
|
2008-08-18 02:07:37 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Static for default value of $this->javascriptValidationHandler.
|
|
|
|
* Set with Validator::set_javascript_validation_handler();
|
|
|
|
*/
|
|
|
|
protected static $javascript_validation_handler = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for javascript validation. Can be "prototype" or "none"
|
|
|
|
*/
|
|
|
|
protected $javascriptValidationHandler = "prototype";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Call this function to set the javascript validation handler for all valdiation on your site.
|
|
|
|
* This could be called from _config.php to set site-wide javascript validation, or from ContentController::init()
|
|
|
|
* to affect only the front-end site.
|
|
|
|
*
|
|
|
|
* @param $handler A string representing the handler to use: 'prototype' or 'none'.
|
|
|
|
* @todo Add 'jquery' as a handler option.
|
|
|
|
*/
|
|
|
|
public function set_javascript_validation_handler($handler = 'prototype') {
|
|
|
|
self::$javascript_validation_handler = $handler;
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2008-08-18 02:07:37 +02:00
|
|
|
/**
|
|
|
|
* Disable JavaScript validation for this validator
|
|
|
|
*/
|
|
|
|
public function setJavascriptValidationHandler($handler) {
|
|
|
|
if($handler == 'prototype' || $handler == 'none') {
|
|
|
|
$this->javascriptValidationHandler = $handler;
|
|
|
|
} else {
|
|
|
|
user_error("Validator::setJavascriptValidationHandler() passed bad handler '$handler'", E_USER_WARNING);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
public function __construct() {
|
2008-08-18 02:07:37 +02:00
|
|
|
if(self::$javascript_validation_handler) $this->setJavascriptValidationHandler(self::$javascript_validation_handler);
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2009-01-08 00:00:54 +01:00
|
|
|
if($this->javascriptValidationHandler && $this->javascriptValidationHandler != 'none') {
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63154 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-27 18:02:38 +02:00
|
|
|
Requirements::javascript(SAPPHIRE_DIR . '/javascript/Validator.js');
|
2008-08-18 02:07:37 +02:00
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
function setForm($form) {
|
|
|
|
$this->form = $form;
|
|
|
|
}
|
|
|
|
|
|
|
|
function validate(){
|
|
|
|
$this->errors = null;
|
|
|
|
$this->php($this->form->getData());
|
|
|
|
|
|
|
|
return $this->errors;
|
|
|
|
}
|
|
|
|
|
2008-03-06 03:06:47 +01:00
|
|
|
/**
|
|
|
|
* Callback to register an error on a field (Called from implementations of {@link FormField::validate})
|
|
|
|
*
|
|
|
|
* @param $fieldName name of the field
|
|
|
|
* @param $message error message to display
|
|
|
|
* @param $messageType optional parameter, gets loaded into the HTML class attribute in the rendered output
|
|
|
|
*/
|
|
|
|
function validationError($fieldName,$message,$messageType=''){
|
2007-07-19 12:40:28 +02:00
|
|
|
$this->errors[] = array(
|
|
|
|
'fieldName' => $fieldName,
|
|
|
|
'message' => $message,
|
|
|
|
'messageType' => $messageType,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2007-08-23 07:47:54 +02:00
|
|
|
function showError(){
|
|
|
|
debug::show($this->errors);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getCombinedError(){
|
|
|
|
if($this->errors) {
|
|
|
|
foreach($this->errors as $error){
|
|
|
|
$ret['message'] .= $error['message']."<br />";
|
|
|
|
$ret['messageType'] .= $error['messageType']."<br />";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function getError(){
|
|
|
|
return $this->errors;
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
function requireField($fieldName, $data) {
|
|
|
|
if(!$data[$fieldName]) $this->validationError($fieldName, "$fieldName is required", "required");
|
|
|
|
}
|
|
|
|
|
|
|
|
function includeJavascriptValidation() {
|
2008-08-18 02:07:37 +02:00
|
|
|
if($this->javascriptValidationHandler == 'prototype') {
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63154 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-27 18:02:38 +02:00
|
|
|
Requirements::javascript(THIRDPARTY_DIR . "/prototype.js");
|
|
|
|
Requirements::javascript(THIRDPARTY_DIR . "/behaviour.js");
|
|
|
|
Requirements::javascript(THIRDPARTY_DIR . "/prototype_improvements.js");
|
2008-10-03 02:47:08 +02:00
|
|
|
Requirements::javascript(SAPPHIRE_DIR . "/javascript/i18n.js");
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63154 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-27 18:02:38 +02:00
|
|
|
Requirements::javascript(SAPPHIRE_DIR . "/javascript/Validator.js");
|
2008-08-18 02:07:37 +02:00
|
|
|
|
|
|
|
$code = $this->javascript();
|
|
|
|
$formID = $this->form->FormName();
|
|
|
|
$js = <<<JS
|
2007-07-19 12:40:28 +02:00
|
|
|
Behaviour.register({
|
|
|
|
'#$formID': {
|
|
|
|
validate : function(fromAnOnBlur) {
|
|
|
|
initialiseForm(this, fromAnOnBlur);
|
|
|
|
$code
|
|
|
|
|
|
|
|
var error = hasHadFormError();
|
|
|
|
if(!error && fromAnOnBlur) clearErrorMessage(fromAnOnBlur);
|
|
|
|
|
|
|
|
return !error;
|
|
|
|
},
|
|
|
|
onsubmit : function() {
|
2007-11-19 02:52:13 +01:00
|
|
|
if(typeof this.bypassValidation == 'undefined' || !this.bypassValidation) return this.validate();
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
'#$formID input' : {
|
|
|
|
initialise: function() {
|
|
|
|
if(!this.old_onblur) this.old_onblur = function() { return true; }
|
|
|
|
if(!this.old_onfocus) this.old_onfocus = function() { return true; }
|
|
|
|
},
|
|
|
|
onblur : function() {
|
|
|
|
if(this.old_onblur()) {
|
2008-11-10 04:51:35 +01:00
|
|
|
// Don't perform instant validation for CalendarDateField fields; it creates usability wierdness.
|
|
|
|
if(this.parentNode.className.indexOf('calendardate') == -1 || this.value) {
|
|
|
|
return $('$formID').validate(this);
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'#$formID select' : {
|
|
|
|
initialise: function() {
|
|
|
|
if(!this.old_onblur) this.old_onblur = function() { return true; }
|
|
|
|
},
|
|
|
|
onblur : function() {
|
|
|
|
if(this.old_onblur()) {
|
|
|
|
return $('$formID').validate(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
JS;
|
|
|
|
|
2008-08-18 02:07:37 +02:00
|
|
|
Requirements::customScript($js);
|
|
|
|
// HACK Notify the form that the validators client-side validation code has already been included
|
|
|
|
if($this->form) $this->form->jsValidationIncluded = true;
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the named field is "required".
|
|
|
|
* Used by FormField to return a value for FormField::Required(), to do things like show *s on the form template.
|
|
|
|
* By default, it always returns false.
|
|
|
|
*/
|
|
|
|
function fieldIsRequired($fieldName) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
abstract function javascript();
|
|
|
|
|
|
|
|
abstract function php($data);
|
|
|
|
}
|
|
|
|
?>
|