]> git.mxchange.org Git - friendica.git/blobdiff - src/App.php
Use the existing VAPID key generation
[friendica.git] / src / App.php
index 4564bb0980848038d07269c1acb6c5c72c1aa635..6e9f7c3184389e9055f5369b4921544c2d947b76 100644 (file)
@@ -56,16 +56,16 @@ use Psr\Log\LoggerInterface;
  */
 class App
 {
-       public $user;
-       public $data = [];
-       public $theme_info = [];
        // Allow themes to control internal parameters
        // by changing App values in theme.php
-
-       public $videowidth              = 425;
-       public $videoheight             = 350;
-       public $theme_events_in_profile = true;
-
+       private $theme_info = [
+               'videowidth'        => 425,
+               'videoheight'       => 350,
+               'events_in_profile' => true
+       ];
+
+       private $user_id       = 0;
+       private $nickname      = '';
        private $timezone      = '';
        private $profile_owner = 0;
        private $contact_id    = 0;
@@ -126,6 +126,51 @@ class App
         */
        private $pConfig;
 
+       /**
+        * Set the user ID
+        *
+        * @param int $user_id
+        * @return void
+        */
+       public function setLoggedInUserId(int $user_id)
+       {
+               $this->user_id = $user_id;
+       }
+
+       /**
+        * Set the nickname
+        *
+        * @param int $user_id
+        * @return void
+        */
+       public function setLoggedInUserNickname(string $nickname)
+       {
+               $this->nickname = $nickname;
+       }
+
+       public function isLoggedIn()
+       {
+               return local_user() && $this->user_id && ($this->user_id == local_user());
+       }
+
+       /**
+        * Fetch the user id
+        * @return int 
+        */
+       public function getLoggedInUserId()
+       {
+               return $this->user_id;
+       }
+
+       /**
+        * Fetch the user nick name
+        * @return string
+        */
+       public function getLoggedInUserNickname()
+       {
+               return $this->nickname;
+       }
+
        /**
         * Set the profile owner ID
         *
@@ -189,21 +234,53 @@ class App
                return $this->timezone;
        }
 
+       /**
+        * Set workerqueue information
+        *
+        * @param array $queue 
+        * @return void 
+        */
        public function setQueue(array $queue)
        {
                $this->queue = $queue;
        }
 
+       /**
+        * Fetch workerqueue information
+        *
+        * @return array 
+        */
        public function getQueue()
        {
                return $this->queue ?? [];
        }
 
+       /**
+        * Fetch a specific workerqueue field
+        *
+        * @param string $index 
+        * @return mixed 
+        */
        public function getQueueValue(string $index)
        {
                return $this->queue[$index] ?? null;
        }
 
+       public function setThemeInfoValue(string $index, $value)
+       {
+               $this->theme_info[$index] = $value;
+       }
+
+       public function getThemeInfo()
+       {
+               return $this->theme_info;
+       }
+
+       public function getThemeInfoValue(string $index, $default = null)
+       {
+               return $this->theme_info[$index] ?? $default;
+       }
+
        /**
         * Returns the current config cache of this node
         *