ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
GUIRequest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\User\Profile;
22 
27 
29 {
34  private array $post;
35 
36  public function __construct(
37  RequestServices $request,
38  private Refinery $refinery
39  ) {
40  $this->wrapper = $request->wrapper();
41  $this->post = $request->request()->getParsedBody();
42  }
43 
44  public function getUserId(): int
45  {
46  $user_id = $this->int('user_id');
47  if ($user_id !== 0) {
48  return $this->int('user_id');
49  }
50  return $this->int('user');
51  }
52 
53  public function getBackUrl(): string
54  {
55  return $this->str('back_url');
56  }
57 
58  public function getBaseClass(): string
59  {
60  return $this->str('baseClass');
61  }
62 
63  public function getPrompted(): int
64  {
65  return $this->int('prompted');
66  }
67 
68  public function getOsdId(): int
69  {
70  return $this->int('osd_id');
71  }
72 
73  public function getFieldId(): string
74  {
75  return $this->str('f');
76  }
77 
78  public function getTerm(): string
79  {
80  return $this->str('term');
81  }
82 
83  public function getToken(): string
84  {
85  return $this->str('token');
86  }
87 
88  public function getUserFileCapture(): string
89  {
90  $capture = $this->str('userfile_capture');
91 
92  if ($capture !== '') {
93  return $capture;
94  }
95 
96  return $this->str('user_picture_carry');
97  }
98 
99  private function int(string $key): int
100  {
101  $source = $this->existsInPostOrQuery($key);
102  if ($source === '') {
103  return 0;
104  }
105 
106  $transformation = $this->refinery->kindlyTo()->int();
107  return $this->getFromQueryOrPost($key, $transformation, $source);
108  }
109 
110  private function str(string $key): string
111  {
112  $source = $this->existsInPostOrQuery($key);
113  if ($source === '') {
114  return '';
115  }
116 
117  $transformation = $this->refinery->kindlyTo()->string();
118  return $this->getFromQueryOrPost($key, $transformation, $source);
119  }
120 
125  public function getParsedBody(): array
126  {
127  return $this->post;
128  }
129 
134  private function existsInPostOrQuery(string $key): string
135  {
136  if ($this->wrapper->post()->has($key)) {
137  return 'post';
138  }
139 
140  if ($this->wrapper->query()->has($key)) {
141  return 'query';
142  }
143 
144  return '';
145  }
146 
147  private function getFromQueryOrPost(string $key, Transformation $transformation, string $source): string|int
148  {
149  if ($source === 'query') {
150  return $this->wrapper->query()->retrieve($key, $transformation);
151  }
152 
153  return $this->wrapper->post()->retrieve($key, $transformation);
154  }
155 }
__construct(RequestServices $request, private Refinery $refinery)
Definition: GUIRequest.php:36
getFromQueryOrPost(string $key, Transformation $transformation, string $source)
Definition: GUIRequest.php:147
A transformation is a function from one datatype to another.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...