2018-10-05 20:36:09 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\App;
|
|
|
|
|
2019-08-16 07:46:38 +00:00
|
|
|
use Detection\MobileDetect;
|
2019-07-20 23:22:10 +00:00
|
|
|
use Friendica\Core\Config\Cache\ConfigCache;
|
|
|
|
use Friendica\Database\Database;
|
|
|
|
use Friendica\Util\BasePath;
|
2018-10-05 20:36:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Mode of the current Friendica Node
|
|
|
|
*
|
|
|
|
* @package Friendica\App
|
|
|
|
*/
|
|
|
|
class Mode
|
|
|
|
{
|
2019-07-21 12:40:50 +00:00
|
|
|
const LOCALCONFIGPRESENT = 1;
|
|
|
|
const DBAVAILABLE = 2;
|
|
|
|
const DBCONFIGAVAILABLE = 4;
|
2018-10-05 20:36:09 +00:00
|
|
|
const MAINTENANCEDISABLED = 8;
|
|
|
|
|
|
|
|
/***
|
2019-08-15 13:51:15 +00:00
|
|
|
* @var int The mode of this Application
|
2018-10-05 20:36:09 +00:00
|
|
|
*
|
|
|
|
*/
|
2018-10-06 14:27:20 +00:00
|
|
|
private $mode;
|
|
|
|
|
2019-08-15 13:51:15 +00:00
|
|
|
/**
|
|
|
|
* @var bool True, if the call is a backend call
|
|
|
|
*/
|
|
|
|
private $isBackend;
|
|
|
|
|
2019-08-16 07:46:38 +00:00
|
|
|
/**
|
|
|
|
* @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)
|
2018-10-06 14:27:20 +00:00
|
|
|
{
|
2019-08-15 13:51:15 +00:00
|
|
|
$this->mode = $mode;
|
|
|
|
$this->isBackend = $isBackend;
|
2019-08-16 07:46:38 +00:00
|
|
|
$this->isAjax = $isAjax;
|
|
|
|
$this->isMobile = $isMobile;
|
|
|
|
$this->isTablet = $isTablet;
|
2018-10-06 14:27:20 +00:00
|
|
|
}
|
2018-10-05 20:36:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the App mode
|
|
|
|
*
|
|
|
|
* - App::MODE_INSTALL : Either the database connection can't be established or the config table doesn't exist
|
|
|
|
* - App::MODE_MAINTENANCE: The maintenance mode has been set
|
|
|
|
* - App::MODE_NORMAL : Normal run with all features enabled
|
|
|
|
*
|
2019-08-12 16:13:58 +00:00
|
|
|
* @return Mode returns the determined mode
|
2019-07-20 23:22:10 +00:00
|
|
|
*
|
2019-07-21 12:40:50 +00:00
|
|
|
* @throws \Exception
|
2018-10-05 20:36:09 +00:00
|
|
|
*/
|
2019-08-12 16:13:58 +00:00
|
|
|
public function determine(BasePath $basepath, Database $database, ConfigCache $configCache)
|
2018-10-05 20:36:09 +00:00
|
|
|
{
|
2019-08-12 16:13:58 +00:00
|
|
|
$mode = 0;
|
2018-10-06 14:27:20 +00:00
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
$basepathName = $basepath->getPath();
|
2018-10-05 20:36:09 +00:00
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
if (!file_exists($basepathName . '/config/local.config.php')
|
|
|
|
&& !file_exists($basepathName . '/config/local.ini.php')
|
|
|
|
&& !file_exists($basepathName . '/.htconfig.php')) {
|
|
|
|
return new Mode($mode);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
$mode |= Mode::LOCALCONFIGPRESENT;
|
2018-10-05 20:36:09 +00:00
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
if (!$database->connected()) {
|
|
|
|
return new Mode($mode);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
$mode |= Mode::DBAVAILABLE;
|
2018-10-05 20:36:09 +00:00
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
if ($database->fetchFirst("SHOW TABLES LIKE 'config'") === false) {
|
|
|
|
return new Mode($mode);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
$mode |= Mode::DBCONFIGAVAILABLE;
|
2018-10-05 20:36:09 +00:00
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
if (!empty($configCache->get('system', 'maintenance')) ||
|
2019-07-21 12:40:50 +00:00
|
|
|
// Don't use Config or Configuration here because we're possibly BEFORE initializing the Configuration,
|
|
|
|
// so this could lead to a dependency circle
|
2019-08-12 16:13:58 +00:00
|
|
|
!empty($database->selectFirst('config', ['v'], ['cat' => 'system', 'k' => 'maintenance'])['v'])) {
|
|
|
|
return new Mode($mode);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
$mode |= Mode::MAINTENANCEDISABLED;
|
2019-07-20 23:22:10 +00:00
|
|
|
|
2019-08-16 07:46:38 +00:00
|
|
|
return new Mode($mode, $this->isBackend, $this->isAjax, $this->isMobile, $this->isTablet);
|
2019-08-15 13:51:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the site is called via a backend process
|
|
|
|
*
|
2019-08-16 07:46:38 +00:00
|
|
|
* @param Module $module The pre-loaded module (just name, not class!)
|
|
|
|
* @param array $server The $_SERVER variable
|
|
|
|
* @param MobileDetect $mobileDetect The mobile detection library
|
2019-08-15 13:51:15 +00:00
|
|
|
*
|
|
|
|
* @return Mode returns the determined mode
|
|
|
|
*/
|
2019-08-16 07:46:38 +00:00
|
|
|
public function determineRunMode(Module $module, array $server, MobileDetect $mobileDetect)
|
2019-08-15 13:51:15 +00:00
|
|
|
{
|
|
|
|
$isBackend = basename(($server['PHP_SELF'] ?? ''), '.php') !== 'index' ||
|
|
|
|
$module->isBackend();
|
2019-08-16 07:46:38 +00:00
|
|
|
$isMobile = $mobileDetect->isMobile();
|
|
|
|
$isTablet = $mobileDetect->isTablet();
|
|
|
|
$isAjax = strtolower($server['HTTP_X_REQUESTED_WITH'] ?? '') == 'xmlhttprequest';
|
2019-08-15 13:51:15 +00:00
|
|
|
|
2019-08-16 07:46:38 +00:00
|
|
|
return new Mode($this->mode, $isBackend, $isAjax, $isMobile, $isTablet);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks, if the Friendica Node has the given mode
|
|
|
|
*
|
|
|
|
* @param int $mode A mode to test
|
|
|
|
*
|
|
|
|
* @return bool returns true, if the mode is set
|
|
|
|
*/
|
2018-10-06 14:27:20 +00:00
|
|
|
public function has($mode)
|
2018-10-05 20:36:09 +00:00
|
|
|
{
|
2018-10-06 14:27:20 +00:00
|
|
|
return ($this->mode & $mode) > 0;
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Install mode is when the local config file is missing or the DB schema hasn't been installed yet.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-10-06 14:27:20 +00:00
|
|
|
public function isInstall()
|
2018-10-05 20:36:09 +00:00
|
|
|
{
|
2018-10-06 14:27:20 +00:00
|
|
|
return !$this->has(Mode::LOCALCONFIGPRESENT) ||
|
2019-07-20 23:22:10 +00:00
|
|
|
!$this->has(MODE::DBCONFIGAVAILABLE);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Normal mode is when the local config file is set, the DB schema is installed and the maintenance mode is off.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-10-06 14:27:20 +00:00
|
|
|
public function isNormal()
|
2018-10-05 20:36:09 +00:00
|
|
|
{
|
2018-10-06 14:27:20 +00:00
|
|
|
return $this->has(Mode::LOCALCONFIGPRESENT) &&
|
2019-07-20 23:22:10 +00:00
|
|
|
$this->has(Mode::DBAVAILABLE) &&
|
|
|
|
$this->has(Mode::DBCONFIGAVAILABLE) &&
|
|
|
|
$this->has(Mode::MAINTENANCEDISABLED);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
2019-08-15 13:51:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|
2019-08-16 07:46:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|
2019-07-21 12:40:50 +00:00
|
|
|
}
|