forked from kanboard/kanboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
58 changed files
with
405 additions
and
382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?php | ||
|
||
namespace Kanboard\Core\Session; | ||
|
||
use PicoDb\Database; | ||
use SessionHandlerInterface; | ||
|
||
/** | ||
* Class SessionHandler | ||
* | ||
* @package Kanboard\Core\Session | ||
*/ | ||
class SessionHandler implements SessionHandlerInterface | ||
{ | ||
const TABLE = 'sessions'; | ||
|
||
/** | ||
* @var Database | ||
*/ | ||
private $db; | ||
|
||
public function __construct(Database $db) | ||
{ | ||
$this->db = $db; | ||
} | ||
|
||
public function close() | ||
{ | ||
return true; | ||
} | ||
|
||
public function destroy($sessionID) | ||
{ | ||
return $this->db->table(self::TABLE)->eq('id', $sessionID)->remove(); | ||
} | ||
|
||
public function gc($maxlifetime) | ||
{ | ||
return $this->db->table(self::TABLE)->lt('expire_at', time())->remove(); | ||
} | ||
|
||
public function open($savePath, $name) | ||
{ | ||
return true; | ||
} | ||
|
||
public function read($sessionID) | ||
{ | ||
$result = $this->db->table(self::TABLE)->eq('id', $sessionID)->findOneColumn('data'); | ||
return $result ?: ''; | ||
} | ||
|
||
public function write($sessionID, $data) | ||
{ | ||
$lifetime = time() + (ini_get('session.gc_maxlifetime') ?: 1440); | ||
|
||
if ($this->db->table(self::TABLE)->eq('id', $sessionID)->exists()) { | ||
return $this->db->table(self::TABLE)->eq('id', $sessionID)->update(array( | ||
'expire_at' => $lifetime, | ||
'data' => $data, | ||
)); | ||
} | ||
|
||
return $this->db->table(self::TABLE)->insert(array( | ||
'id' => $sessionID, | ||
'expire_at' => $lifetime, | ||
'data' => $data, | ||
)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.