ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSessionReminderCheck.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 
29 {
32  private ilLanguage $lng;
33  private ilDBInterface $db;
35  private ilLogger $logger;
37 
38  public function __construct(
39  GlobalHttpState $http,
40  Refinery $refinery,
41  ilLanguage $lng,
42  ilDBInterface $db,
43  ilIniFile $clientIni,
44  ilLogger $logger,
45  ClockInterface $utcClock,
46  ) {
47  $this->http = $http;
48  $this->refinery = $refinery;
49  $this->lng = $lng;
50  $this->db = $db;
51  $this->clientIni = $clientIni;
52  $this->logger = $logger;
53  $this->clock = $utcClock;
54  }
55 
56  public function handle(): ResponseInterface
57  {
58  $sessionIdHash = ilUtil::stripSlashes(
59  $this->http->wrapper()->post()->retrieve(
60  'hash',
61  $this->refinery->kindlyTo()->string()
62  )
63  );
64 
65  $this->logger->debug('Session reminder call for session id hash: ' . $sessionIdHash);
66 
67  // disable session writing and extension of expiration time
69 
70  $response = ['remind' => false];
71 
72  $res = $this->db->queryF(
73  'SELECT expires, user_id, data FROM usr_session WHERE MD5(session_id) = %s',
74  ['text'],
75  [$sessionIdHash]
76  );
77 
78  $num = $this->db->numRows($res);
79 
80  if (0 === $num) {
81  $response['message'] = 'ILIAS could not determine the session data.';
82  return $this->toJsonResponse($response);
83  }
84 
85  if ($num > 1) {
86  $response['message'] = 'The determined session data is not unique.';
87  return $this->toJsonResponse($response);
88  }
89 
90  $data = $this->db->fetchAssoc($res);
91  if (!$this->isAuthenticatedUsrSession($data)) {
92  $response['message'] = 'ILIAS could not fetch the session data or the corresponding user is no more authenticated.';
93  return $this->toJsonResponse($response);
94  }
95 
96  $expiration_time = (int) $data['expires'];
97  if (null === $expiration_time) {
98  $response['message'] = 'ILIAS could not determine the expiration time from the session data.';
99  return $this->toJsonResponse($response);
100  }
101 
102  if ($this->isSessionAlreadyExpired($expiration_time)) {
103  $response['message'] = 'The session is already expired. The client should have received a remind command before.';
104  return $this->toJsonResponse($response);
105  }
106 
108  $ilUser = ilObjectFactory::getInstanceByObjId((int) $data['user_id'], false);
109  if (!($ilUser instanceof ilObjUser)) {
110  $response['message'] = 'ILIAS could not fetch the session data or the corresponding user is no more authenticated.';
111  return $this->toJsonResponse($response);
112  }
113 
114  $session_reminder = ilSessionReminder::byLoggedInUser();
115  $reminder_time = $expiration_time - ($session_reminder->getEffectiveLeadTime() * 60);
116  if ($reminder_time > $this->clock->now()->getTimestamp()) {
117  // session will expire in <lead_time> minutes
118  $response['message'] = 'Lead time not reached, yet. Current time: ' .
119  date('Y-m-d H:i:s') . ', Reminder time: ' . date('Y-m-d H:i:s', $reminder_time);
120  return $this->toJsonResponse($response);
121  }
122 
123  $dateTime = new ilDateTime($expiration_time, IL_CAL_UNIX);
124  switch ($ilUser->getTimeFormat()) {
126  $formatted_expiration_time = $dateTime->get(IL_CAL_FKT_DATE, 'g:ia', $ilUser->getTimeZone());
127  break;
128 
130  default:
131  $formatted_expiration_time = $dateTime->get(IL_CAL_FKT_DATE, 'H:i', $ilUser->getTimeZone());
132  break;
133  }
134 
135  $response = [
136  'extend_url' => './ilias.php?baseClass=ilDashboardGUI',
137  'txt' => str_replace(
138  "\\n",
139  '%0A',
140  sprintf(
141  $this->lng->txt('session_reminder_alert'),
142  ilDatePresentation::secondsToString($expiration_time - $this->clock->now()->getTimestamp()),
143  $formatted_expiration_time,
144  $this->clientIni->readVariable('client', 'name') . ' | ' . ilUtil::_getHttpPath()
145  )
146  ),
147  'remind' => true
148  ];
149 
150  return $this->toJsonResponse($response);
151  }
152 
157  private function toJsonResponse($data): ResponseInterface
158  {
159  return $this->http->response()
160  ->withHeader(ResponseHeader::CONTENT_TYPE, 'application/json')
161  ->withBody(Streams::ofString(json_encode($data, JSON_THROW_ON_ERROR)));
162  }
163 
164  private function isSessionAlreadyExpired(int $expirationTime): bool
165  {
166  return $expirationTime < $this->clock->now()->getTimestamp();
167  }
168 
169  private function isAuthenticatedUsrSession(?array $data): bool
170  {
171  return (
172  is_array($data) &&
173  isset($data['user_id']) &&
174  (int) $data['user_id'] > 0 &&
175  (int) $data['user_id'] !== ANONYMOUS_USER_ID
176  );
177  }
178 }
$res
Definition: ltiservices.php:66
static enableWebAccessWithoutSession(bool $enable_web_access_without_session)
const ANONYMOUS_USER_ID
Definition: constants.php:27
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
isSessionAlreadyExpired(int $expirationTime)
$response
Definition: xapitoken.php:93
__construct(GlobalHttpState $http, Refinery $refinery, ilLanguage $lng, ilDBInterface $db, ilIniFile $clientIni, ilLogger $logger, ClockInterface $utcClock,)
const IL_CAL_UNIX
static secondsToString(int $seconds, bool $force_with_seconds=false, ?ilLanguage $a_lng=null)
converts seconds to string: Long: 7 days 4 hour(s) ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
const IL_CAL_FKT_DATE
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
static _getHttpPath()