ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
RequestParser.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
29 {
31  protected Refinery $refinery;
33 
34  public function __construct(
35  GlobalHttpState $http,
36  Refinery $refinery,
37  PathFactoryInterface $path_factory
38  ) {
39  $this->http = $http;
40  $this->refinery = $refinery;
41  $this->path_factory = $path_factory;
42  }
43 
44  public function fetchBasePath(): PathInterface
45  {
46  return $this->fetchPath(Parameter::BASE_PATH, false);
47  }
48 
49  public function fetchActionPath(): PathInterface
50  {
51  return $this->fetchPath(Parameter::ACTION_PATH, true);
52  }
53 
54  public function fetchRequestForForm(
55  bool $with_action_path
57  return new RequestForForm(
58  $request = $this->http->request(),
59  $with_action_path ? $this->fetchActionPath() : null
60  );
61  }
62 
63  protected function fetchPath(
64  Parameter $parameter,
65  bool $throw_error
66  ): PathInterface {
67  $request_wrapper = $this->http->wrapper()->query();
68  if ($request_wrapper->has($parameter->value)) {
69  $path_string = $request_wrapper->retrieve(
70  $parameter->value,
71  $this->refinery->kindlyTo()->string()
72  );
73  return $this->path_factory->fromString(urldecode($path_string));
74  }
75  if ($throw_error) {
76  throw new \ilMDEditorException('Parameter not found.');
77  } else {
78  return $this->path_factory->custom()->get();
79  }
80  }
81 }
__construct(GlobalHttpState $http, Refinery $refinery, PathFactoryInterface $path_factory)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
fetchRequestForForm(bool $with_action_path)
fetchPath(Parameter $parameter, bool $throw_error)