ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilChatroomAuthInputGUI Class Reference

Class ilChatroomAuthInputGUI. More...

+ Inheritance diagram for ilChatroomAuthInputGUI:
+ Collaboration diagram for ilChatroomAuthInputGUI:

Public Member Functions

 __construct (string $title, string $httpPostVariableName, \ILIAS\HTTP\Services $http)
 
 setIsReadOnly (bool $isReadOnly)
 
 setCtrlPath (array $ctrl_path)
 
 setValueByArray (array $a_values)
 
 checkInput ()
 
 getInput ()
 
 insert (ilTemplate $a_tpl)
 
 render ()
 
 getSize ()
 
 setSize (int $size)
 
- Public Member Functions inherited from ilSubEnabledFormPropertyGUI
 addSubItem (ilFormPropertyGUI $a_item)
 
 getSubItems ()
 
 getSubInputItemsRecursive ()
 returns a flat array of possibly existing subitems recursively More...
 
 checkSubItemsInput ()
 Check SubItems. More...
 
 getSubForm ()
 
 getItemByPostVar (string $a_post_var)
 
- Public Member Functions inherited from ilFormPropertyGUI
 __construct (string $a_title="", string $a_postvar="")
 
 executeCommand ()
 
 getType ()
 
 setTitle (string $a_title)
 
 getTitle ()
 
 setPostVar (string $a_postvar)
 
 getPostVar ()
 
 getFieldId ()
 
 setInfo (string $a_info)
 
 getInfo ()
 
 setAlert (string $a_alert)
 
 getAlert ()
 
 setRequired (bool $a_required)
 
 getRequired ()
 
 setDisabled (bool $a_disabled)
 
 getDisabled ()
 
 checkInput ()
 Check input, strip slashes etc. More...
 
 setParentForm (ilPropertyFormGUI $a_parentform)
 
 getParentForm ()
 
 setParent (ilFormPropertyGUI $a_val)
 
 getParent ()
 
 getSubForm ()
 
 hideSubForm ()
 
 setHiddenTitle (string $a_val)
 
 getHiddenTitle ()
 
 getItemByPostVar (string $a_post_var)
 Get item by post var. More...
 
 serializeData ()
 
 unserializeData (string $a_data)
 
 setParentTable ($a_val)
 Set parent table. More...
 
 getParentTable ()
 Get parent table. More...
 
 writeToSession ()
 
 clearFromSession ()
 
 readFromSession ()
 
 getHiddenTag (string $a_post_var, string $a_value)
 
 setMulti (bool $a_multi, bool $a_sortable=false, bool $a_addremove=true)
 
 getMulti ()
 
 setMultiValues (array $a_values)
 
 getMultiValues ()
 
 getContentOutsideFormTag ()
 Get content that has to reside outside of the parent form tag, e.g. More...
 
 stripSlashesAddSpaceFallback (string $a_str)
 Strip slashes with add space fallback, see https://www.ilias.de/mantis/view.php?id=19727. More...
 
 getTableFilterLabelFor ()
 Get label "for" attribute value for filter. More...
 
 getFormLabelFor ()
 Get label "for" attribute value for form. More...
 
 setRequestParam (string $key, $val)
 This writes the request (aka post) values. More...
 

Protected Member Functions

 getRandomValues ()
 
- Protected Member Functions inherited from ilFormPropertyGUI
 setType (string $a_type)
 
 checkParentFormTable ()
 
 getSessionKey ()
 
 getMultiIconsHTML ()
 
 int ($key)
 
 intArray ($key)
 
 str ($key)
 
 raw ($key)
 
 strArray ($key)
 
 arrayArray ($key)
 
 isRequestParamArray (string $key)
 
 getRequestParam (string $key, Refinery\Transformation $t)
 

Protected Attributes

ILIAS HTTP Services $http
 
array $ctrl_path = []
 
int $size = 10
 
array $values = self::DEFAULT_SHAPE
 
bool $isReadOnly = false
 
- Protected Attributes inherited from ilSubEnabledFormPropertyGUI
array $sub_items = array()
 
- Protected Attributes inherited from ilFormPropertyGUI
array $set_params = []
 
ilTable2GUI $parent_table = null
 
ilFormPropertyGUI $parent_gui = null
 
ilCtrl $ctrl
 
ilLanguage $lng
 
string $type = ""
 
string $title = ""
 
string $postvar = ""
 
string $info = ""
 
string $alert = ""
 
bool $required = false
 
