X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FSession.php;h=b15b53c4eef4ecc04e709a6f7b9b9f3d39dd6f09;hb=8126947b90cc3e547646df4f4d640cd0a9fc3393;hp=d0c8581d31e4a07560b261d77039c6684c4d9454;hpb=3c76826793feeb933dab7a07dab7cc7eb2efc451;p=friendica.git diff --git a/src/Core/Session.php b/src/Core/Session.php index d0c8581d31..b15b53c4ee 100644 --- a/src/Core/Session.php +++ b/src/Core/Session.php @@ -1,8 +1,24 @@ . + * */ + namespace Friendica\Core; use Friendica\Database\DBA; @@ -12,8 +28,6 @@ use Friendica\Util\Strings; /** * High-level Session service class - * - * @author Hypolite Petovan */ class Session { @@ -51,17 +65,17 @@ class Session } /** - * Returns contact ID for given user ID + * Return the user contact ID of a visitor for the given user ID they are visiting * * @param integer $uid User ID - * @return integer Contact ID of visitor for given user ID + * @return integer */ public static function getRemoteContactID($uid) { $session = DI::session(); if (empty($session->get('remote')[$uid])) { - return false; + return 0; } return $session->get('remote')[$uid]; @@ -97,7 +111,7 @@ class Session $remote_contacts = DBA::select('contact', ['id', 'uid'], ['nurl' => Strings::normaliseLink($session->get('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'])) { + if (($contact['uid'] == 0) || Contact\User::isBlocked($contact['id'], $contact['uid'])) { continue; }