ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectRequestRetriever.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
31 {
33  protected Factory $refinery;
34 
35  public function __construct(WrapperFactory $wrapper, Factory $refinery)
36  {
37  $this->wrapper = $wrapper;
38  $this->refinery = $refinery;
39  }
40 
44  private function getFromRequest(string $key, Transformation $t)
45  {
46  if ($this->wrapper->query()->has($key)) {
47  return $this->wrapper->query()->retrieve($key, $t);
48  }
49  if ($this->wrapper->post()->has($key)) {
50  return $this->wrapper->post()->retrieve($key, $t);
51  }
52  return null;
53  }
54 
55  public function has(string $key): bool
56  {
57  return $this->wrapper->query()->has($key)
58  || $this->wrapper->post()->has($key);
59  }
60 
61  public function getMaybeInt(string $key, ?int $fallback = null): ?int
62  {
63  return $this->getFromRequest($key, $this->refinery->kindlyTo()->int()) ?? $fallback;
64  }
65 
66  public function getMaybeString(string $key, ?string $fallback = null): ?string
67  {
68  return $this->getFromRequest($key, $this->refinery->kindlyTo()->string()) ?? $fallback;
69  }
70 
71  public function getArrayOfInt(string $key): array
72  {
73  return $this->getFromRequest(
74  $key,
75  $this->refinery->kindlyTo()->dictOf(
76  $this->refinery->kindlyTo()->int()
77  )
78  ) ?? [];
79  }
80 
81  public function getBool(string $key): bool
82  {
83  return $this->getFromRequest($key, $this->refinery->kindlyTo()->bool()) ?? false;
84  }
85 
86  public function getSelectedIdsFromObjectList(): array
87  {
88  if ($this->wrapper->query()->has('tl_id')) {
89  return [$this->wrapper->query()->retrieve(
90  'tl_id',
91  $this->refinery->kindlyTo()->int()
92  )];
93  }
94  if ($this->wrapper->post()->has('id')) {
95  return $this->wrapper->post()->retrieve(
96  'id',
97  $this->refinery->container()->mapValues(
98  $this->refinery->kindlyTo()->int()
99  )
100  );
101  }
102 
103  return [];
104  }
105 }
getFromRequest(string $key, Transformation $t)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getMaybeString(string $key, ?string $fallback=null)
Base class for all sub item list gui&#39;s.
getMaybeInt(string $key, ?int $fallback=null)
A transformation is a function from one datatype to another.
__construct(WrapperFactory $wrapper, Factory $refinery)