ilPropertyFormGUI $parentform = null
 
string $hidden_title = ""
 
bool $multi = false
 
bool $multi_sortable = false
 
bool $multi_addremove = true
 
array $multi_values = []
 
RequestInterface $request
 
HTTP Services $http
 
Refinery Factory $refinery = null
 
bool $disabled = false
 
ilGlobalTemplateInterface $global_tpl = null
 

Private Member Functions

 uuidV4 ()
 

Private Attributes

const NAME_AUTH_PROP_1 = 'key'
 
const NAME_AUTH_PROP_2 = 'secret'
 
const DEFAULT_SHAPE
 

Additional Inherited Members

- Static Public Member Functions inherited from ilFormPropertyGUI
static removeProhibitedCharacters (string $a_text)
 Remove prohibited characters see #19159. More...
 

Detailed Description

Constructor & Destructor Documentation

◆ __construct()

ilChatroomAuthInputGUI::__construct ( string  $title,
string  $httpPostVariableName,
\ILIAS\HTTP\Services  $http 
)

Definition at line 46 of file class.ilChatroomAuthInputGUI.php.

References $http, ILIAS\GlobalScreen\Provider\__construct(), and ILIAS\FileDelivery\http().

47  {
48  parent::__construct($title, $httpPostVariableName);
49  $this->http = $http;
50  }
static http()
Fetches the global http state from ILIAS.
__construct(Container $dic, ilPlugin $plugin)
+ Here is the call graph for this function:

Member Function Documentation

◆ checkInput()

ilChatroomAuthInputGUI::checkInput ( )

Definition at line 117 of file class.ilChatroomAuthInputGUI.php.

References $post, ilSubEnabledFormPropertyGUI\checkSubItemsInput(), ilFormPropertyGUI\getPostVar(), ilFormPropertyGUI\getRequired(), ILIAS\FileDelivery\http(), ILIAS\Repository\lng(), and ilFormPropertyGUI\setAlert().

117  : bool
118  {
119  $post = $this->http->request()->getParsedBody()[$this->getPostVar()] ?? [];
120 
121  if ($this->getRequired() && 2 > count(array_filter(array_map('trim', $post)))) {
122  $this->setAlert($this->lng->txt('msg_input_is_required'));
123  return false;
124  }
125 
126  return $this->checkSubItemsInput();
127  }
static http()
Fetches the global http state from ILIAS.
$post
Definition: ltitoken.php:49
+ Here is the call graph for this function:

◆ getInput()

ilChatroomAuthInputGUI::getInput ( )
Returns
array{key: string, secret: string}

Definition at line 132 of file class.ilChatroomAuthInputGUI.php.

References ilFormPropertyGUI\getPostVar(), ILIAS\FileDelivery\http(), ILIAS\Repository\refinery(), and ilFormPropertyGUI\stripSlashesAddSpaceFallback().

132  : array
133  {
134  $input = self::DEFAULT_SHAPE;
135 
136  $as_sanizited_string = $this->refinery->custom()->transformation(function (string $value): string {
137  return $this->stripSlashesAddSpaceFallback($value);
138  });
139 
140  $null_to_empty_string = $this->refinery->custom()->transformation(static function ($value): string {
141  if ($value === null) {
142  return '';
143  }
144 
145  throw new ilException('Expected null in transformation');
146  });
147 
148  $sanizite_as_string = $this->refinery->in()->series([
149  $this->refinery->byTrying([
150  $this->refinery->kindlyTo()->string(),
151  $null_to_empty_string
152  ]),
153  $as_sanizited_string
154  ]);
155 
156  if ($this->http->wrapper()->post()->has($this->getPostVar())) {
157  $input = $this->http->wrapper()->post()->retrieve(
158  $this->getPostVar(),
159  $this->refinery->kindlyTo()->recordOf([
160  self::NAME_AUTH_PROP_1 => $sanizite_as_string,
161  self::NAME_AUTH_PROP_2 => $sanizite_as_string
162  ])
163  );
164  }
165 
166  return $input;
167  }
static http()
Fetches the global http state from ILIAS.
stripSlashesAddSpaceFallback(string $a_str)
Strip slashes with add space fallback, see https://www.ilias.de/mantis/view.php?id=19727.
+ Here is the call graph for this function:

◆ getRandomValues()

ilChatroomAuthInputGUI::getRandomValues ( )
protected

Definition at line 57 of file class.ilChatroomAuthInputGUI.php.

