]> git.mxchange.org Git - friendica.git/blobdiff - src/App.php
Restructure Lock to follow new paradigm
[friendica.git] / src / App.php
index 8190bcbaee0d992e24adcfb566fad00467d2d10d..cd217c34e7ec715212962b6ed530e759b43d5a71 100644 (file)
@@ -25,9 +25,10 @@ use Exception;
 use Friendica\App\Arguments;
 use Friendica\App\BaseURL;
 use Friendica\App\Module;
+use Friendica\Core\Config\Factory\ConfigFactory;
 use Friendica\Module\Maintenance;
 use Friendica\Security\Authentication;
-use Friendica\Core\Config\Cache;
+use Friendica\Core\Config\Cache\Cache;
 use Friendica\Core\Config\IConfig;
 use Friendica\Core\PConfig\IPConfig;
 use Friendica\Core\L10n;
@@ -38,7 +39,7 @@ use Friendica\Model\Contact;
 use Friendica\Model\Profile;
 use Friendica\Module\Special\HTTPException as ModuleHTTPException;
 use Friendica\Network\HTTPException;
-use Friendica\Util\ConfigFileLoader;
+use Friendica\Util\DateTimeFormat;
 use Friendica\Util\HTTPSignature;
 use Friendica\Util\Profiler;
 use Friendica\Util\Strings;
@@ -56,24 +57,20 @@ use Psr\Log\LoggerInterface;
  */
 class App
 {
-       private $profile_owner;
-       private $contact_id;
-
-       public $user;
-       public $data = [];
-       /** @deprecated 2019.09 - use App\Arguments->getArgv() or Arguments->get() */
-       public $argv;
-       /** @deprecated 2019.09 - use App\Arguments->getArgc() */
-       public $argc;
-       public $timezone;
-       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;
-       public $queue;
+       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;
+       private $queue         = [];
 
        /**
         * @var App\Mode The Mode of the Application
@@ -130,26 +127,162 @@ 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
+        *
+        * @param int $owner_id
+        * @return void
+        */
        public function setProfileOwner(int $owner_id)
        {
                $this->profile_owner = $owner_id;
        }
 
-       public function getProfileOwner()
+       /**
+        * Get the profile owner ID
+        *
+        * @return int
+        */
+       public function getProfileOwner():int
        {
                return $this->profile_owner;
        }
 
+       /**
+        * Set the contact ID
+        *
+        * @param int $contact_id
+        * @return void
+        */
        public function setContactId(int $contact_id)
        {
                $this->contact_id = $contact_id;
        }
 
-       public function getContactId()
+       /**
+        * Get the contact ID
+        *
+        * @return int
+        */
+       public function getContactId():int
        {
                return $this->contact_id;
        }
 
+       /**
+        * Set the timezone
+        *
+        * @param string $timezone A valid time zone identifier, see https://www.php.net/manual/en/timezones.php
+        * @return void
+        */
+       public function setTimeZone(string $timezone)
+       {
+               $this->timezone = (new \DateTimeZone($timezone))->getName();
+               DateTimeFormat::setLocalTimeZone($this->timezone);
+       }
+
+       /**
+        * Get the timezone
+        *
+        * @return int
+        */
+       public function getTimeZone():string
+       {
+               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
         *
@@ -196,9 +329,6 @@ class App
                $this->process  = $process;
                $this->pConfig  = $pConfig;
 
-               $this->argv         = $args->getArgv();
-               $this->argc         = $args->getArgc();
-
                $this->load();
        }
 
@@ -209,6 +339,9 @@ class App
        {
                set_time_limit(0);
 
+               // Ensure that all "strtotime" operations do run timezone independent
+               date_default_timezone_set('UTC');
+
                // This has to be quite large to deal with embedded private photos
                ini_set('pcre.backtrack_limit', 500000);
 
@@ -224,7 +357,7 @@ class App
                        $this->profiler->update($this->config);
 
                        Core\Hook::loadHooks();
-                       $loader = new ConfigFileLoader($this->getBasePath());
+                       $loader = (new ConfigFactory())->createConfigFileLoader($this->getBasePath(), $_SERVER);
                        Core\Hook::callAll('load_config', $loader);
                }
 
@@ -243,15 +376,13 @@ class App
        private function loadDefaultTimezone()
        {
                if ($this->config->get('system', 'default_timezone')) {
-                       $this->timezone = $this->config->get('system', 'default_timezone');
+                       $timezone = $this->config->get('system', 'default_timezone', 'UTC');
                } else {
                        global $default_timezone;
-                       $this->timezone = !empty($default_timezone) ? $default_timezone : 'UTC';
+                       $timezone = $default_timezone ?? '' ?: 'UTC';
                }
 
-               if ($this->timezone) {
-                       date_default_timezone_set($this->timezone);
-               }
+               $this->setTimeZone($timezone);
        }
 
        /**
@@ -499,7 +630,9 @@ class App
                                Model\Profile::openWebAuthInit($token);
                        }
 
-                       $auth->withSession($this);
+                       if (!$this->mode->isBackend()) {
+                               $auth->withSession($this);
+                       }
 
                        if (empty($_SESSION['authenticated'])) {
                                header('X-Account-Management-Status: none');
@@ -559,7 +692,7 @@ class App
                                $this->baseURL->redirect('search');
                        }
 
-                       // Initialize module that can set the current theme in the init() method, either directly or via App->profile_owner
+                       // Initialize module that can set the current theme in the init() method, either directly or via App->setProfileOwner
                        $page['page_title'] = $moduleName;
 
                        if (!$this->mode->isInstall() && !$this->mode->has(App\Mode::MAINTENANCEDISABLED)) {