ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AccessQuestionImage.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Test\Access;
22 
26 
28 {
29  public function __construct(private readonly Readable $readable)
30  {
31  }
32 
33  public function isPermitted(string $path): Result
34  {
35  $object_id = $this->objectId($path);
36  if (!$object_id) {
37  return new Error('Not a question image path of test questions.');
38  }
39 
40  return new Ok($this->readable->objectId($object_id));
41  }
42 
43  private function objectId(string $path): ?int
44  {
45  $results = [];
46  if (!preg_match(':/assessment/(\d+)/(\d+)/images/([^/]+)$:', $path, $results)) {
47  return null;
48  }
49 
50  return (int) $results[1];
51  }
52 }
$path
Definition: ltiservices.php:29
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
A result encapsulates a value or an error and simplifies the handling of those.
Definition: Ok.php:30
$results
__construct(private readonly Readable $readable)