References $response, ILIAS\FileDelivery\http(), ILIAS\Filesystem\Stream\Streams\ofString(), and uuidV4().

57  : void
58  {
59  $response = new stdClass();
60 
61  $response->{self::NAME_AUTH_PROP_1} = $this->uuidV4();
62  $response->{self::NAME_AUTH_PROP_2} = $this->uuidV4();
63 
64  $responseStream = \ILIAS\Filesystem\Stream\Streams::ofString(json_encode($response, JSON_THROW_ON_ERROR));
65  $this->http->saveResponse(
66  $this->http->response()
67  ->withBody($responseStream)
68  ->withHeader(ResponseHeader::CONTENT_TYPE, 'application/json')
69  );
70  $this->http->sendResponse();
71  $this->http->close();
72  }
static http()
Fetches the global http state from ILIAS.
static ofString(string $string)
Creates a new stream with an initial value.
Definition: Streams.php:43
$response
+ Here is the call graph for this function:

◆ getSize()

ilChatroomAuthInputGUI::getSize ( )

Definition at line 219 of file class.ilChatroomAuthInputGUI.php.

References $size.

Referenced by render().

219  : int
220  {
221  return $this->size;
222  }
+ Here is the caller graph for this function:

◆ insert()

ilChatroomAuthInputGUI::insert ( ilTemplate  $a_tpl)

Definition at line 169 of file class.ilChatroomAuthInputGUI.php.

References ilTemplate\parseCurrentBlock(), render(), ilTemplate\setCurrentBlock(), and HTML_Template_IT\setVariable().

169  : void
170  {
171  $a_tpl->setCurrentBlock('prop_generic');
172  $a_tpl->setVariable('PROP_GENERIC', $this->render());
173  $a_tpl->parseCurrentBlock();
174  }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:514
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
+ Here is the call graph for this function:

◆ render()

ilChatroomAuthInputGUI::render ( )

Definition at line 176 of file class.ilChatroomAuthInputGUI.php.

References $DIC, $i, $tpl, ilFormPropertyGUI\getDisabled(), ilFormPropertyGUI\getFieldId(), ilFormPropertyGUI\getPostVar(), and getSize().

Referenced by insert().

176  : string
177  {
178  global $DIC;
179 
180  $tpl = new ilTemplate('tpl.chatroom_auth_input.html', true, true, 'Modules/Chatroom');
181 
182  for ($i = 1, $iMax = count($this->values); $i <= $iMax; $i++) {
183  $const = 'NAME_AUTH_PROP_' . $i;
184  $const_val = constant('self::' . $const);
185 
186  $tpl->setVariable('TXT_AUTH_PROP_' . $i, $DIC->language()->txt('chatroom_auth_' . $const_val));
187  $tpl->setVariable('ID_AUTH_PROP_' . $i, $const_val);
188  $tpl->setVariable('NAME_AUTH_PROP_' . $i, $const_val);
189  $tpl->setVariable('VALUE_AUTH_PROP_' . $i, $this->values[$const_val]);
190  }
191 
192  if (!$this->isReadOnly && !$this->getDisabled()) {
193  for ($i = 1, $iMax = count($this->values); $i <= $iMax; $i++) {
194  $const = 'NAME_AUTH_PROP_' . $i;
195  $const_val = constant('self::' . $const);
196 
197  $tpl->setVariable('ID_AUTH_PROP_' . $i . '_BTN', $const_val);
198  }
199 
200  $DIC->ctrl()->setParameterByClass('ilformpropertydispatchgui', 'postvar', $this->getPostVar());
201  $tpl->setVariable(
202  'URL',
203  $DIC->ctrl()->getLinkTargetByClass($this->ctrl_path, 'getRandomValues', '', true)
204  );
205  $tpl->setVariable('ID_BTN', $this->getFieldId() . '_btn');
206  $tpl->setVariable('TXT_BTN', $DIC->language()->txt('chatroom_auth_btn_txt'));
207  }
208 
209  $tpl->setVariable('POST_VAR', $this->getPostVar());
210  $tpl->setVariable('SIZE', $this->getSize());
211 
212  if ($this->getDisabled()) {
213  $tpl->setVariable('DISABLED', ' disabled="disabled"');
214  }
215 
216  return $tpl->get();
217  }
global $DIC
Definition: feed.php:28
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
Definition: latex.php:41
$i
Definition: metadata.php:41
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setCtrlPath()

