2009-06-27 13:15:59 +01:00
|
|
|
<?php
|
2019-06-07 22:04:02 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2009-06-27 13:15:59 +01:00
|
|
|
/**
|
|
|
|
* Table Definition for session
|
|
|
|
*
|
2019-06-07 22:04:02 +01:00
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou
|
|
|
|
* @author Brion Vibber
|
|
|
|
* @author Mikael Nordfeldth
|
|
|
|
* @author Sorokin Alexei
|
|
|
|
* @author Diogo Cordeiro <diogo@fc.up.pt>
|
|
|
|
* @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-06-27 13:15:59 +01:00
|
|
|
*/
|
|
|
|
|
2019-06-07 22:04:02 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2009-06-27 13:15:59 +01:00
|
|
|
|
2019-05-11 21:20:09 +01:00
|
|
|
/**
|
2019-05-14 22:57:45 +01:00
|
|
|
* Superclass representing a saved session as it exists in the database.
|
2019-05-11 21:20:09 +01:00
|
|
|
*
|
2019-06-07 22:04:02 +01:00
|
|
|
* @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2019-05-11 21:20:09 +01:00
|
|
|
*/
|
2011-08-22 22:52:02 +01:00
|
|
|
class Session extends Managed_DataObject
|
2009-06-27 13:15:59 +01:00
|
|
|
{
|
|
|
|
###START_AUTOCODE
|
|
|
|
/* the code below is auto generated do not remove the above tag */
|
|
|
|
|
2019-04-27 00:28:05 +01:00
|
|
|
public $__table = 'session'; // table name
|
2009-06-27 13:15:59 +01:00
|
|
|
public $id; // varchar(32) primary_key not_null
|
|
|
|
public $session_data; // text()
|
2020-06-28 23:41:46 +01:00
|
|
|
public $created; // datetime()
|
|
|
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
2009-06-27 13:15:59 +01:00
|
|
|
|
|
|
|
/* the code above is auto generated do not remove the tag below */
|
|
|
|
###END_AUTOCODE
|
2009-06-27 13:48:22 +01:00
|
|
|
|
2019-05-11 21:20:09 +01:00
|
|
|
/**
|
|
|
|
* Returns an array describing how the session is stored in the database.
|
2019-06-07 22:04:02 +01:00
|
|
|
*
|
|
|
|
* @return array
|
2019-05-11 21:20:09 +01:00
|
|
|
*/
|
2011-08-22 22:52:02 +01:00
|
|
|
public static function schemaDef()
|
|
|
|
{
|
2019-04-27 00:28:05 +01:00
|
|
|
return [
|
|
|
|
'fields' => [
|
2019-05-14 22:57:45 +01:00
|
|
|
'id' => ['type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'session ID'],
|
2019-04-27 00:28:05 +01:00
|
|
|
'session_data' => ['type' => 'text', 'description' => 'session data'],
|
2020-06-28 23:41:46 +01:00
|
|
|
'created' => ['type' => 'datetime', 'description' => 'date this record was created'],
|
|
|
|
'modified' => ['type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'],
|
2019-04-27 00:28:05 +01:00
|
|
|
],
|
|
|
|
'primary key' => ['id'],
|
|
|
|
'indexes' => [
|
|
|
|
'session_modified_idx' => ['modified'],
|
|
|
|
],
|
|
|
|
];
|
2009-06-27 15:09:21 +01:00
|
|
|
}
|
2019-06-07 22:04:02 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* New code should NOT call this function.
|
|
|
|
* Dummy function for backwards compatibility with older plugins like Qvitter.
|
|
|
|
* Stuff to do before the request teardown.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function cleanup()
|
|
|
|
{
|
|
|
|
session_write_close();
|
|
|
|
}
|
2009-06-27 13:15:59 +01:00
|
|
|
}
|