summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/DataValues/ValueValidators/CompoundConstraintValueValidator.php
blob: ec412a02bae4434eb88ba1077c7261e108ebfc7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php

namespace SMW\DataValues\ValueValidators;

use RuntimeException;

/**
 * @private
 *
 * @license GNU GPL v2+
 * @since 2.4
 *
 * @author mwjames
 */
class CompoundConstraintValueValidator implements ConstraintValueValidator {

	/**
	 * @var boolean
	 */
	private $hasConstraintViolation = false;

	/**
	 * @var array
	 */
	private $constraintValueValidators = [];

	/**
	 * @since 2.4
	 *
	 * @param ConstraintValueValidator $constraintValueValidator
	 */
	public function registerConstraintValueValidator( ConstraintValueValidator $constraintValueValidator ) {
		$this->constraintValueValidators[] = $constraintValueValidator;
	}

	/**
	 * @since 2.4
	 *
	 * {@inheritDoc}
	 */
	public function hasConstraintViolation() {
		return $this->hasConstraintViolation;
	}

	/**
	 * @since 2.4
	 *
	 * {@inheritDoc}
	 */
	public function validate( $dataValue ) {

		$this->hasConstraintViolation = false;

		if ( $this->constraintValueValidators === [] ) {
			throw new RuntimeException( "Missing a registered ConstraintValueValidator" );
		}

		// Any constraint violation by a ConstraintValueValidator registered will
		// force an immediate halt without checking any other possible constraint
		foreach ( $this->constraintValueValidators as $constraintValueValidator ) {
			$constraintValueValidator->validate( $dataValue );

			if ( $constraintValueValidator->hasConstraintViolation() ) {
				$this->hasConstraintViolation = true;
				break;
			}
		}
	}

}