19 declare(strict_types=1);
53 $this->clock = $utcClock;
56 public function handle(): ResponseInterface
59 $this->
http->wrapper()->post()->retrieve(
61 $this->
refinery->kindlyTo()->string()
65 $this->
logger->debug(
'Session reminder call for session id hash: ' . $sessionIdHash);
72 $res = $this->db->queryF(
73 'SELECT expires, user_id, data FROM usr_session WHERE MD5(session_id) = %s',
78 $num = $this->db->numRows(
$res);
81 $response[
'message'] =
'ILIAS could not determine the session data.';
86 $response[
'message'] =
'The determined session data is not unique.';
92 $response[
'message'] =
'ILIAS could not fetch the session data or the corresponding user is no more authenticated.';
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.';
103 $response[
'message'] =
'The session is already expired. The client should have received a remind command before.';
110 $response[
'message'] =
'ILIAS could not fetch the session data or the corresponding user is no more authenticated.';
115 $reminder_time = $expiration_time - ($session_reminder->getEffectiveLeadTime() * 60);
116 if ($reminder_time > $this->clock->now()->getTimestamp()) {
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);
124 switch ($ilUser->getTimeFormat()) {
126 $formatted_expiration_time = $dateTime->get(
IL_CAL_FKT_DATE,
'g:ia', $ilUser->getTimeZone());
131 $formatted_expiration_time = $dateTime->get(
IL_CAL_FKT_DATE,
'H:i', $ilUser->getTimeZone());
136 'extend_url' =>
'./ilias.php?baseClass=ilDashboardGUI',
137 'txt' => str_replace(
141 $this->
lng->txt(
'session_reminder_alert'),
143 $formatted_expiration_time,
159 return $this->
http->response()
160 ->withHeader(ResponseHeader::CONTENT_TYPE,
'application/json')
161 ->withBody(Streams::ofString(json_encode(
$data, JSON_THROW_ON_ERROR)));
166 return $expirationTime < $this->clock->now()->getTimestamp();
173 isset($data[
'user_id']) &&
174 (
int) $data[
'user_id'] > 0 &&
static enableWebAccessWithoutSession(bool $enable_web_access_without_session)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
isSessionAlreadyExpired(int $expirationTime)
__construct(GlobalHttpState $http, Refinery $refinery, ilLanguage $lng, ilDBInterface $db, ilIniFile $clientIni, ilLogger $logger, ClockInterface $utcClock,)
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.
isAuthenticatedUsrSession(?array $data)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id