2018-02-09 04:49:49 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file src/Core/Session.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Core;
|
|
|
|
|
2019-05-13 06:55:26 +02:00
|
|
|
use Friendica\App;
|
2018-03-01 05:48:09 +01:00
|
|
|
use Friendica\Core\Session\CacheSessionHandler;
|
2018-02-09 04:49:49 +01:00
|
|
|
use Friendica\Core\Session\DatabaseSessionHandler;
|
2019-05-13 06:55:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-09-24 00:13:20 +02:00
|
|
|
use Friendica\Model\Contact;
|
2019-05-13 06:55:26 +02:00
|
|
|
use Friendica\Model\User;
|
|
|
|
use Friendica\Util\DateTimeFormat;
|
2019-09-24 00:13:20 +02:00
|
|
|
use Friendica\Util\Strings;
|
2018-02-09 04:49:49 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* High-level Session service class
|
|
|
|
*
|
2018-09-16 01:28:38 +02:00
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-02-09 04:49:49 +01:00
|
|
|
*/
|
|
|
|
class Session
|
|
|
|
{
|
|
|
|
public static $exists = false;
|
|
|
|
public static $expire = 180000;
|
|
|
|
|
|
|
|
public static function init()
|
|
|
|
{
|
|
|
|
ini_set('session.gc_probability', 50);
|
|
|
|
ini_set('session.use_only_cookies', 1);
|
|
|
|
ini_set('session.cookie_httponly', 1);
|
|
|
|
|
2019-08-15 17:23:00 +02:00
|
|
|
if (Config::get('system', 'ssl_policy') == App\BaseURL::SSL_POLICY_FULL) {
|
2018-02-09 04:49:49 +01:00
|
|
|
ini_set('session.cookie_secure', 1);
|
|
|
|
}
|
|
|
|
|
2018-03-01 05:48:09 +01:00
|
|
|
$session_handler = Config::get('system', 'session_handler', 'database');
|
|
|
|
if ($session_handler != 'native') {
|
|
|
|
if ($session_handler == 'cache' && Config::get('system', 'cache_driver', 'database') != 'database') {
|
|
|
|
$SessionHandler = new CacheSessionHandler();
|
2018-02-09 04:49:49 +01:00
|
|
|
} else {
|
|
|
|
$SessionHandler = new DatabaseSessionHandler();
|
|
|
|
}
|
|
|
|
|
|
|
|
session_set_save_handler($SessionHandler);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function exists($name)
|
|
|
|
{
|
|
|
|
return isset($_SESSION[$name]);
|
|
|
|
}
|
|
|
|
|
2018-08-05 15:56:21 +02:00
|
|
|
/**
|
|
|
|
* Retrieves a key from the session super global or the defaults if the key is missing or the value is falsy.
|
|
|
|
*
|
|
|
|
* Handle the case where session_start() hasn't been called and the super global isn't available.
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param mixed $defaults
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function get($name, $defaults = null)
|
2018-02-09 04:49:49 +01:00
|
|
|
{
|
2019-05-26 22:15:38 +02:00
|
|
|
return $_SESSION[$name] ?? $defaults;
|
2018-02-09 04:49:49 +01:00
|
|
|
}
|
|
|
|
|
2019-05-13 06:55:26 +02:00
|
|
|
/**
|
|
|
|
* Sets a single session variable.
|
|
|
|
* Overrides value of existing key.
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param mixed $value
|
|
|
|
*/
|
2018-02-09 04:49:49 +01:00
|
|
|
public static function set($name, $value)
|
|
|
|
{
|
|
|
|
$_SESSION[$name] = $value;
|
|
|
|
}
|
2019-05-13 06:55:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets multiple session variables.
|
|
|
|
* Overrides values for existing keys.
|
|
|
|
*
|
|
|
|
* @param array $values
|
|
|
|
*/
|
|
|
|
public static function setMultiple(array $values)
|
|
|
|
{
|
|
|
|
$_SESSION = $values + $_SESSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes a session variable.
|
|
|
|
* Ignores missing keys.
|
|
|
|
*
|
|
|
|
* @param $name
|
|
|
|
*/
|
|
|
|
public static function remove($name)
|
|
|
|
{
|
|
|
|
unset($_SESSION[$name]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Sets the provided user's authenticated session
|
|
|
|
*
|
|
|
|
* @param App $a
|
|
|
|
* @param array $user_record
|
|
|
|
* @param bool $login_initial
|
|
|
|
* @param bool $interactive
|
|
|
|
* @param bool $login_refresh
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
|
|
|
public static function setAuthenticatedForUser(App $a, array $user_record, $login_initial = false, $interactive = false, $login_refresh = false)
|
|
|
|
{
|
|
|
|
self::setMultiple([
|
|
|
|
'uid' => $user_record['uid'],
|
|
|
|
'theme' => $user_record['theme'],
|
|
|
|
'mobile-theme' => PConfig::get($user_record['uid'], 'system', 'mobile_theme'),
|
|
|
|
'authenticated' => 1,
|
|
|
|
'page_flags' => $user_record['page-flags'],
|
|
|
|
'my_url' => $a->getBaseURL() . '/profile/' . $user_record['nickname'],
|
|
|
|
'my_address' => $user_record['nickname'] . '@' . substr($a->getBaseURL(), strpos($a->getBaseURL(), '://') + 3),
|
|
|
|
'addr' => defaults($_SERVER, 'REMOTE_ADDR', '0.0.0.0'),
|
2019-09-25 09:02:07 +02:00
|
|
|
'remote' => []
|
2019-05-13 06:55:26 +02:00
|
|
|
]);
|
|
|
|
|
2019-09-25 09:02:07 +02:00
|
|
|
$remote_contacts = DBA::select('contact', ['id', 'uid'], ['nurl' => Strings::normaliseLink($_SESSION['my_url']), 'rel' => [Contact::FOLLOWER, Contact::FRIEND], 'self' => false]);
|
2019-09-24 00:13:20 +02:00
|
|
|
while ($contact = DBA::fetch($remote_contacts)) {
|
|
|
|
if (($contact['uid'] == 0) || Contact::isBlockedByUser($contact['id'], $contact['uid'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-09-25 07:57:32 +02:00
|
|
|
/// @todo Change it to this format to save space
|
|
|
|
// $_SESSION['remote'][$contact['uid']] = $contact['id'];
|
|
|
|
$_SESSION['remote'][$contact['uid']] = ['cid' => $contact['id'], 'uid' => $contact['uid']];
|
2019-09-24 00:13:20 +02:00
|
|
|
}
|
|
|
|
DBA::close($remote_contacts);
|
|
|
|
|
2019-05-13 06:55:26 +02:00
|
|
|
$member_since = strtotime($user_record['register_date']);
|
|
|
|
self::set('new_member', time() < ($member_since + ( 60 * 60 * 24 * 14)));
|
|
|
|
|
|
|
|
if (strlen($user_record['timezone'])) {
|
|
|
|
date_default_timezone_set($user_record['timezone']);
|
|
|
|
$a->timezone = $user_record['timezone'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$masterUid = $user_record['uid'];
|
|
|
|
|
2019-05-13 19:33:20 +02:00
|
|
|
if (self::get('submanage')) {
|
|
|
|
$user = DBA::selectFirst('user', ['uid'], ['uid' => self::get('submanage')]);
|
2019-05-13 06:55:26 +02:00
|
|
|
if (DBA::isResult($user)) {
|
|
|
|
$masterUid = $user['uid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$a->identities = User::identities($masterUid);
|
|
|
|
|
|
|
|
if ($login_initial) {
|
|
|
|
$a->getLogger()->info('auth_identities: ' . print_r($a->identities, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($login_refresh) {
|
|
|
|
$a->getLogger()->info('auth_identities refresh: ' . print_r($a->identities, true));
|
|
|
|
}
|
|
|
|
|
2019-05-13 20:07:02 +02:00
|
|
|
$contact = DBA::selectFirst('contact', [], ['uid' => $user_record['uid'], 'self' => true]);
|
2019-05-13 06:55:26 +02:00
|
|
|
if (DBA::isResult($contact)) {
|
|
|
|
$a->contact = $contact;
|
|
|
|
$a->cid = $contact['id'];
|
|
|
|
self::set('cid', $a->cid);
|
|
|
|
}
|
|
|
|
|
|
|
|
header('X-Account-Management-Status: active; name="' . $user_record['username'] . '"; id="' . $user_record['nickname'] . '"');
|
|
|
|
|
|
|
|
if ($login_initial || $login_refresh) {
|
2019-05-13 19:33:20 +02:00
|
|
|
DBA::update('user', ['login_date' => DateTimeFormat::utcNow()], ['uid' => $user_record['uid']]);
|
2019-05-13 06:55:26 +02:00
|
|
|
|
|
|
|
// Set the login date for all identities of the user
|
|
|
|
DBA::update('user', ['login_date' => DateTimeFormat::utcNow()],
|
|
|
|
['parent-uid' => $masterUid, 'account_removed' => false]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($login_initial) {
|
|
|
|
/*
|
|
|
|
* If the user specified to remember the authentication, then set a cookie
|
|
|
|
* that expires after one week (the default is when the browser is closed).
|
|
|
|
* The cookie will be renewed automatically.
|
|
|
|
* The week ensures that sessions will expire after some inactivity.
|
|
|
|
*/
|
|
|
|
;
|
|
|
|
if (self::get('remember')) {
|
|
|
|
$a->getLogger()->info('Injecting cookie for remembered user ' . $user_record['nickname']);
|
|
|
|
Authentication::setCookie(604800, $user_record);
|
|
|
|
self::remove('remember');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-13 07:36:09 +02:00
|
|
|
Authentication::twoFactorCheck($user_record['uid'], $a);
|
|
|
|
|
2019-05-13 06:55:26 +02:00
|
|
|
if ($interactive) {
|
|
|
|
if ($user_record['login_date'] <= DBA::NULL_DATETIME) {
|
|
|
|
info(L10n::t('Welcome %s', $user_record['username']));
|
|
|
|
info(L10n::t('Please upload a profile photo.'));
|
|
|
|
$a->internalRedirect('profile_photo/new');
|
|
|
|
} else {
|
|
|
|
info(L10n::t("Welcome back %s", $user_record['username']));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$a->user = $user_record;
|
|
|
|
|
|
|
|
if ($login_initial) {
|
|
|
|
Hook::callAll('logged_in', $a->user);
|
|
|
|
|
|
|
|
if ($a->module !== 'home' && self::exists('return_path')) {
|
|
|
|
$a->internalRedirect(self::get('return_path'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-09 04:49:49 +01:00
|
|
|
}
|