2018-02-08 22:49:49 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file src/Core/Session.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Core;
|
|
|
|
|
2019-05-13 00:55:26 -04:00
|
|
|
use Friendica\App;
|
2019-12-08 16:45:34 -05:00
|
|
|
use Friendica\BaseObject;
|
2019-12-09 17:09:18 -05:00
|
|
|
use Friendica\Core\Cache\ICache;
|
2018-02-28 23:48:09 -05:00
|
|
|
use Friendica\Core\Session\CacheSessionHandler;
|
2018-02-08 22:49:49 -05:00
|
|
|
use Friendica\Core\Session\DatabaseSessionHandler;
|
2019-12-09 17:09:18 -05:00
|
|
|
use Friendica\Database\Database;
|
2019-05-13 00:55:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-09-23 18:13:20 -04:00
|
|
|
use Friendica\Model\Contact;
|
2019-12-08 16:45:34 -05:00
|
|
|
use Friendica\Model\User;
|
2019-09-23 18:13:20 -04:00
|
|
|
use Friendica\Util\Strings;
|
2019-12-09 17:09:18 -05:00
|
|
|
use Psr\Log\LoggerInterface;
|
2018-02-08 22:49:49 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* High-level Session service class
|
|
|
|
*
|
2018-09-15 19:28:38 -04:00
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-02-08 22:49:49 -05: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 11:23:00 -04:00
|
|
|
if (Config::get('system', 'ssl_policy') == App\BaseURL::SSL_POLICY_FULL) {
|
2018-02-08 22:49:49 -05:00
|
|
|
ini_set('session.cookie_secure', 1);
|
|
|
|
}
|
|
|
|
|
2018-02-28 23:48:09 -05:00
|
|
|
$session_handler = Config::get('system', 'session_handler', 'database');
|
|
|
|
if ($session_handler != 'native') {
|
|
|
|
if ($session_handler == 'cache' && Config::get('system', 'cache_driver', 'database') != 'database') {
|
2019-12-09 17:09:18 -05:00
|
|
|
$SessionHandler = new CacheSessionHandler(
|
|
|
|
BaseObject::getClass(ICache::class),
|
|
|
|
BaseObject::getClass(LoggerInterface::class),
|
|
|
|
$_SERVER
|
|
|
|
);
|
2018-02-08 22:49:49 -05:00
|
|
|
} else {
|
2019-12-09 17:09:18 -05:00
|
|
|
$SessionHandler = new DatabaseSessionHandler(
|
|
|
|
BaseObject::getClass(Database::class),
|
|
|
|
BaseObject::getClass(LoggerInterface::class),
|
|
|
|
$_SERVER
|
|
|
|
);
|
2018-02-08 22:49:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
session_set_save_handler($SessionHandler);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function exists($name)
|
|
|
|
{
|
|
|
|
return isset($_SESSION[$name]);
|
|
|
|
}
|
|
|
|
|
2018-08-05 09:56:21 -04:00
|
|
|
/**
|
|
|
|
* Retrieves a key from the session super global or the defaults if the key is missing or the value is falsy.
|
2019-09-28 14:09:11 -04:00
|
|
|
*
|
2018-08-05 09:56:21 -04:00
|
|
|
* 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-08 22:49:49 -05:00
|
|
|
{
|
2019-05-26 16:15:38 -04:00
|
|
|
return $_SESSION[$name] ?? $defaults;
|
2018-02-08 22:49:49 -05:00
|
|
|
}
|
|
|
|
|
2019-05-13 00:55:26 -04:00
|
|
|
/**
|
|
|
|
* Sets a single session variable.
|
|
|
|
* Overrides value of existing key.
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param mixed $value
|
|
|
|
*/
|
2018-02-08 22:49:49 -05:00
|
|
|
public static function set($name, $value)
|
|
|
|
{
|
|
|
|
$_SESSION[$name] = $value;
|
|
|
|
}
|
2019-05-13 00:55:26 -04: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]);
|
|
|
|
}
|
|
|
|
|
2019-10-06 11:21:54 -04:00
|
|
|
/**
|
|
|
|
* Clears the current session array
|
|
|
|
*/
|
|
|
|
public static function clear()
|
|
|
|
{
|
2019-12-03 16:29:37 -05:00
|
|
|
session_unset();
|
|
|
|
session_start();
|
2019-10-06 11:21:54 -04:00
|
|
|
$_SESSION = [];
|
|
|
|
}
|
|
|
|
|
2019-09-25 18:24:17 -04:00
|
|
|
/**
|
|
|
|
* Returns contact ID for given user ID
|
|
|
|
*
|
|
|
|
* @param integer $uid User ID
|
|
|
|
* @return integer Contact ID of visitor for given user ID
|
|
|
|
*/
|
2019-09-28 05:36:41 -04:00
|
|
|
public static function getRemoteContactID($uid)
|
2019-09-25 18:24:17 -04:00
|
|
|
{
|
|
|
|
if (empty($_SESSION['remote'][$uid])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $_SESSION['remote'][$uid];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns User ID for given contact ID of the visitor
|
|
|
|
*
|
|
|
|
* @param integer $cid Contact ID
|
|
|
|
* @return integer User ID for given contact ID of the visitor
|
|
|
|
*/
|
|
|
|
public static function getUserIDForVisitorContactID($cid)
|
|
|
|
{
|
|
|
|
if (empty($_SESSION['remote'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return array_search($cid, $_SESSION['remote']);
|
|
|
|
}
|
2019-09-26 00:47:42 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the session variable that contains the contact IDs for the visitor's contact URL
|
|
|
|
*
|
|
|
|
* @param string $url Contact URL
|
|
|
|
*/
|
|
|
|
public static function setVisitorsContacts()
|
|
|
|
{
|
|
|
|
$_SESSION['remote'] = [];
|
|
|
|
|
|
|
|
$remote_contacts = DBA::select('contact', ['id', 'uid'], ['nurl' => Strings::normaliseLink($_SESSION['my_url']), 'rel' => [Contact::FOLLOWER, Contact::FRIEND], 'self' => false]);
|
|
|
|
while ($contact = DBA::fetch($remote_contacts)) {
|
|
|
|
if (($contact['uid'] == 0) || Contact::isBlockedByUser($contact['id'], $contact['uid'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$_SESSION['remote'][$contact['uid']] = $contact['id'];
|
|
|
|
}
|
|
|
|
DBA::close($remote_contacts);
|
|
|
|
}
|
2019-09-28 14:09:11 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns if the current visitor is authenticated
|
|
|
|
*
|
|
|
|
* @return boolean "true" when visitor is either a local or remote user
|
|
|
|
*/
|
|
|
|
public static function isAuthenticated()
|
|
|
|
{
|
|
|
|
if (empty($_SESSION['authenticated'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $_SESSION['authenticated'];
|
|
|
|
}
|
2019-12-03 16:29:37 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Kills the "Friendica" cookie and all session data
|
|
|
|
*/
|
|
|
|
public static function delete()
|
|
|
|
{
|
2019-12-08 16:45:34 -05:00
|
|
|
/** @var User\Cookie $cookie */
|
|
|
|
$cookie = BaseObject::getClass(User\Cookie::class);
|
|
|
|
$cookie->clear();
|
|
|
|
$_SESSION = [];
|
2019-12-03 16:29:37 -05:00
|
|
|
session_unset();
|
|
|
|
session_destroy();
|
|
|
|
}
|
2018-02-08 22:49:49 -05:00
|
|
|
}
|