Files
grocy/services/SessionService.php

86 lines
1.9 KiB
PHP
Raw Normal View History

2018-04-10 20:30:11 +02:00
<?php
2018-04-11 19:49:35 +02:00
namespace Grocy\Services;
class SessionService extends BaseService
2018-04-10 20:30:11 +02:00
{
/**
* @return boolean
*/
2018-04-11 19:49:35 +02:00
public function IsValidSession($sessionKey)
2018-04-10 20:30:11 +02:00
{
if ($sessionKey === null || empty($sessionKey))
{
return false;
}
else
{
$sessionRow = $this->Database->sessions()->where('session_key = :1 AND expires > :2', $sessionKey, date('Y-m-d H:i:s', time()))->fetch();
if ($sessionRow !== null)
{
2019-09-17 17:54:09 +02:00
// This should not change the database file modification time as this is used
// to determine if REALLY something has changed
$dbModTime = $this->DatabaseService->GetDbChangedTime();
$sessionRow->update(array(
'last_used' => date('Y-m-d H:i:s', time())
));
$this->DatabaseService->SetDbChangedTime($dbModTime);
return true;
}
else
{
return false;
}
2018-04-10 20:30:11 +02:00
}
}
/**
* @return string
*/
public function CreateSession($userId, $stayLoggedInPermanently = false)
2018-04-10 20:30:11 +02:00
{
$newSessionKey = $this->GenerateSessionKey();
2018-04-14 11:10:38 +02:00
$expires = date('Y-m-d H:i:s', intval(time() + 2592000)); // Default is that sessions expire in 30 days
if ($stayLoggedInPermanently === true)
{
$expires = date('Y-m-d H:i:s', PHP_INT_SIZE == 4 ? PHP_INT_MAX : PHP_INT_MAX>>32); // Never
}
2018-04-14 11:10:38 +02:00
$sessionRow = $this->Database->sessions()->createRow(array(
'user_id' => $userId,
2018-04-14 11:10:38 +02:00
'session_key' => $newSessionKey,
'expires' => $expires
2018-04-14 11:10:38 +02:00
));
$sessionRow->save();
2018-04-10 20:30:11 +02:00
return $newSessionKey;
}
2018-04-11 19:49:35 +02:00
public function RemoveSession($sessionKey)
2018-04-10 20:30:11 +02:00
{
2018-04-14 11:10:38 +02:00
$this->Database->sessions()->where('session_key', $sessionKey)->delete();
2018-04-10 20:30:11 +02:00
}
public function GetUserBySessionKey($sessionKey)
{
$sessionRow = $this->Database->sessions()->where('session_key', $sessionKey)->fetch();
if ($sessionRow !== null)
{
return $this->Database->users($sessionRow->user_id);
}
return null;
}
2018-07-25 19:28:15 +02:00
public function GetDefaultUser()
{
return $this->Database->users(1);
}
private function GenerateSessionKey()
{
return RandomString(50);
}
2018-04-10 20:30:11 +02:00
}