]> git.mxchange.org Git - friendica.git/blobdiff - src/App/Mode.php
Fix tests & Router is now using Dependency Injection instead of DI Registry
[friendica.git] / src / App / Mode.php
index 166d47a1740f13e1d5185cd0a79e322ea6053060..6cef3456b10dc444bc5c8846ec0104abcd26b328 100644 (file)
@@ -2,7 +2,8 @@
 
 namespace Friendica\App;
 
-use Friendica\Core\Config\Cache\ConfigCache;
+use Detection\MobileDetect;
+use Friendica\Core\Config\Cache;
 use Friendica\Database\Database;
 use Friendica\Util\BasePath;
 
@@ -19,14 +20,38 @@ class Mode
        const MAINTENANCEDISABLED = 8;
 
        /***
-        * @var int the mode of this Application
+        * @var int The mode of this Application
         *
         */
        private $mode;
 
-       public function __construct(int $mode = 0)
+       /**
+        * @var bool True, if the call is a backend call
+        */
+       private $isBackend;
+
+       /**
+        * @var bool True, if the call is a ajax call
+        */
+       private $isAjax;
+
+       /**
+        * @var bool True, if the call is from a mobile device
+        */
+       private $isMobile;
+
+       /**
+        * @var bool True, if the call is from a tablet device
+        */
+       private $isTablet;
+
+       public function __construct(int $mode = 0, bool $isBackend = false, bool $isAjax = false, bool $isMobile = false, bool $isTablet = false)
        {
-               $this->mode = $mode;
+               $this->mode      = $mode;
+               $this->isBackend = $isBackend;
+               $this->isAjax    = $isAjax;
+               $this->isMobile  = $isMobile;
+               $this->isTablet  = $isTablet;
        }
 
        /**
@@ -40,7 +65,7 @@ class Mode
         *
         * @throws \Exception
         */
-       public function determine(BasePath $basepath, Database $database, ConfigCache $configCache)
+       public function determine(BasePath $basepath, Database $database, Cache $configCache)
        {
                $mode = 0;
 
@@ -75,7 +100,28 @@ class Mode
 
                $mode |= Mode::MAINTENANCEDISABLED;
 
-               return new Mode($mode);
+               return new Mode($mode, $this->isBackend, $this->isAjax, $this->isMobile, $this->isTablet);
+       }
+
+       /**
+        * Checks if the site is called via a backend process
+        *
+        * @param bool         $isBackend    True, if the call is from a backend script (daemon, worker, ...)
+        * @param Module       $module       The pre-loaded module (just name, not class!)
+        * @param array        $server       The $_SERVER variable
+        * @param MobileDetect $mobileDetect The mobile detection library
+        *
+        * @return Mode returns the determined mode
+        */
+       public function determineRunMode(bool $isBackend, Module $module, array $server, MobileDetect $mobileDetect)
+       {
+               $isBackend = $isBackend ||
+                            $module->isBackend();
+               $isMobile  = $mobileDetect->isMobile();
+               $isTablet  = $mobileDetect->isTablet();
+               $isAjax    = strtolower($server['HTTP_X_REQUESTED_WITH'] ?? '') == 'xmlhttprequest';
+
+               return new Mode($this->mode, $isBackend, $isAjax, $isMobile, $isTablet);
        }
 
        /**
@@ -114,4 +160,44 @@ class Mode
                       $this->has(Mode::DBCONFIGAVAILABLE) &&
                       $this->has(Mode::MAINTENANCEDISABLED);
        }
+
+       /**
+        * Returns true, if the call is from a backend node (f.e. from a worker)
+        *
+        * @return bool Is it a backend call
+        */
+       public function isBackend()
+       {
+               return $this->isBackend;
+       }
+
+       /**
+        * Check if request was an AJAX (xmlhttprequest) request.
+        *
+        * @return bool true if it was an AJAX request
+        */
+       public function isAjax()
+       {
+               return $this->isAjax;
+       }
+
+       /**
+        * Check if request was a mobile request.
+        *
+        * @return bool true if it was an mobile request
+        */
+       public function isMobile()
+       {
+               return $this->isMobile;
+       }
+
+       /**
+        * Check if request was a tablet request.
+        *
+        * @return bool true if it was an tablet request
+        */
+       public function isTablet()
+       {
+               return $this->isTablet;
+       }
 }