ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Constraint.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 use ILIAS\Data;
29 
31 {
34  use ProblemBuilder;
35 
36  protected Data\Factory $data_factory;
37  protected \ILIAS\Language\Language $lng;
39  protected $is_ok;
41  protected $error;
42 
55  public function __construct(callable $is_ok, $error, Data\Factory $data_factory, \ILIAS\Language\Language $lng)
56  {
57  $this->is_ok = $is_ok;
58  $this->error = $error;
59  $this->data_factory = $data_factory;
60  $this->lng = $lng;
61  }
62 
66  protected function getError()
67  {
68  return $this->error;
69  }
70 
74  final public function check($value)
75  {
76  if (!$this->accepts($value)) {
77  throw new \UnexpectedValueException($this->getErrorMessage($value));
78  }
79 
80  return null;
81  }
82 
86  final public function accepts($value): bool
87  {
88  return call_user_func($this->is_ok, $value);
89  }
90 
94  final public function problemWith($value): ?string
95  {
96  if (!$this->accepts($value)) {
97  return $this->getErrorMessage($value);
98  }
99 
100  return null;
101  }
102 
106  final public function applyTo(Result $result): Result
107  {
108  if ($result->isError()) {
109  return $result;
110  }
111 
112  $problem = $this->problemWith($result->value());
113  if ($problem !== null) {
114  $error = $this->data_factory->error($problem);
115  return $error;
116  }
117 
118  return $result;
119  }
120 }
__construct(callable $is_ok, $error, Data\Factory $data_factory, \ILIAS\Language\Language $lng)
If $error is a callable it needs to take two parameters:
Definition: Constraint.php:55
value()
Get the encapsulated value.
isError()
Get to know if the result is an error.
Interface Observer Contains several chained tasks and infos about them.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Builds data types.
Definition: Factory.php:35
getErrorMessage($value)