2018-02-08 22:49:49 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file src/Core/Session.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Core;
|
|
|
|
|
2019-12-08 16:45:34 -05:00
|
|
|
use Friendica\BaseObject;
|
2019-12-09 18:44:56 -05:00
|
|
|
use Friendica\Core\Session\ISession;
|
2019-05-13 00:55:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-09-23 18:13:20 -04:00
|
|
|
use Friendica\Model\Contact;
|
|
|
|
use Friendica\Util\Strings;
|
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
|
|
|
*/
|
2019-12-09 18:44:56 -05:00
|
|
|
class Session extends BaseObject
|
2018-02-08 22:49:49 -05:00
|
|
|
{
|
|
|
|
public static $exists = false;
|
|
|
|
public static $expire = 180000;
|
|
|
|
|
|
|
|
public static function exists($name)
|
|
|
|
{
|
2019-12-09 18:44:56 -05:00
|
|
|
return self::getClass(ISession::class)->exists($name);
|
2018-02-08 22:49:49 -05:00
|
|
|
}
|
|
|
|
|
2018-08-05 09:56:21 -04:00
|
|
|
public static function get($name, $defaults = null)
|
2018-02-08 22:49:49 -05:00
|
|
|
{
|
2019-12-09 18:44:56 -05:00
|
|
|
return self::getClass(ISession::class)->get($name, $defaults);
|
2018-02-08 22:49:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function set($name, $value)
|
|
|
|
{
|
2019-12-09 18:44:56 -05:00
|
|
|
self::getClass(ISession::class)->set($name, $value);
|
2018-02-08 22:49:49 -05:00
|
|
|
}
|
2019-05-13 00:55:26 -04:00
|
|
|
|
|
|
|
public static function setMultiple(array $values)
|
|
|
|
{
|
2019-12-09 18:44:56 -05:00
|
|
|
self::getClass(ISession::class)->setMultiple($values);
|
2019-05-13 00:55:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function remove($name)
|
|
|
|
{
|
2019-12-09 18:44:56 -05:00
|
|
|
self::getClass(ISession::class)->remove($name);
|
2019-05-13 00:55:26 -04:00
|
|
|
}
|
|
|
|
|
2019-10-06 11:21:54 -04:00
|
|
|
public static function clear()
|
|
|
|
{
|
2019-12-09 18:44:56 -05:00
|
|
|
self::getClass(ISession::class)->clear();
|
2019-10-06 11:21:54 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2019-12-11 14:30:31 -05:00
|
|
|
/** @var ISession $session */
|
|
|
|
$session = self::getClass(ISession::class);
|
|
|
|
|
|
|
|
if (empty($session->get('remote')[$uid])) {
|
2019-09-25 18:24:17 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-11 14:30:31 -05:00
|
|
|
return $session->get('remote')[$uid];
|
2019-09-25 18:24:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
2019-12-11 14:30:31 -05:00
|
|
|
/** @var ISession $session */
|
|
|
|
$session = self::getClass(ISession::class);
|
|
|
|
|
|
|
|
if (empty($session->get('remote'))) {
|
2019-09-25 18:24:17 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-11 14:30:31 -05:00
|
|
|
return array_search($cid, $session->get('remote'));
|
2019-09-25 18:24:17 -04:00
|
|
|
}
|
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()
|
|
|
|
{
|
2019-12-11 14:30:31 -05:00
|
|
|
/** @var ISession $session */
|
|
|
|
$session = self::getClass(ISession::class);
|
2019-09-26 00:47:42 -04:00
|
|
|
|
2019-12-11 14:30:31 -05:00
|
|
|
$session->set('remote', []);
|
|
|
|
|
|
|
|
$remote_contacts = DBA::select('contact', ['id', 'uid'], ['nurl' => Strings::normaliseLink($session->get('my_url')), 'rel' => [Contact::FOLLOWER, Contact::FRIEND], 'self' => false]);
|
2019-09-26 00:47:42 -04:00
|
|
|
while ($contact = DBA::fetch($remote_contacts)) {
|
|
|
|
if (($contact['uid'] == 0) || Contact::isBlockedByUser($contact['id'], $contact['uid'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-12-11 14:30:31 -05:00
|
|
|
$session->set('remote', [$contact['uid'] => $contact['id']]);
|
2019-09-26 00:47:42 -04:00
|
|
|
}
|
|
|
|
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()
|
|
|
|
{
|
2019-12-11 14:30:31 -05:00
|
|
|
/** @var ISession $session */
|
|
|
|
$session = self::getClass(ISession::class);
|
2019-12-03 16:29:37 -05:00
|
|
|
|
2019-12-11 14:30:31 -05:00
|
|
|
return $session->get('authenticated', false);
|
2019-12-03 16:29:37 -05:00
|
|
|
}
|
2018-02-08 22:49:49 -05:00
|
|
|
}
|