ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilForcedUserPasswordChangeStartUpStep.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
25 {
26  private ilObjUser $user;
27  private ilCtrl $ctrl;
29 
30  public function __construct(
31  ilObjUser $user,
32  ilCtrl $ctrl,
33  ServerRequestInterface $request
34  ) {
35  $this->user = $user;
36  $this->ctrl = $ctrl;
37  $this->request = $request;
38  }
39 
40  public function shouldStoreRequestTarget(): bool
41  {
42  return true;
43  }
44 
45  public function isInFulfillment(): bool
46  {
47  if (
48  !isset($this->request->getQueryParams()['baseClass']) ||
49  strtolower($this->request->getQueryParams()['baseClass']) !== strtolower(ilDashboardGUI::class)
50  ) {
51  return false;
52  }
53 
54  return
55  (
56  strtolower($this->ctrl->getCmdClass()) === strtolower(ilLocalUserPasswordSettingsGUI::class)
57  ) &&
58  in_array(
59  $this->ctrl->getCmd(),
60  [
63  ],
64  true
65  )
66  ;
67  }
68 
69  public function shouldInterceptRequest(): bool
70  {
71  if (ilSession::get('used_external_auth_mode')) {
72  return false;
73  }
74 
75  if (!$this->isInFulfillment() && ($this->user->isPasswordChangeDemanded() || $this->user->isPasswordExpired(
76  ))) {
77  return true;
78  }
79 
80  return false;
81  }
82 
83  public function execute(): void
84  {
85  $this->ctrl->redirectToURL(
86  $this->ctrl->getLinkTargetByClass(
87  [
88  ilDashboardGUI::class,
89  ilPersonalSettingsGUI::class,
90  ilLocalUserPasswordSettingsGUI::class
91  ],
93  )
94  );
95  }
96 }
static get(string $a_var)
__construct(ilObjUser $user, ilCtrl $ctrl, ServerRequestInterface $request)