ilChatroomAuthInputGUI::setCtrlPath ( array  $ctrl_path)
Parameters
string[]$ctrl_path

Definition at line 100 of file class.ilChatroomAuthInputGUI.php.

References $ctrl_path.

100  : void
101  {
102  $this->ctrl_path = $ctrl_path;
103  }

◆ setIsReadOnly()

ilChatroomAuthInputGUI::setIsReadOnly ( bool  $isReadOnly)

Definition at line 52 of file class.ilChatroomAuthInputGUI.php.

References $isReadOnly.

52  : void
53  {
54  $this->isReadOnly = $isReadOnly;
55  }

◆ setSize()

ilChatroomAuthInputGUI::setSize ( int  $size)

Definition at line 224 of file class.ilChatroomAuthInputGUI.php.

References $size.

224  : void
225  {
226  $this->size = $size;
227  }

◆ setValueByArray()

ilChatroomAuthInputGUI::setValueByArray ( array  $a_values)

Definition at line 105 of file class.ilChatroomAuthInputGUI.php.

References ilFormPropertyGUI\getPostVar(), and ilSubEnabledFormPropertyGUI\getSubItems().

105  : void
106  {
107  $this->values = [
108  self::NAME_AUTH_PROP_1 => $a_values[$this->getPostVar()][self::NAME_AUTH_PROP_1] ?? '',
109  self::NAME_AUTH_PROP_2 => $a_values[$this->getPostVar()][self::NAME_AUTH_PROP_2]?? ''
110  ];
111 
112  foreach ($this->getSubItems() as $item) {
113  $item->setValueByArray($a_values);
114  }
115  }
+ Here is the call graph for this function:

◆ uuidV4()

ilChatroomAuthInputGUI::uuidV4 ( )
private

Definition at line 74 of file class.ilChatroomAuthInputGUI.php.

Referenced by getRandomValues().

74  : string
75  {
76  return sprintf(
77  '%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
78  // 32 bits for "time_low"
79  random_int(0, 0xffff),
80  random_int(0, 0xffff),
81  // 16 bits for "time_mid"
82  random_int(0, 0xffff),
83  // 16 bits for "time_high_and_version",
84  // four most significant bits holds version number 4
85  random_int(0, 0x0fff) | 0x4000,
86  // 16 bits, 8 bits for "clk_seq_hi_res",
87  // 8 bits for "clk_seq_low",
88  // two most significant bits holds zero and one for variant DCE1.1
89  random_int(0, 0x3fff) | 0x8000,
90  // 48 bits for "node"
91  random_int(0, 0xffff),
92  random_int(0, 0xffff),
93  random_int(0, 0xffff)
94  );
95  }
+ Here is the caller graph for this function:

Field Documentation

◆ $ctrl_path

array ilChatroomAuthInputGUI::$ctrl_path = []
protected

Definition at line 40 of file class.ilChatroomAuthInputGUI.php.

Referenced by setCtrlPath().

◆ $http

ILIAS HTTP Services ilChatroomAuthInputGUI::$http
protected

Definition at line 38 of file class.ilChatroomAuthInputGUI.php.

Referenced by __construct().

◆ $isReadOnly

bool ilChatroomAuthInputGUI::$isReadOnly = false
protected

Definition at line 44 of file class.ilChatroomAuthInputGUI.php.

Referenced by setIsReadOnly().

◆ $size

int ilChatroomAuthInputGUI::$size = 10
protected

Definition at line 41 of file class.ilChatroomAuthInputGUI.php.

Referenced by getSize(), and setSize().

◆ $values

array ilChatroomAuthInputGUI::$values = self::DEFAULT_SHAPE
protected

Definition at line 43 of file class.ilChatroomAuthInputGUI.php.

◆ DEFAULT_SHAPE

const ilChatroomAuthInputGUI::DEFAULT_SHAPE
private
Initial value:
= [
self::NAME_AUTH_PROP_1 => ''

Definition at line 33 of file class.ilChatroomAuthInputGUI.php.

◆ NAME_AUTH_PROP_1

const ilChatroomAuthInputGUI::NAME_AUTH_PROP_1 = 'key'
private

Definition at line 31 of file class.ilChatroomAuthInputGUI.php.

◆ NAME_AUTH_PROP_2

const ilChatroomAuthInputGUI::NAME_AUTH_PROP_2 = 'secret'
private

Definition at line 32 of file class.ilChatroomAuthInputGUI.php.


The documentation for this class was generated from the following file: