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\Database\DBA;
|
2019-12-15 23:28:01 +01:00
|
|
|
use Friendica\DI;
|
2019-09-24 00:13:20 +02:00
|
|
|
use Friendica\Model\Contact;
|
|
|
|
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
|
|
|
*/
|
2019-12-15 23:28:01 +01:00
|
|
|
class Session
|
2018-02-09 04:49:49 +01:00
|
|
|
{
|
|
|
|
public static $exists = false;
|
|
|
|
public static $expire = 180000;
|
|
|
|
|
|
|
|
public static function exists($name)
|
|
|
|
{
|
2019-12-15 23:28:01 +01:00
|
|
|
return DI::session()->exists($name);
|
2018-02-09 04:49:49 +01:00
|
|
|
}
|
|
|
|
|
2018-08-05 15:56:21 +02:00
|
|
|
public static function get($name, $defaults = null)
|
2018-02-09 04:49:49 +01:00
|
|
|
{
|
2019-12-15 23:28:01 +01:00
|
|
|
return DI::session()->get($name, $defaults);
|
2018-02-09 04:49:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function set($name, $value)
|
|
|
|
{
|
2019-12-15 23:28:01 +01:00
|
|
|
DI::session()->set($name, $value);
|
2018-02-09 04:49:49 +01:00
|
|
|
}
|
2019-05-13 06:55:26 +02:00
|
|
|
|
|
|
|
public static function setMultiple(array $values)
|
|
|
|
{
|
2019-12-15 23:28:01 +01:00
|
|
|
DI::session()->setMultiple($values);
|
2019-05-13 06:55:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function remove($name)
|
|
|
|
{
|
2019-12-15 23:28:01 +01:00
|
|
|
DI::session()->remove($name);
|
2019-05-13 06:55:26 +02:00
|
|
|
}
|
|
|
|
|
2019-10-06 17:21:54 +02:00
|
|
|
public static function clear()
|
|
|
|
{
|
2019-12-15 23:28:01 +01:00
|
|
|
DI::session()->clear();
|
2019-10-06 17:21:54 +02:00
|
|
|
}
|
|
|
|
|
2019-09-26 00:24:17 +02: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 11:36:41 +02:00
|
|
|
public static function getRemoteContactID($uid)
|
2019-09-26 00:24:17 +02:00
|
|
|
{
|
2019-12-15 23:28:01 +01:00
|
|
|
$session = DI::session();
|
2019-12-11 20:30:31 +01:00
|
|
|
|
|
|
|
if (empty($session->get('remote')[$uid])) {
|
2019-09-26 00:24:17 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-11 20:30:31 +01:00
|
|
|
return $session->get('remote')[$uid];
|
2019-09-26 00:24:17 +02: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-15 23:28:01 +01:00
|
|
|
$session = DI::session();
|
2019-12-11 20:30:31 +01:00
|
|
|
|
|
|
|
if (empty($session->get('remote'))) {
|
2019-09-26 00:24:17 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-11 20:30:31 +01:00
|
|
|
return array_search($cid, $session->get('remote'));
|
2019-09-26 00:24:17 +02:00
|
|
|
}
|
2019-09-26 06:47:42 +02: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-15 23:28:01 +01:00
|
|
|
$session = DI::session();
|
2019-09-26 06:47:42 +02:00
|
|
|
|
2019-12-11 20:30:31 +01: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 06:47:42 +02:00
|
|
|
while ($contact = DBA::fetch($remote_contacts)) {
|
|
|
|
if (($contact['uid'] == 0) || Contact::isBlockedByUser($contact['id'], $contact['uid'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-12-11 20:30:31 +01:00
|
|
|
$session->set('remote', [$contact['uid'] => $contact['id']]);
|
2019-09-26 06:47:42 +02:00
|
|
|
}
|
|
|
|
DBA::close($remote_contacts);
|
|
|
|
}
|
2019-09-28 20:09:11 +02: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-15 23:28:01 +01:00
|
|
|
$session = DI::session();
|
2019-12-03 22:29:37 +01:00
|
|
|
|
2019-12-11 20:30:31 +01:00
|
|
|
return $session->get('authenticated', false);
|
2019-12-03 22:29:37 +01:00
|
|
|
}
|
2018-02-09 04:49:49 +01:00
|
|
|
}
|