mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/15294] Minor code adjusting
PHPBB3-15294
This commit is contained in:
parent
56bff6380e
commit
7ea063100e
3 changed files with 51 additions and 51 deletions
|
@ -979,8 +979,7 @@ class session
|
|||
switch ($db->get_sql_layer())
|
||||
{
|
||||
case 'sqlite3':
|
||||
case 'oracle':
|
||||
if ($db->get_sql_layer() === 'sqlite3' && phpbb_version_compare($db->sql_server_info(true), '3.8.3', '>='))
|
||||
if (phpbb_version_compare($db->sql_server_info(true), '3.8.3', '>='))
|
||||
{
|
||||
// For SQLite versions 3.8.3+ which support Common Table Expressions (CTE)
|
||||
$sql = "WITH s3 (session_page, session_user_id, session_time) AS ($sql_select)
|
||||
|
@ -988,10 +987,12 @@ class session
|
|||
SET (user_lastpage, user_lastvisit) = (SELECT session_page, session_time FROM s3 WHERE session_user_id = user_id)
|
||||
WHERE EXISTS (SELECT session_user_id FROM s3 WHERE session_user_id = user_id)';
|
||||
$db->sql_query($sql);
|
||||
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
// For SQLite versions prior to 3.8.3 and Oracle
|
||||
|
||||
// No break, for SQLite versions prior to 3.8.3 and Oracle
|
||||
case 'oracle':
|
||||
$result = $db->sql_query($sql_select);
|
||||
while ($row = $db->sql_fetchrow($result))
|
||||
{
|
||||
|
@ -1001,7 +1002,6 @@ class session
|
|||
$db->sql_query($sql);
|
||||
}
|
||||
$db->sql_freeresult($result);
|
||||
}
|
||||
break;
|
||||
|
||||
case 'mysqli':
|
||||
|
@ -1037,7 +1037,7 @@ class session
|
|||
}
|
||||
|
||||
// only called from CRON; should be a safe workaround until the infrastructure gets going
|
||||
/* @var $captcha_factory \phpbb\captcha\factory */
|
||||
/* @var \phpbb\captcha\factory $captcha_factory */
|
||||
$captcha_factory = $phpbb_container->get('captcha.factory');
|
||||
$captcha_factory->garbage_collect($config['captcha_plugin']);
|
||||
|
||||
|
|
|
@ -47,32 +47,32 @@ class phpbb_session_garbage_collection_test extends phpbb_session_test_case
|
|||
$config['session_length'] = 3600;
|
||||
|
||||
$this->check_expired_sessions_recent(
|
||||
array(
|
||||
array(
|
||||
[
|
||||
[
|
||||
'session_user_id' => 4,
|
||||
'recent_time' => 1500000000,
|
||||
),
|
||||
array(
|
||||
],
|
||||
[
|
||||
'session_user_id' => 5,
|
||||
'recent_time' => 1500000000,
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
'Before test, should get recent expired sessions only.'
|
||||
);
|
||||
|
||||
$this->check_user_session_data(
|
||||
array(
|
||||
array(
|
||||
[
|
||||
[
|
||||
'username_clean' => 'bar',
|
||||
'user_lastvisit' => 1400000000,
|
||||
'user_lastpage' => 'oldpage_user_bar.php',
|
||||
),
|
||||
array(
|
||||
],
|
||||
[
|
||||
'username_clean' => 'foo',
|
||||
'user_lastvisit' => 1400000000,
|
||||
'user_lastpage' => 'oldpage_user_foo.php',
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
'Before test, users session data is not updated yet.'
|
||||
);
|
||||
|
||||
|
@ -80,23 +80,23 @@ class phpbb_session_garbage_collection_test extends phpbb_session_test_case
|
|||
$config['captcha_plugin'] = 'core.captcha.plugins.nogd';
|
||||
$this->session->session_gc();
|
||||
$this->check_expired_sessions_recent(
|
||||
array(),
|
||||
[],
|
||||
'After garbage collection, all expired sessions should be removed.'
|
||||
);
|
||||
|
||||
$this->check_user_session_data(
|
||||
array(
|
||||
array(
|
||||
[
|
||||
[
|
||||
'username_clean' => 'bar',
|
||||
'user_lastvisit' => '1500000000',
|
||||
'user_lastpage' => 'newpage_user_bar.php',
|
||||
),
|
||||
array(
|
||||
],
|
||||
[
|
||||
'username_clean' => 'foo',
|
||||
'user_lastvisit' => '1500000000',
|
||||
'user_lastpage' => 'newpage_user_foo.php',
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
'After garbage collection, users session data should be updated to the recent expired sessions data.'
|
||||
);
|
||||
}
|
||||
|
@ -104,28 +104,28 @@ class phpbb_session_garbage_collection_test extends phpbb_session_test_case
|
|||
public function test_cleanup_all()
|
||||
{
|
||||
$this->check_sessions_equals(
|
||||
array(
|
||||
array(
|
||||
[
|
||||
[
|
||||
'session_id' => 'anon_session00000000000000000000',
|
||||
'session_user_id' => 1,
|
||||
),
|
||||
array(
|
||||
],
|
||||
[
|
||||
'session_id' => 'bar_session000000000000000000000',
|
||||
'session_user_id' => 4,
|
||||
),
|
||||
array(
|
||||
],
|
||||
[
|
||||
'session_id' => 'bar_session000000000000000000002',
|
||||
'session_user_id' => 4,
|
||||
),
|
||||
array(
|
||||
],
|
||||
[
|
||||
'session_id' => 'foo_session000000000000000000000',
|
||||
'session_user_id' => 5,
|
||||
),
|
||||
array(
|
||||
],
|
||||
[
|
||||
'session_id' => 'foo_session000000000000000000002',
|
||||
'session_user_id' => 5,
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
'Before test, should have some sessions.'
|
||||
);
|
||||
// Set session length so it clears all
|
||||
|
@ -135,7 +135,7 @@ class phpbb_session_garbage_collection_test extends phpbb_session_test_case
|
|||
$config['captcha_plugin'] = 'core.captcha.plugins.nogd';
|
||||
$this->session->session_gc();
|
||||
$this->check_sessions_equals(
|
||||
array(),
|
||||
[],
|
||||
'After setting session time to 0, should remove all.'
|
||||
);
|
||||
}
|
||||
|
|
|
@ -61,7 +61,7 @@ abstract class phpbb_session_test_case extends phpbb_database_test_case
|
|||
{
|
||||
global $config;
|
||||
$time_now = time();
|
||||
$sql= 'SELECT session_user_id, MAX(session_time) AS recent_time
|
||||
$sql = 'SELECT session_user_id, MAX(session_time) AS recent_time
|
||||
FROM ' . SESSIONS_TABLE . '
|
||||
WHERE session_time < ' . ($time_now - (int) $config['session_length']) . '
|
||||
AND session_user_id <> ' . ANONYMOUS . '
|
||||
|
|
Loading…
Add table
Reference in a new issue