2018-02-09 04:49:49 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 15:45:36 +01:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-02-09 04:49:49 +01:00
|
|
|
*/
|
2020-02-09 15:45:36 +01:00
|
|
|
|
2018-02-09 04:49:49 +01:00
|
|
|
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
|
|
|
|
*/
|
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-11-05 14:21:18 +01:00
|
|
|
return 0;
|
2019-09-26 00:24:17 +02:00
|
|
|
}
|
|
|
|
|
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)) {
|
2020-08-04 06:47:02 +02:00
|
|
|
if (($contact['uid'] == 0) || Contact\User::isBlocked($contact['id'], $contact['uid'])) {
|
2019-09-26 06:47:42 +02:00
|
|
|
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
|
|
|
}
|