ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSamlIdpMetadataInputGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  private const AUTH_SAML_ADD_IDP_MD_ERROR = 'auth_saml_add_idp_md_error';
24 
25  public function __construct(string $title, string $httpPostVar, protected ilSamlIdpXmlMetadataParser $idpMetadataParser)
26  {
27  parent::__construct($title, $httpPostVar);
28  }
29 
30  public function checkInput(): bool
31  {
32  $valid = parent::checkInput();
33  if (!$valid) {
34  return false;
35  }
36 
37  try {
38  $httpValue = $this->raw($this->getPostVar());
39 
40  $result = $this->idpMetadataParser->parse($httpValue);
41  if ($result->isError()) {
42  $this->setAlert(implode(' ', [$this->lng->txt(self::AUTH_SAML_ADD_IDP_MD_ERROR), $result->error()]));
43  return false;
44  }
45 
46  $this->value = $this->stripSlashesAddSpaceFallback($result->value());
47  } catch (Exception) {
48  $this->setAlert($this->lng->txt(self::AUTH_SAML_ADD_IDP_MD_ERROR));
49  return false;
50  }
51 
52  return true;
53  }
54 }
$valid
stripSlashesAddSpaceFallback(string $a_str)
Strip slashes with add space fallback, see https://www.ilias.de/mantis/view.php?id=19727.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
__construct(string $title, string $httpPostVar, protected ilSamlIdpXmlMetadataParser $idpMetadataParser)