]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Session.php
Normalize the return value type of Session::getRemoteContactID
[friendica.git] / src / Core / Session.php
index b245c675b0f0981f7d0a759e2fbb2cb5ac4065de..0af4d344b11337c019bc27ea3bdba480aa09ab86 100644 (file)
  */
 namespace Friendica\Core;
 
-use Friendica\Core\Session\CacheSessionHandler;
-use Friendica\Core\Session\DatabaseSessionHandler;
+use Friendica\Database\DBA;
+use Friendica\DI;
+use Friendica\Model\Contact;
+use Friendica\Util\Strings;
 
 /**
  * High-level Session service class
  *
- * @author Hypolite Petovan <mrpetovan@gmail.com>
+ * @author Hypolite Petovan <hypolite@mrpetovan.com>
  */
 class Session
 {
        public static $exists = false;
        public static $expire = 180000;
 
-       public static function init()
+       public static function exists($name)
        {
-               ini_set('session.gc_probability', 50);
-               ini_set('session.use_only_cookies', 1);
-               ini_set('session.cookie_httponly', 1);
+               return DI::session()->exists($name);
+       }
 
-               if (Config::get('system', 'ssl_policy') == SSL_POLICY_FULL) {
-                       ini_set('session.cookie_secure', 1);
-               }
+       public static function get($name, $defaults = null)
+       {
+               return DI::session()->get($name, $defaults);
+       }
 
-               $session_handler = Config::get('system', 'session_handler', 'database');
-               if ($session_handler != 'native') {
-                       if ($session_handler == 'cache' && Config::get('system', 'cache_driver', 'database') != 'database') {
-                               $SessionHandler = new CacheSessionHandler();
-                       } else {
-                               $SessionHandler = new DatabaseSessionHandler();
-                       }
+       public static function set($name, $value)
+       {
+               DI::session()->set($name, $value);
+       }
+
+       public static function setMultiple(array $values)
+       {
+               DI::session()->setMultiple($values);
+       }
+
+       public static function remove($name)
+       {
+               DI::session()->remove($name);
+       }
+
+       public static function clear()
+       {
+               DI::session()->clear();
+       }
+
+       /**
+        * Returns contact ID for given user ID
+        *
+        * @param integer $uid User ID
+        * @return integer Contact ID of visitor for given user ID
+        */
+       public static function getRemoteContactID($uid)
+       {
+               $session = DI::session();
 
-                       session_set_save_handler($SessionHandler);
+               if (empty($session->get('remote')[$uid])) {
+                       return 0;
                }
+
+               return $session->get('remote')[$uid];
        }
 
-       public static function exists($name)
+       /**
+        * 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)
        {
-               return isset($_SESSION[$name]);
+               $session = DI::session();
+
+               if (empty($session->get('remote'))) {
+                       return false;
+               }
+
+               return array_search($cid, $session->get('remote'));
        }
 
-       public static function get($name)
+       /**
+        * Set the session variable that contains the contact IDs for the visitor's contact URL
+        *
+        * @param string $url Contact URL
+        */
+       public static function setVisitorsContacts()
        {
-               return defaults($_SESSION, $name, null);
+               $session = DI::session();
+
+               $session->set('remote', []);
+
+               $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'])) {
+                               continue;
+                       }
+
+                       $session->set('remote', [$contact['uid'] => $contact['id']]);
+               }
+               DBA::close($remote_contacts);
        }
 
-       public static function set($name, $value)
+       /**
+        * Returns if the current visitor is authenticated
+        *
+        * @return boolean "true" when visitor is either a local or remote user
+        */
+       public static function isAuthenticated()
        {
-               $_SESSION[$name] = $value;
+               $session = DI::session();
+
+               return $session->get('authenticated', false);
        }
 }