2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
2016-08-19 00:51:35 +02:00
|
|
|
|
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
|
2008-01-09 05:18:36 +01:00
|
|
|
/**
|
2012-06-26 15:03:11 +02:00
|
|
|
* Allows input of credit card numbers via four separate form fields,
|
|
|
|
* including generic validation of its numeric values.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2012-06-26 15:03:11 +02:00
|
|
|
* @todo Validate
|
2008-01-09 05:18:36 +01:00
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
class CreditCardField extends TextField {
|
2013-10-03 16:26:31 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add default attributes for use on all inputs.
|
|
|
|
*
|
|
|
|
* @return array List of attributes
|
|
|
|
*/
|
|
|
|
public function getAttributes() {
|
|
|
|
return array_merge(
|
|
|
|
parent::getAttributes(),
|
|
|
|
array(
|
|
|
|
'autocomplete' => 'off',
|
|
|
|
'maxlength' => 4,
|
|
|
|
'size' => 4
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Field($properties = array()) {
|
2016-07-25 07:24:26 +02:00
|
|
|
$parts = $this->arrayValue();
|
2011-12-22 13:10:57 +01:00
|
|
|
|
2013-09-30 17:48:15 +02:00
|
|
|
$properties['ValueOne'] = $parts[0];
|
|
|
|
$properties['ValueTwo'] = $parts[1];
|
|
|
|
$properties['ValueThree'] = $parts[2];
|
|
|
|
$properties['ValueFour'] = $parts[3];
|
|
|
|
|
|
|
|
return parent::Field($properties);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2012-03-07 17:45:14 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get tabindex HTML string
|
|
|
|
*
|
|
|
|
* @param int $increment Increase current tabindex by this value
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-03 16:26:31 +02:00
|
|
|
public function getTabIndexHTML($increment = 0) {
|
2013-09-20 01:13:10 +02:00
|
|
|
// we can't add a tabindex if there hasn't been one set yet.
|
|
|
|
if($this->getAttribute('tabindex') === null) return false;
|
|
|
|
|
2012-05-08 14:26:22 +02:00
|
|
|
$tabIndex = (int)$this->getAttribute('tabindex') + (int)$increment;
|
2012-03-07 17:45:14 +01:00
|
|
|
return (is_numeric($tabIndex)) ? ' tabindex = "' . $tabIndex . '"' : '';
|
|
|
|
}
|
2013-10-03 16:26:31 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function dataValue() {
|
2016-07-25 07:24:26 +02:00
|
|
|
if(is_array($this->value)) {
|
|
|
|
return implode("", $this->value);
|
|
|
|
} else {
|
|
|
|
return $this->value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get either list of values, or null
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function arrayValue() {
|
|
|
|
if (is_array($this->value)) {
|
|
|
|
return $this->value;
|
|
|
|
}
|
|
|
|
|
|
|
|
$value = $this->dataValue();
|
|
|
|
return $this->parseCreditCard($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse credit card value into list of four four-digit values
|
|
|
|
*
|
|
|
|
* @param string $value
|
|
|
|
* @return array|null
|
|
|
|
*/
|
|
|
|
protected function parseCreditCard($value) {
|
|
|
|
if(preg_match("/([0-9]{4})([0-9]{4})([0-9]{4})([0-9]{4})/", $value, $parts)) {
|
|
|
|
return [ $parts[1], $parts[2], $parts[3], $parts[4] ];
|
|
|
|
}
|
|
|
|
return null;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-05-11 02:32:00 +02:00
|
|
|
public function validate($validator){
|
2016-07-25 07:24:26 +02:00
|
|
|
$value = $this->dataValue();
|
|
|
|
if(empty($value)) {
|
2015-01-30 23:15:52 +01:00
|
|
|
return true;
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2016-07-25 07:24:26 +02:00
|
|
|
// Check if format is valid
|
|
|
|
if ($this->parseCreditCard($value)) {
|
|
|
|
return true;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2016-07-25 07:24:26 +02:00
|
|
|
|
|
|
|
// Format is invalid
|
|
|
|
$validator->validationError(
|
|
|
|
$this->name,
|
|
|
|
_t(
|
|
|
|
'Form.VALIDATIONCREDIT',
|
|
|
|
"Please ensure you have entered the credit card number correctly"
|
|
|
|
),
|
|
|
|
"validation"
|
|
|
|
);
|
|
|
|
return false;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|