mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-13 17:56:59 +00:00
60be82476b
Bug: T127077 Change-Id: I894d8b1bab4d0cd441b0895c37611a82754889df
51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
|
|
use ValueFormatters\Exceptions\MismatchingDataValueTypeException;
|
|
use ValueValidators\Result;
|
|
use ValueValidators\ValueValidator;
|
|
use ValueValidators\Error;
|
|
use DataValues\StringValue;
|
|
|
|
// @author Duc Linh Tran, Julian Hilbig, Moritz Schubotz
|
|
|
|
class MathValidator implements ValueValidator {
|
|
|
|
/**
|
|
* Validates a value with MathInputCheckRestbase
|
|
*
|
|
* @param mixed $value The value to validate
|
|
*
|
|
* @return \ValueValidators\Result
|
|
* @throws ValueFormatters\Exceptions\MismatchingDataValueTypeException
|
|
*/
|
|
public function validate( $value ) {
|
|
if ( !( $value instanceof StringValue ) ) {
|
|
throw new MismatchingDataValueTypeException( 'StringValue', get_class( $value ) );
|
|
}
|
|
|
|
// get input String from value
|
|
$tex = $value->getValue();
|
|
|
|
$checker = new MathInputCheckRestbase( $tex );
|
|
if ( $checker->isValid() ) {
|
|
return Result::newSuccess();
|
|
}
|
|
|
|
// TeX string is not valid
|
|
return Result::newError(
|
|
array(
|
|
Error::newError( null, null, 'malformed-value', array( $checker->getError() ) )
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see ValueValidator::setOptions()
|
|
*
|
|
* @param array $options
|
|
*/
|
|
public function setOptions( array $options ) {
|
|
// Do nothing. This method shouldn't even be in the interface.
|
|
}
|
|
}
|