ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAuthFrontendCredentialsSoap.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
26 
28 
30 
32  private \ilGlobalTemplateInterface $main_tpl;
33  private ilLogger $logger;
34 
35  public function __construct(ServerRequestInterface $httpRequest, ilCtrlInterface $ctrl, ilSetting $settings)
36  {
37  global $DIC;
38  $this->main_tpl = $DIC->ui()->mainTemplate();
39  $this->authSession = $DIC['ilAuthSession'];
40  $this->logger = $DIC->logger()->auth();
41  $this->httpRequest = $httpRequest;
42  $this->ctrl = $ctrl;
43  $this->settings = $settings;
45  }
46 
50  public function tryAuthenticationOnLoginPage(): void
51  {
52  $cmd = '';
53  if (isset($this->httpRequest->getQueryParams()['cmd']) && is_string($this->httpRequest->getQueryParams()['cmd'])) {
54  $cmd = $this->httpRequest->getQueryParams()['cmd'];
55  }
56  if ('' === $cmd &&
57  isset($this->httpRequest->getParsedBody()['cmd']) && is_string($this->httpRequest->getParsedBody()['cmd'])) {
58  $cmd = $this->httpRequest->getParsedBody()['cmd'];
59  }
60 
61  $passedSso = '';
62  if (isset($this->httpRequest->getQueryParams()['passed_sso']) && is_string($this->httpRequest->getQueryParams()['passed_sso'])) {
63  $passedSso = $this->httpRequest->getQueryParams()['passed_sso'];
64  }
65 
66  if (!empty($passedSso)) {
67  return;
68  }
69 
70  if (!(bool) $this->settings->get('soap_auth_active', "")) {
71  return;
72  }
73 
74  if (empty($this->getUsername()) || empty($this->getPassword())) {
75  return;
76  }
77 
78  $this->logger->debug('Using SOAP authentication.');
79 
80  $status = ilAuthStatus::getInstance();
81 
82  $provider = new ilAuthProviderSoap($this);
83 
84  $frontend_factory = new ilAuthFrontendFactory();
85  $frontend_factory->setContext(ilAuthFrontendFactory::CONTEXT_STANDARD_FORM);
86  $frontend = $frontend_factory->getFrontend(
87  $this->authSession,
88  $status,
89  $this,
90  [$provider]
91  );
92 
93  $frontend->authenticate();
94 
95  switch ($status->getStatus()) {
97  ilLoggerFactory::getLogger('auth')->debug(
98  'Redirecting to default starting page.'
99  );
101  break;
102 
104  $this->main_tpl->setOnScreenMessage('failure', $status->getTranslatedReason(), true);
105  $this->ctrl->redirectToURL(ilUtil::appendUrlParameterString(
106  $this->ctrl->getLinkTargetByClass('ilStartupGUI', 'showLoginPage', '', false, false),
107  'passed_sso=1'
108  ));
109  break;
110  }
111  }
112 }
static appendUrlParameterString(string $a_url, string $a_par, bool $xml_style=false)
static getLogger(string $a_component_id)
Get component logger.
tryAuthenticationOnLoginPage()
Check if an authentication attempt should be done when login page has been called.
const STATUS_AUTHENTICATION_FAILED
Factory for auth frontend classes.
__construct(ServerRequestInterface $httpRequest, ilCtrlInterface $ctrl, ilSetting $settings)
$provider
Definition: ltitoken.php:80
global $DIC
Definition: shib_login.php:22
static redirectToStartingPage(string $target='')
static getInstance()
Get status instance.
__construct(Container $dic, ilPlugin $plugin)